mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			668 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			668 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package api
 | 
						|
 | 
						|
import (
 | 
						|
	tagapp "mayfly-go/internal/tag/application"
 | 
						|
	tagentity "mayfly-go/internal/tag/domain/entity"
 | 
						|
	"mayfly-go/pkg/req"
 | 
						|
	"mayfly-go/pkg/utils/collx"
 | 
						|
)
 | 
						|
 | 
						|
type Dashbord struct {
 | 
						|
	tagTreeApp tagapp.TagTree `inject:"T"`
 | 
						|
}
 | 
						|
 | 
						|
func (d *Dashbord) ReqConfs() *req.Confs {
 | 
						|
	reqs := [...]*req.Conf{
 | 
						|
		req.NewGet("/mongos/dashbord", d.Dashbord),
 | 
						|
	}
 | 
						|
 | 
						|
	return req.NewConfs("", reqs[:]...)
 | 
						|
}
 | 
						|
 | 
						|
func (m *Dashbord) Dashbord(rc *req.Ctx) {
 | 
						|
	accountId := rc.GetLoginAccount().Id
 | 
						|
	mongoNum := len(m.tagTreeApp.GetAccountTags(accountId, &tagentity.TagTreeQuery{Types: []tagentity.TagType{
 | 
						|
		tagentity.TagTypeMongo,
 | 
						|
	}}))
 | 
						|
 | 
						|
	rc.ResData = collx.M{
 | 
						|
		"mongoNum": mongoNum,
 | 
						|
	}
 | 
						|
}
 |