55 lines
1.9 KiB
TypeScript
55 lines
1.9 KiB
TypeScript
// Auto-generated Items service
|
|
import { queryAll, queryOne, execute } from "../db/client.js";
|
|
import type { Items, CreateItemsInput, UpdateItemsInput } from "../types/index.js";
|
|
|
|
export class ItemsService {
|
|
/** List all items */
|
|
list(): Items[] {
|
|
return queryAll<Items>("SELECT * FROM items ORDER BY created_at DESC");
|
|
}
|
|
|
|
/** Get by ID */
|
|
getById(id: string): Items | undefined {
|
|
return queryOne<Items>("SELECT * FROM items WHERE id = ?", [id]);
|
|
}
|
|
|
|
/** Create */
|
|
create(input: CreateItemsInput): Items {
|
|
const id = crypto.randomUUID();
|
|
const now = new Date().toISOString();
|
|
const cols = ["id", "user_id", "title", "description", "data", "created_at", "updated_at"];
|
|
const values = [id, input.userId ?? null, input.title ?? null, input.description ?? null, input.data ?? null, now, now];
|
|
|
|
execute(`INSERT INTO items (${cols.join(", ")}) VALUES (?, ?, ?, ?, ?, ?, ?)`, values);
|
|
return this.getById(id)!;
|
|
}
|
|
|
|
/** Update */
|
|
update(id: string, input: UpdateItemsInput): Items | undefined {
|
|
const existing = this.getById(id);
|
|
if (!existing) return undefined;
|
|
|
|
const sets: string[] = [];
|
|
const values: unknown[] = [];
|
|
if (input.userId !== undefined) { sets.push("user_id = ?"); values.push(input.userId); }
|
|
if (input.title !== undefined) { sets.push("title = ?"); values.push(input.title); }
|
|
if (input.description !== undefined) { sets.push("description = ?"); values.push(input.description); }
|
|
if (input.data !== undefined) { sets.push("data = ?"); values.push(input.data); }
|
|
|
|
if (sets.length === 0) return existing;
|
|
|
|
sets.push("updated_at = ?");
|
|
values.push(new Date().toISOString());
|
|
|
|
values.push(id);
|
|
execute(`UPDATE items SET ${sets.join(", ")} WHERE id = ?`, values);
|
|
return this.getById(id)!;
|
|
}
|
|
|
|
/** Delete */
|
|
delete(id: string): boolean {
|
|
const result = execute("DELETE FROM items WHERE id = ?", [id]);
|
|
return result.changes > 0;
|
|
}
|
|
}
|