perf: 优化首页统计数据,饼图替换成证书数量统计

This commit is contained in:
xiaojunnuo
2026-01-26 00:42:47 +08:00
parent 64a314c19e
commit 9fa1c2eb3e
7 changed files with 192 additions and 5 deletions
@@ -4,6 +4,7 @@ import { UserService } from '../../../modules/sys/authority/service/user-service
import { RoleService } from '../../../modules/sys/authority/service/role-service.js';
import { PipelineService } from '../../../modules/pipeline/service/pipeline-service.js';
import { HistoryService } from '../../../modules/pipeline/service/history-service.js';
import { CertInfoService } from '../../../modules/monitor/index.js';
export type ChartItem = {
name: string;
@@ -12,7 +13,17 @@ export type ChartItem = {
export type UserStatisticCount = {
pipelineCount?: number;
pipelineStatusCount?: ChartItem[];
pipelineEnableCount?: {
enabled: number;
disabled: number;
};
historyCountPerDay: ChartItem[];
certCount?: {
total: number;
expired: number;
expiring: number;
notExpired: number;
};
expiringList: any[];
};
/**
@@ -30,15 +41,25 @@ export class StatisticController extends BaseController {
@Inject()
historyService: HistoryService;
@Inject()
certInfoService: CertInfoService;
@Post('/count', { summary: Constants.per.authOnly })
public async count() {
const pipelineCount = await this.pipelineService.count({ userId: this.getUserId() });
const pipelineStatusCount = await this.pipelineService.statusCount({ userId: this.getUserId() });
const pipelineEnableCount = await this.pipelineService.enableCount({ userId: this.getUserId() });
const historyCount = await this.historyService.countPerDay({ userId: this.getUserId(), days: 7 });
const expiringList = await this.pipelineService.latestExpiringList({ userId: this.getUserId(), count: 5 });
const certCount = await this.certInfoService.count({ userId: this.getUserId() });
const count: UserStatisticCount = {
pipelineCount,
pipelineStatusCount,
pipelineEnableCount,
certCount,
historyCountPerDay: historyCount,
expiringList,
};