mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 22:32:28 +00:00
Co-authored-by: Github Action <action@github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Brendan Allan <git@brendonovich.dev>
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { BusEvent } from "@/bus/bus-event"
|
|
import { Bus } from "@/bus"
|
|
import z from "zod"
|
|
import { Database, eq, asc } from "../storage/db"
|
|
import { TodoTable } from "./session.sql"
|
|
|
|
export namespace Todo {
|
|
export const Info = z
|
|
.object({
|
|
content: z.string().describe("Brief description of the task"),
|
|
status: z.string().describe("Current status of the task: pending, in_progress, completed, cancelled"),
|
|
priority: z.string().describe("Priority level of the task: high, medium, low"),
|
|
})
|
|
.meta({ ref: "Todo" })
|
|
export type Info = z.infer<typeof Info>
|
|
|
|
export const Event = {
|
|
Updated: BusEvent.define(
|
|
"todo.updated",
|
|
z.object({
|
|
sessionID: z.string(),
|
|
todos: z.array(Info),
|
|
}),
|
|
),
|
|
}
|
|
|
|
export function update(input: { sessionID: string; todos: Info[] }) {
|
|
Database.transaction((db) => {
|
|
db.delete(TodoTable).where(eq(TodoTable.session_id, input.sessionID)).run()
|
|
if (input.todos.length === 0) return
|
|
db.insert(TodoTable)
|
|
.values(
|
|
input.todos.map((todo, position) => ({
|
|
session_id: input.sessionID,
|
|
content: todo.content,
|
|
status: todo.status,
|
|
priority: todo.priority,
|
|
position,
|
|
})),
|
|
)
|
|
.run()
|
|
})
|
|
Bus.publish(Event.Updated, input)
|
|
}
|
|
|
|
export function get(sessionID: string) {
|
|
const rows = Database.use((db) =>
|
|
db.select().from(TodoTable).where(eq(TodoTable.session_id, sessionID)).orderBy(asc(TodoTable.position)).all(),
|
|
)
|
|
return rows.map((row) => ({
|
|
content: row.content,
|
|
status: row.status,
|
|
priority: row.priority,
|
|
}))
|
|
}
|
|
}
|