search_chart_logic.go 1.6 KB
package chart

import (
	"context"
	"github.com/samber/lo"
	"gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/interanl/pkg/domain"
	"gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/pkg/contextdata"
	"gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/pkg/xcollection"

	"gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/api/internal/svc"
	"gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/api/internal/types"

	"github.com/zeromicro/go-zero/core/logx"
)

type SearchChartLogic struct {
	logx.Logger
	ctx    context.Context
	svcCtx *svc.ServiceContext
}

func NewSearchChartLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SearchChartLogic {
	return &SearchChartLogic{
		Logger: logx.WithContext(ctx),
		ctx:    ctx,
		svcCtx: svcCtx,
	}
}

func (l *SearchChartLogic) SearchChart(req *types.ChartSearchRequest) (resp interface{}, err error) {
	var (
		conn     = l.svcCtx.DefaultDBConn()
		tenantId = contextdata.GetTenantFromCtx(l.ctx)
		charts   []*domain.Chart
	)
	_, charts, err = l.svcCtx.ChartRepository.Find(l.ctx, conn, domain.IndexTenantId(tenantId)())
	var chartItems = make([]xcollection.TreeNode, 0)
	lo.EveryBy(charts, func(chart *domain.Chart) bool {
		// 按类型过滤
		if len(req.IncludeTypes) > 0 {
			if !lo.Contains(req.IncludeTypes, chart.Type) {
				return true
			}
		}
		chartItems = append(chartItems, types.NewChartItem(chart))
		return true
	})
	if req.DataStyle == "tree" {
		resp = xcollection.NewTree(chartItems).Nodes
	} else if req.DataStyle == "flat" {
		resp = chartItems
	} else {
		resp = chartItems
	}
	return map[string]interface{}{
		"list": resp,
	}, nil
}