feat: add lighthouse score in database fields
This commit is contained in:
parent
9cf46e679c
commit
6c2a093842
@ -0,0 +1,5 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "WebsiteLighthouseReport" ADD COLUMN "accessibilityScore" INTEGER NOT NULL DEFAULT 0,
|
||||
ADD COLUMN "bestPracticesScore" INTEGER NOT NULL DEFAULT 0,
|
||||
ADD COLUMN "performanceScore" INTEGER NOT NULL DEFAULT 0,
|
||||
ADD COLUMN "seoScore" INTEGER NOT NULL DEFAULT 0;
|
@ -253,13 +253,17 @@ enum WebsiteLighthouseReportStatus {
|
||||
}
|
||||
|
||||
model WebsiteLighthouseReport {
|
||||
id String @id() @default(cuid()) @db.VarChar(30)
|
||||
websiteId String? @db.VarChar(30)
|
||||
createdAt DateTime @default(now()) @db.Timestamptz(6)
|
||||
updatedAt DateTime @updatedAt @db.Timestamptz(6)
|
||||
url String
|
||||
result String // json string
|
||||
status WebsiteLighthouseReportStatus @default(Pending)
|
||||
id String @id() @default(cuid()) @db.VarChar(30)
|
||||
websiteId String? @db.VarChar(30)
|
||||
createdAt DateTime @default(now()) @db.Timestamptz(6)
|
||||
updatedAt DateTime @updatedAt @db.Timestamptz(6)
|
||||
url String
|
||||
result String // json string
|
||||
status WebsiteLighthouseReportStatus @default(Pending)
|
||||
performanceScore Int @default(0)
|
||||
accessibilityScore Int @default(0)
|
||||
bestPracticesScore Int @default(0)
|
||||
seoScore Int @default(0)
|
||||
|
||||
@@index([createdAt])
|
||||
@@index([websiteId])
|
||||
|
@ -10,4 +10,8 @@ export const WebsiteLighthouseReportModelSchema = z.object({
|
||||
url: z.string(),
|
||||
result: z.string(),
|
||||
status: z.nativeEnum(WebsiteLighthouseReportStatus),
|
||||
performanceScore: z.number().int(),
|
||||
accessibilityScore: z.number().int(),
|
||||
bestPracticesScore: z.number().int(),
|
||||
seoScore: z.number().int(),
|
||||
})
|
||||
|
@ -38,6 +38,7 @@ import { generateLighthouse } from '../../utils/screenshot/lighthouse.js';
|
||||
import { WebsiteLighthouseReportModelSchema } from '../../prisma/zod/websitelighthousereport.js';
|
||||
import { buildCursorResponseSchema } from '../../utils/schema.js';
|
||||
import { logger } from '../../utils/logger.js';
|
||||
import { get } from 'lodash-es';
|
||||
|
||||
const websiteNameSchema = z.string().max(100);
|
||||
const websiteDomainSchema = z.union([
|
||||
@ -613,6 +614,19 @@ export const websiteRouter = router({
|
||||
generateLighthouse(url)
|
||||
.then(async (result) => {
|
||||
logger.info('Successfully generated lighthouse report');
|
||||
|
||||
const performanceScore =
|
||||
Number(get(result, ['categories', 'performance', 'score'], 0)) *
|
||||
100;
|
||||
const accessibilityScore =
|
||||
Number(get(result, ['categories', 'accessibility', 'score'], 0)) *
|
||||
100;
|
||||
const bestPracticesScore =
|
||||
Number(get(result, ['categories', 'best-practices', 'score'], 0)) *
|
||||
100;
|
||||
const seoScore =
|
||||
Number(get(result, ['categories', 'seo', 'score'], 0)) * 100;
|
||||
|
||||
await prisma.websiteLighthouseReport.update({
|
||||
where: {
|
||||
id: websiteInfo.id,
|
||||
@ -620,6 +634,10 @@ export const websiteRouter = router({
|
||||
data: {
|
||||
status: WebsiteLighthouseReportStatus.Success,
|
||||
result: JSON.stringify(result),
|
||||
performanceScore,
|
||||
accessibilityScore,
|
||||
bestPracticesScore,
|
||||
seoScore,
|
||||
},
|
||||
});
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user