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
@@ -1,7 +1,7 @@
import { Provide, Scope, ScopeEnum } from "@midwayjs/core";
import { BaseService, CodeException, Constants, PageReq } from "@certd/lib-server";
import { InjectEntityModel } from "@midwayjs/typeorm";
import { Repository } from "typeorm";
import { Between, IsNull, LessThan, Not, Repository } from "typeorm";
import { CertInfoEntity } from "../entity/cert-info.js";
import { utils } from "@certd/basic";
import { CertInfo, CertReader } from "@certd/plugin-cert";
@@ -181,6 +181,36 @@ export class CertInfoService extends BaseService<CertInfoEntity> {
pipelineId,
},
});
}
async count({ userId }: { userId: number }) {
const total = await this.repository.count({
where: {
userId,
expiresTime: Not(IsNull()),
},
});
const expired = await this.repository.count({
where: {
userId,
expiresTime: LessThan(new Date().getTime()),
},
});
const expiring = await this.repository.count({
where: {
userId,
expiresTime: Between(new Date().getTime(), new Date().getTime() + 15 * 24 * 60 * 60 * 1000),
},
});
const notExpired = total - expired - expiring;
return {
total,
expired,
expiring,
notExpired,
};
}
}
@@ -771,6 +771,26 @@ export class PipelineService extends BaseService<PipelineEntity> {
return statusCount;
}
async enableCount(param: { userId?: any } = {}) {
const statusCount = await this.repository
.createQueryBuilder()
.select("disabled")
.addSelect("count(1)", "count")
.where({
userId: param.userId
})
.groupBy("disabled")
.getRawMany();
const result = {
enabled: 0,
disabled: 0,
};
for (const item of statusCount) {
result[item.disabled ? "disabled" : "enabled"] = parseInt(item.count);
}
return result;
}
async latestExpiringList({ userId }: any) {
let list = await this.repository.find({
select: {