v0.1.18 - 설정 화면과 기간형 D-DAY 관리 추가

This commit is contained in:
2026-04-22 09:47:04 +09:00
parent 4355185203
commit fe538fc88b
13 changed files with 1033 additions and 173 deletions

View File

@@ -1,4 +1,4 @@
import { and, asc, eq, like } from 'drizzle-orm'
import { and, asc, desc, eq, like } from 'drizzle-orm'
import { z } from 'zod'
import { db } from '../db/client.js'
import { goals } from '../db/schema.js'
@@ -7,6 +7,18 @@ import { findAuthenticatedUser } from '../lib/authSession.js'
const goalSchema = z.object({
title: z.string().trim().min(1).max(80),
targetDate: z.string().regex(/^\d{4}-\d{2}-\d{2}$/),
activeFrom: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().nullable(),
activeUntil: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().nullable(),
status: z.enum(['active', 'done', 'archived']).optional(),
color: z.string().trim().min(4).max(32).optional(),
})
const goalUpdateSchema = z.object({
title: z.string().trim().min(1).max(80).optional(),
targetDate: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional(),
activeFrom: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().nullable(),
activeUntil: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().nullable(),
status: z.enum(['active', 'done', 'archived']).optional(),
color: z.string().trim().min(4).max(32).optional(),
})
@@ -59,7 +71,7 @@ export async function registerGoalRoutes(app) {
.select()
.from(goals)
.where(and(...filters))
.orderBy(asc(goals.targetDate), asc(goals.id))
.orderBy(desc(goals.updatedAt), asc(goals.targetDate), asc(goals.id))
return { goals: items }
})
@@ -88,10 +100,13 @@ export async function registerGoalRoutes(app) {
userId: user.id,
title: payload.data.title,
targetDate: payload.data.targetDate,
activeFrom: payload.data.activeFrom ?? null,
activeUntil: payload.data.activeUntil ?? null,
color: payload.data.color ?? '#1c1917',
status: 'active',
status: payload.data.status ?? 'active',
createdAt: now,
updatedAt: now,
completedAt: payload.data.status === 'done' ? now : null,
})
.returning()
@@ -100,4 +115,90 @@ export async function registerGoalRoutes(app) {
goal,
})
})
app.patch('/api/goals/:goalId', async (request, reply) => {
const user = await requireAuthenticatedUser(request, reply)
if (!user) {
return
}
const params = z.object({
goalId: z.coerce.number().int().positive(),
}).safeParse(request.params)
if (!params.success) {
return reply.code(400).send({
message: '목표 식별자가 올바르지 않습니다.',
})
}
const payload = goalUpdateSchema.safeParse(request.body)
if (!payload.success) {
return reply.code(400).send({
message: '목표 수정값이 올바르지 않습니다.',
issues: payload.error.flatten(),
})
}
const [existingGoal] = await db
.select()
.from(goals)
.where(and(eq(goals.id, params.data.goalId), eq(goals.userId, user.id)))
.limit(1)
if (!existingGoal) {
return reply.code(404).send({
message: '목표를 찾을 수 없습니다.',
})
}
const nextValues = {
updatedAt: new Date(),
}
if (payload.data.title !== undefined) {
nextValues.title = payload.data.title
}
if (payload.data.targetDate !== undefined) {
nextValues.targetDate = payload.data.targetDate
}
if (payload.data.activeFrom !== undefined) {
nextValues.activeFrom = payload.data.activeFrom
}
if (payload.data.activeUntil !== undefined) {
nextValues.activeUntil = payload.data.activeUntil
}
if (payload.data.status !== undefined) {
nextValues.status = payload.data.status
}
if (payload.data.color !== undefined) {
nextValues.color = payload.data.color
}
if (payload.data.status === 'done' && !existingGoal.completedAt) {
nextValues.completedAt = new Date()
}
if (payload.data.status && payload.data.status !== 'done') {
nextValues.completedAt = null
}
const [goal] = await db
.update(goals)
.set(nextValues)
.where(and(eq(goals.id, params.data.goalId), eq(goals.userId, user.id)))
.returning()
return {
message: '목표가 수정되었습니다.',
goal,
}
})
}