feat: Add is_system column to notes and update task note handling for system notes

This commit is contained in:
Chop
2025-06-19 22:12:07 +02:00
parent d40af1ff31
commit 3762f2e6f8
5 changed files with 93 additions and 36 deletions

View File

@@ -19,10 +19,11 @@ export function getNotesByTaskId(task_id) {
.all(task_id);
}
export function addNoteToTask(task_id, note) {
db.prepare(`INSERT INTO notes (task_id, note) VALUES (?, ?)`).run(
export function addNoteToTask(task_id, note, is_system = false) {
db.prepare(`INSERT INTO notes (task_id, note, is_system) VALUES (?, ?, ?)`).run(
task_id,
note
note,
is_system ? 1 : 0
);
}

View File

@@ -1,4 +1,5 @@
import db from "../db.js";
import { addNoteToTask } from "./notes.js";
// Get all task templates (for dropdown selection)
export function getAllTaskTemplates() {
@@ -59,25 +60,33 @@ export function getProjectTasks(projectId) {
// Create a new project task
export function createProjectTask(data) {
let result;
let taskName;
if (data.task_template_id) {
// Creating from template - explicitly set custom_max_wait_days to NULL so COALESCE uses template value
const stmt = db.prepare(`
INSERT INTO project_tasks (project_id, task_template_id, custom_max_wait_days, status, priority)
VALUES (?, ?, NULL, ?, ?)
`);
return stmt.run(
result = stmt.run(
data.project_id,
data.task_template_id,
data.status || "pending",
data.priority || "normal"
);
// Get the template name for the log
const templateStmt = db.prepare("SELECT name FROM tasks WHERE task_id = ?");
const template = templateStmt.get(data.task_template_id);
taskName = template?.name || "Unknown template";
} else {
// Creating custom task
const stmt = db.prepare(`
INSERT INTO project_tasks (project_id, custom_task_name, custom_max_wait_days, custom_description, status, priority)
VALUES (?, ?, ?, ?, ?, ?)
`);
return stmt.run(
result = stmt.run(
data.project_id,
data.custom_task_name,
data.custom_max_wait_days || 0,
@@ -85,31 +94,50 @@ export function createProjectTask(data) {
data.status || "pending",
data.priority || "normal"
);
taskName = data.custom_task_name;
}
// Add system note for task creation
if (result.lastInsertRowid) {
const priority = data.priority || "normal";
const status = data.status || "pending";
const logMessage = `Task "${taskName}" created with priority: ${priority}, status: ${status}`;
addNoteToTask(result.lastInsertRowid, logMessage, true);
}
return result;
}
// Update project task status
export function updateProjectTaskStatus(taskId, status) {
// First get the current status to check if we're transitioning from pending to in_progress
const getCurrentStatus = db.prepare(
"SELECT status FROM project_tasks WHERE id = ?"
);
const currentTask = getCurrentStatus.get(taskId);
// First get the current task details for logging
const getCurrentTask = db.prepare(`
SELECT
pt.status,
COALESCE(pt.custom_task_name, t.name) as task_name
FROM project_tasks pt
LEFT JOIN tasks t ON pt.task_template_id = t.task_id
WHERE pt.id = ?
`);
const currentTask = getCurrentTask.get(taskId);
if (!currentTask) {
throw new Error(`Task with ID ${taskId} not found`);
}
const oldStatus = currentTask.status;
let stmt;
let result;
if (
currentTask &&
currentTask.status === "pending" &&
status === "in_progress"
) {
if (oldStatus === "pending" && status === "in_progress") {
// Starting a task - set date_started
stmt = db.prepare(`
UPDATE project_tasks
SET status = ?, date_started = CURRENT_TIMESTAMP
WHERE id = ?
`);
return stmt.run(status, taskId);
result = stmt.run(status, taskId);
} else {
// Just updating status without changing date_started
stmt = db.prepare(`
@@ -117,8 +145,17 @@ export function updateProjectTaskStatus(taskId, status) {
SET status = ?
WHERE id = ?
`);
return stmt.run(status, taskId);
result = stmt.run(status, taskId);
}
// Add system note for status change (only if status actually changed)
if (result.changes > 0 && oldStatus !== status) {
const taskName = currentTask.task_name || "Unknown task";
const logMessage = `Status changed from "${oldStatus}" to "${status}"`;
addNoteToTask(taskId, logMessage, true);
}
return result;
}
// Delete a project task