114 lines
5.3 KiB
JavaScript
114 lines
5.3 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const express_1 = require("express");
|
|
const asyncHandler_1 = require("../utils/asyncHandler");
|
|
const db_1 = require("../db");
|
|
const schema_1 = require("../db/schema");
|
|
const drizzle_orm_1 = require("drizzle-orm");
|
|
const auth_1 = require("../utils/auth");
|
|
const errorHandler_1 = require("../middleware/errorHandler");
|
|
const validation_1 = require("../utils/validation");
|
|
const router = (0, express_1.Router)();
|
|
router.use(auth_1.authMiddleware);
|
|
router.get('/task/:taskId', (0, asyncHandler_1.asyncHandler)(async (req, res) => {
|
|
const userId = req.user.userId;
|
|
// Verify task exists and belongs to user
|
|
const task = await db_1.db
|
|
.select()
|
|
.from(schema_1.tasks)
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.tasks.id, req.params.taskId), (0, drizzle_orm_1.eq)(schema_1.tasks.userId, userId)))
|
|
.limit(1);
|
|
if (task.length === 0) {
|
|
throw new errorHandler_1.AppError('NOT_FOUND', 'Task not found', 404);
|
|
}
|
|
const taskSubtasks = await db_1.db
|
|
.select()
|
|
.from(schema_1.subtasks)
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.subtasks.taskId, req.params.taskId), (0, drizzle_orm_1.eq)(schema_1.subtasks.userId, userId)))
|
|
.orderBy((0, drizzle_orm_1.asc)(schema_1.subtasks.order));
|
|
res.json({ subtasks: taskSubtasks });
|
|
}));
|
|
router.post('/task/:taskId', (0, asyncHandler_1.asyncHandler)(async (req, res) => {
|
|
const data = validation_1.subtaskCreateSchema.parse(req.body);
|
|
const userId = req.user.userId;
|
|
const task = await db_1.db
|
|
.select()
|
|
.from(schema_1.tasks)
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.tasks.id, req.params.taskId), (0, drizzle_orm_1.eq)(schema_1.tasks.userId, userId)))
|
|
.limit(1);
|
|
if (task.length === 0) {
|
|
throw new errorHandler_1.AppError('NOT_FOUND', 'Task not found', 404);
|
|
}
|
|
const now = Date.now();
|
|
const maxOrder = await db_1.db
|
|
.select({ order: schema_1.subtasks.order })
|
|
.from(schema_1.subtasks)
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.subtasks.taskId, req.params.taskId), (0, drizzle_orm_1.eq)(schema_1.subtasks.userId, userId)))
|
|
.orderBy((0, drizzle_orm_1.desc)(schema_1.subtasks.order))
|
|
.limit(1);
|
|
const subtaskId = `sub_${Date.now().toString(36)}${Math.random().toString(36).slice(2, 6)}`;
|
|
const newSubtask = {
|
|
id: subtaskId,
|
|
userId,
|
|
taskId: req.params.taskId,
|
|
title: data.title,
|
|
completed: false,
|
|
order: data.order ?? (maxOrder[0]?.order ?? -1) + 1,
|
|
createdAt: now,
|
|
updatedAt: now,
|
|
};
|
|
await db_1.db.insert(schema_1.subtasks).values(newSubtask);
|
|
// Update task updatedAt
|
|
await db_1.db
|
|
.update(schema_1.tasks)
|
|
.set({ updatedAt: now })
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.tasks.id, req.params.taskId), (0, drizzle_orm_1.eq)(schema_1.tasks.userId, userId)));
|
|
res.status(201).json(newSubtask);
|
|
}));
|
|
router.patch('/:id', (0, asyncHandler_1.asyncHandler)(async (req, res) => {
|
|
const data = validation_1.subtaskUpdateSchema.parse(req.body);
|
|
const userId = req.user.userId;
|
|
const existing = await db_1.db
|
|
.select()
|
|
.from(schema_1.subtasks)
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.subtasks.id, req.params.id), (0, drizzle_orm_1.eq)(schema_1.subtasks.userId, userId)))
|
|
.limit(1);
|
|
if (existing.length === 0) {
|
|
throw new errorHandler_1.AppError('NOT_FOUND', 'Subtask not found', 404);
|
|
}
|
|
const now = Date.now();
|
|
const updated = await db_1.db
|
|
.update(schema_1.subtasks)
|
|
.set({ ...data, updatedAt: now })
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.subtasks.id, req.params.id), (0, drizzle_orm_1.eq)(schema_1.subtasks.userId, userId)))
|
|
.returning();
|
|
// Update task updatedAt
|
|
await db_1.db
|
|
.update(schema_1.tasks)
|
|
.set({ updatedAt: now })
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.tasks.id, existing[0].taskId), (0, drizzle_orm_1.eq)(schema_1.tasks.userId, userId)));
|
|
res.json(updated[0]);
|
|
}));
|
|
router.delete('/:id', (0, asyncHandler_1.asyncHandler)(async (req, res) => {
|
|
const userId = req.user.userId;
|
|
const existing = await db_1.db
|
|
.select()
|
|
.from(schema_1.subtasks)
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.subtasks.id, req.params.id), (0, drizzle_orm_1.eq)(schema_1.subtasks.userId, userId)))
|
|
.limit(1);
|
|
if (existing.length === 0) {
|
|
throw new errorHandler_1.AppError('NOT_FOUND', 'Subtask not found', 404);
|
|
}
|
|
const taskId = existing[0].taskId;
|
|
await db_1.db
|
|
.delete(schema_1.subtasks)
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.subtasks.id, req.params.id), (0, drizzle_orm_1.eq)(schema_1.subtasks.userId, userId)));
|
|
// Update task updatedAt
|
|
await db_1.db
|
|
.update(schema_1.tasks)
|
|
.set({ updatedAt: Date.now() })
|
|
.where((0, drizzle_orm_1.and)((0, drizzle_orm_1.eq)(schema_1.tasks.id, taskId), (0, drizzle_orm_1.eq)(schema_1.tasks.userId, userId)));
|
|
res.status(204).send();
|
|
}));
|
|
exports.default = router;
|
|
//# sourceMappingURL=subtasks.js.map
|