All files / dal website-templates.dal.ts

100% Statements 8/8
100% Branches 0/0
100% Functions 5/5
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50              18x     2x               2x         2x       2x       2x             3x               3x      
// Data Access Layer for Website Templates
import { eq } from "drizzle-orm";
import type { DrizzleD1Database } from "drizzle-orm/d1";
import * as schema from "../db/schema";
import type { WebsiteTemplate, NewWebsiteTemplate } from "../db/schema";
 
export class WebsiteTemplatesDal {
	constructor(private db: DrizzleD1Database<typeof schema>) {}
 
	async findAll(): Promise<WebsiteTemplate[]> {
		return this.db
			.select()
			.from(schema.websiteTemplates)
			.where(eq(schema.websiteTemplates.isActive, true))
			.orderBy(schema.websiteTemplates.sortOrder);
	}
 
	async findById(id: string): Promise<WebsiteTemplate | undefined> {
		const result = await this.db
			.select()
			.from(schema.websiteTemplates)
			.where(eq(schema.websiteTemplates.id, id))
			.limit(1);
		return result[0];
	}
 
	async create(data: NewWebsiteTemplate): Promise<WebsiteTemplate | undefined> {
		const result = await this.db
			.insert(schema.websiteTemplates)
			.values(data)
			.returning();
		return result[0];
	}
 
	async update(
		id: string,
		data: Partial<NewWebsiteTemplate>,
	): Promise<WebsiteTemplate | undefined> {
		const result = await this.db
			.update(schema.websiteTemplates)
			.set({
				...data,
				dateUpdated: new Date(),
			})
			.where(eq(schema.websiteTemplates.id, id))
			.returning();
		return result[0];
	}
}