mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 13:21:46 +00:00
0b36427c09
- New todo_items DB table with priority, due date, description, user assignment - Full CRUD API with WebSocket real-time sync - 3-column UI: sidebar filters (All, My Tasks, Overdue, Done, by Priority), task list with inline badges, and detail/create pane - Apple-inspired design with custom dropdowns, date picker, priority system (P1-P3) - Mobile responsive: icon-only sidebar, bottom-sheet modals for detail/create - Lists tab with sub-tabs (Packing List + To-Do), persisted selection - Addon renamed from "Packing List" to "Lists" - i18n keys for all 13 languages - UI polish: notification colors use system theme, mobile navbar cleanup, settings page responsive buttons
258 lines
9.6 KiB
TypeScript
258 lines
9.6 KiB
TypeScript
import type { StoreApi } from 'zustand'
|
|
import type { TripStoreState } from '../tripStore'
|
|
import type { Assignment, Place, Day, DayNote, PackingItem, TodoItem, BudgetItem, BudgetMember, Reservation, Trip, TripFile, WebSocketEvent } from '../../types'
|
|
|
|
type SetState = StoreApi<TripStoreState>['setState']
|
|
|
|
/**
|
|
* Applies a remote WebSocket event to the local Zustand store, keeping state in sync across collaborators.
|
|
* Each event type maps to an immutable state update (create/update/delete) for the relevant entity.
|
|
*/
|
|
export function handleRemoteEvent(set: SetState, event: WebSocketEvent): void {
|
|
const { type, ...payload } = event
|
|
|
|
set(state => {
|
|
switch (type) {
|
|
// Places
|
|
case 'place:created':
|
|
if (state.places.some(p => p.id === (payload.place as Place).id)) return {}
|
|
return { places: [payload.place as Place, ...state.places] }
|
|
case 'place:updated':
|
|
return {
|
|
places: state.places.map(p => p.id === (payload.place as Place).id ? payload.place as Place : p),
|
|
assignments: Object.fromEntries(
|
|
Object.entries(state.assignments).map(([dayId, items]) => [
|
|
dayId,
|
|
items.map(a => a.place?.id === (payload.place as Place).id ? { ...a, place: payload.place as Place } : a)
|
|
])
|
|
),
|
|
}
|
|
case 'place:deleted':
|
|
return {
|
|
places: state.places.filter(p => p.id !== payload.placeId),
|
|
assignments: Object.fromEntries(
|
|
Object.entries(state.assignments).map(([dayId, items]) => [
|
|
dayId,
|
|
items.filter(a => a.place?.id !== payload.placeId)
|
|
])
|
|
),
|
|
}
|
|
|
|
// Assignments
|
|
case 'assignment:created': {
|
|
const dayKey = String((payload.assignment as Assignment).day_id)
|
|
const existing = (state.assignments[dayKey] || [])
|
|
const placeId = (payload.assignment as Assignment).place?.id || (payload.assignment as Assignment).place_id
|
|
if (existing.some(a => a.id === (payload.assignment as Assignment).id || (placeId && a.place?.id === placeId))) {
|
|
const hasTempVersion = existing.some(a => a.id < 0 && a.place?.id === placeId)
|
|
if (hasTempVersion) {
|
|
return {
|
|
assignments: {
|
|
...state.assignments,
|
|
[dayKey]: existing.map(a => (a.id < 0 && a.place?.id === placeId) ? payload.assignment as Assignment : a),
|
|
}
|
|
}
|
|
}
|
|
return {}
|
|
}
|
|
return {
|
|
assignments: {
|
|
...state.assignments,
|
|
[dayKey]: [...existing, payload.assignment as Assignment],
|
|
}
|
|
}
|
|
}
|
|
case 'assignment:updated': {
|
|
const dayKey = String((payload.assignment as Assignment).day_id)
|
|
return {
|
|
assignments: {
|
|
...state.assignments,
|
|
[dayKey]: (state.assignments[dayKey] || []).map(a =>
|
|
a.id === (payload.assignment as Assignment).id ? { ...a, ...(payload.assignment as Assignment) } : a
|
|
),
|
|
}
|
|
}
|
|
}
|
|
case 'assignment:deleted': {
|
|
const dayKey = String(payload.dayId)
|
|
return {
|
|
assignments: {
|
|
...state.assignments,
|
|
[dayKey]: (state.assignments[dayKey] || []).filter(a => a.id !== payload.assignmentId),
|
|
}
|
|
}
|
|
}
|
|
case 'assignment:moved': {
|
|
const oldKey = String(payload.oldDayId)
|
|
const newKey = String(payload.newDayId)
|
|
const movedAssignment = payload.assignment as Assignment
|
|
return {
|
|
assignments: {
|
|
...state.assignments,
|
|
[oldKey]: (state.assignments[oldKey] || []).filter(a => a.id !== movedAssignment.id),
|
|
[newKey]: [...(state.assignments[newKey] || []).filter(a => a.id !== movedAssignment.id), movedAssignment],
|
|
}
|
|
}
|
|
}
|
|
case 'assignment:reordered': {
|
|
const dayKey = String(payload.dayId)
|
|
const currentItems = state.assignments[dayKey] || []
|
|
const orderedIds: number[] = payload.orderedIds || []
|
|
const reordered = orderedIds.map((id, idx) => {
|
|
const item = currentItems.find(a => a.id === id)
|
|
return item ? { ...item, order_index: idx } : null
|
|
}).filter((item): item is Assignment => item !== null)
|
|
return {
|
|
assignments: {
|
|
...state.assignments,
|
|
[dayKey]: reordered,
|
|
}
|
|
}
|
|
}
|
|
|
|
// Days
|
|
case 'day:created':
|
|
if (state.days.some(d => d.id === (payload.day as Day).id)) return {}
|
|
return { days: [...state.days, payload.day as Day] }
|
|
case 'day:updated':
|
|
return {
|
|
days: state.days.map(d => d.id === (payload.day as Day).id ? payload.day as Day : d),
|
|
}
|
|
case 'day:deleted': {
|
|
const removedDayId = String(payload.dayId)
|
|
const newAssignments = { ...state.assignments }
|
|
delete newAssignments[removedDayId]
|
|
const newDayNotes = { ...state.dayNotes }
|
|
delete newDayNotes[removedDayId]
|
|
return {
|
|
days: state.days.filter(d => d.id !== payload.dayId),
|
|
assignments: newAssignments,
|
|
dayNotes: newDayNotes,
|
|
}
|
|
}
|
|
|
|
// Day Notes
|
|
case 'dayNote:created': {
|
|
const dayKey = String(payload.dayId)
|
|
const existingNotes = (state.dayNotes[dayKey] || [])
|
|
if (existingNotes.some(n => n.id === (payload.note as DayNote).id)) return {}
|
|
return {
|
|
dayNotes: {
|
|
...state.dayNotes,
|
|
[dayKey]: [...existingNotes, payload.note as DayNote],
|
|
}
|
|
}
|
|
}
|
|
case 'dayNote:updated': {
|
|
const dayKey = String(payload.dayId)
|
|
return {
|
|
dayNotes: {
|
|
...state.dayNotes,
|
|
[dayKey]: (state.dayNotes[dayKey] || []).map(n => n.id === (payload.note as DayNote).id ? payload.note as DayNote : n),
|
|
}
|
|
}
|
|
}
|
|
case 'dayNote:deleted': {
|
|
const dayKey = String(payload.dayId)
|
|
return {
|
|
dayNotes: {
|
|
...state.dayNotes,
|
|
[dayKey]: (state.dayNotes[dayKey] || []).filter(n => n.id !== payload.noteId),
|
|
}
|
|
}
|
|
}
|
|
|
|
// Packing
|
|
case 'packing:created':
|
|
if (state.packingItems.some(i => i.id === (payload.item as PackingItem).id)) return {}
|
|
return { packingItems: [...state.packingItems, payload.item as PackingItem] }
|
|
case 'packing:updated':
|
|
return {
|
|
packingItems: state.packingItems.map(i => i.id === (payload.item as PackingItem).id ? payload.item as PackingItem : i),
|
|
}
|
|
case 'packing:deleted':
|
|
return {
|
|
packingItems: state.packingItems.filter(i => i.id !== payload.itemId),
|
|
}
|
|
|
|
// Todo
|
|
case 'todo:created':
|
|
if (state.todoItems.some(i => i.id === (payload.item as TodoItem).id)) return {}
|
|
return { todoItems: [...state.todoItems, payload.item as TodoItem] }
|
|
case 'todo:updated':
|
|
return {
|
|
todoItems: state.todoItems.map(i => i.id === (payload.item as TodoItem).id ? payload.item as TodoItem : i),
|
|
}
|
|
case 'todo:deleted':
|
|
return {
|
|
todoItems: state.todoItems.filter(i => i.id !== payload.itemId),
|
|
}
|
|
|
|
// Budget
|
|
case 'budget:created':
|
|
if (state.budgetItems.some(i => i.id === (payload.item as BudgetItem).id)) return {}
|
|
return { budgetItems: [...state.budgetItems, payload.item as BudgetItem] }
|
|
case 'budget:updated':
|
|
return {
|
|
budgetItems: state.budgetItems.map(i => i.id === (payload.item as BudgetItem).id ? payload.item as BudgetItem : i),
|
|
}
|
|
case 'budget:deleted':
|
|
return {
|
|
budgetItems: state.budgetItems.filter(i => i.id !== payload.itemId),
|
|
}
|
|
case 'budget:members-updated':
|
|
return {
|
|
budgetItems: state.budgetItems.map(i =>
|
|
i.id === payload.itemId ? { ...i, members: payload.members as BudgetMember[], persons: payload.persons as number } : i
|
|
),
|
|
}
|
|
case 'budget:member-paid-updated':
|
|
return {
|
|
budgetItems: state.budgetItems.map(i =>
|
|
i.id === payload.itemId
|
|
? { ...i, members: (i.members || []).map(m => m.user_id === payload.userId ? { ...m, paid: payload.paid } : m) }
|
|
: i
|
|
),
|
|
}
|
|
|
|
// Reservations
|
|
case 'reservation:created':
|
|
if (state.reservations.some(r => r.id === (payload.reservation as Reservation).id)) return {}
|
|
return { reservations: [payload.reservation as Reservation, ...state.reservations] }
|
|
case 'reservation:updated':
|
|
return {
|
|
reservations: state.reservations.map(r => r.id === (payload.reservation as Reservation).id ? payload.reservation as Reservation : r),
|
|
}
|
|
case 'reservation:deleted':
|
|
return {
|
|
reservations: state.reservations.filter(r => r.id !== payload.reservationId),
|
|
}
|
|
|
|
// Trip
|
|
case 'trip:updated':
|
|
return { trip: payload.trip as Trip }
|
|
|
|
// Files
|
|
case 'file:created':
|
|
if (state.files.some(f => f.id === (payload.file as TripFile).id)) return {}
|
|
return { files: [payload.file as TripFile, ...state.files] }
|
|
case 'file:updated':
|
|
return {
|
|
files: state.files.map(f => f.id === (payload.file as TripFile).id ? payload.file as TripFile : f),
|
|
}
|
|
case 'file:deleted':
|
|
return {
|
|
files: state.files.filter(f => f.id !== payload.fileId),
|
|
}
|
|
|
|
// Memories / Photos
|
|
case 'memories:updated':
|
|
window.dispatchEvent(new CustomEvent('memories:updated', { detail: payload }))
|
|
return {}
|
|
|
|
default:
|
|
return {}
|
|
}
|
|
})
|
|
}
|