Commit Graph

105 Commits

Author SHA1 Message Date
Thomas Richter
a232a95ced feat(04-02): add togglePin and updateDueDate form actions
- Add togglePin action to toggle entry.pinned boolean state
- Add updateDueDate action to set/clear entry.dueDate
- Both actions validate entry exists before updating
2026-01-31 13:02:55 +01:00
Thomas Richter
4fe198eb0a docs(04): create phase plan
Phase 04: Tags & Organization
- 3 plan(s) in 2 wave(s)
- Wave 1: 04-01 (tags schema), 04-02 (pin/due date) - parallel
- Wave 2: 04-03 (tag UI) - depends on 04-01
- Ready for execution

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 12:49:53 +01:00
Thomas Richter
307e4eff92 docs(04): research phase domain
Phase 4: Tags & Organization
- Standard stack identified (Drizzle relations v1, Svelecte v5)
- Architecture patterns documented (many-to-many junction table, case-insensitive tags)
- Pitfalls catalogued (N+1 queries, case sensitivity, atomic tag updates)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 12:45:42 +01:00
Thomas Richter
ea50fe9820 docs(03): complete Phase 3 Images
- All 4 plans executed successfully
- 5/5 success criteria verified
- CameraCapture replaced with native file input for HTTP compatibility

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 12:23:24 +01:00
Thomas Richter
c78330ad35 docs(03-04): complete gallery integration plan
Tasks completed: 4/4
- ImageGallery and ImageLightbox components
- Integrate images into EntryCard
- Delete image form action
- Human verification (approved)

Fix: Camera button replaced with file input capture="environment"

SUMMARY: .planning/phases/03-images/03-04-SUMMARY.md
2026-01-31 12:20:06 +01:00
Thomas Richter
a2f9183011 fix(03-04): replace CameraCapture with file input capture="environment"
- Remove CameraCapture modal which required getUserMedia (HTTPS only)
- Use native file input with capture="environment" attribute
- Opens camera directly via OS file picker on mobile
- Works over HTTP during development
- Simpler implementation with better browser compatibility
2026-01-31 12:19:16 +01:00
Thomas Richter
b239862854 feat(03-04): add deleteImage form action
- Delete image files from filesystem (original + thumbnail)
- Delete image record from database
- Continue database deletion even if file deletion fails
- Returns success after cleanup
2026-01-29 15:33:18 +01:00
Thomas Richter
0acff1b438 feat(03-04): integrate images into EntryCard
- Show image count indicator in collapsed entry view
- Add horizontal scrolling gallery in expanded view
- Edit mode reveals delete buttons on images
- Add ImageUpload and Camera button for adding images
- CameraCapture modal for mobile photo capture
- Updated EntryList to pass entries with images
2026-01-29 15:32:47 +01:00
Thomas Richter
eaf976f24b feat(03-04): ImageGallery and ImageLightbox components
- ImageGallery renders horizontal scrolling thumbnails
- Edit mode shows delete buttons on images
- ImageLightbox provides fullscreen image viewer
- Keyboard navigation (Escape, arrows) in lightbox
- Click outside image or X button closes lightbox
- Image counter shown when multiple images
2026-01-29 15:31:15 +01:00
Thomas Richter
0188483036 docs(03-02): complete file upload plan
Tasks completed: 3/3
- Add uploadImage form action with thumbnail generation
- Create ImageUpload component with drag-drop
- Integrate upload into QuickCapture

SUMMARY: .planning/phases/03-images/03-02-SUMMARY.md
2026-01-29 15:29:35 +01:00
Thomas Richter
19d2059c56 docs(03-03): complete camera capture plan
Tasks completed: 2/2
- CameraCapture component with getUserMedia
- Feature detection and graceful fallback

SUMMARY: .planning/phases/03-images/03-03-SUMMARY.md

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 15:29:07 +01:00
Thomas Richter
400e4999fd feat(03-02): integrate image upload into QuickCapture
- Add image button next to submit button
- Show pending image preview with filename
- Allow removing pending image before submit
- Upload image after entry creation with new entry ID
- Disable button during upload to prevent duplicates
- Clean up object URLs properly
2026-01-29 15:28:22 +01:00
Thomas Richter
8248e0cd91 feat(03-03): CameraCapture modal with getUserMedia
- Full-screen camera modal with live preview via getUserMedia
- Photo capture using canvas.toBlob (JPEG at 0.9 quality)
- Preview captured photo with retake/confirm flow
- Camera stream properly stopped on close and after capture
- Switch camera button for front/back camera toggle
- Upload integration via ?/uploadImage form action

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 15:27:51 +01:00
Thomas Richter
a35b07e45e feat(03-02): create ImageUpload component with drag-drop
- Add drag-and-drop zone for image uploads
- Show optimistic preview during upload
- Support keyboard navigation (Enter/Space to trigger)
- Handle upload via fetch to ?/uploadImage action
- Clean up object URLs after upload completes
- Provide callbacks for upload lifecycle events
2026-01-29 15:27:48 +01:00
Thomas Richter
de3aa5ac4e feat(03-02): add uploadImage form action with thumbnail generation
- Add uploadImage action that handles multipart file uploads
- Validate file type and entry existence before processing
- Generate thumbnail using Sharp with EXIF rotation
- Save original and thumbnail to filesystem
- Store image metadata in database
- Return entries with their images attached from load function
2026-01-29 15:27:12 +01:00
Thomas Richter
e442b9ef0c docs(03-01): complete image infrastructure plan
Tasks completed: 3/3
- Database schema and repository for images
- File storage and thumbnail generation utilities
- API endpoints for serving images

SUMMARY: .planning/phases/03-images/03-01-SUMMARY.md
2026-01-29 15:24:35 +01:00
Thomas Richter
b3640e78a1 feat(03-01): add API endpoints for serving images
- Add GET /api/images/[id] for original images
- Add GET /api/images/[id]/thumbnail for thumbnails
- Both endpoints return 404 for missing images
- Immutable cache headers for CDN optimization
2026-01-29 15:23:33 +01:00
Thomas Richter
0987d16dc0 feat(03-01): add storage and thumbnail utilities
- Add storage.ts with directory management and file I/O
- Add thumbnails.ts with EXIF-aware thumbnail generation
- Thumbnails always output as JPEG with 80% quality
2026-01-29 15:23:08 +01:00
Thomas Richter
f5b5034f07 feat(03-01): add images table and repository
- Add images table with entryId foreign key and cascade delete
- Add Image and NewImage types
- Add ImageRepository with create, getById, getByEntryId, delete, deleteByEntryId
- Install sharp for thumbnail generation
2026-01-29 15:22:38 +01:00
Thomas Richter
b09ac9013b docs(03): create phase plans with research
Phase 03: Images
- 4 plans across 3 waves
- Sharp for thumbnails, native browser APIs for camera
- svelte-lightbox for fullscreen viewing
- Fix: 03-03 depends on 03-02 (needs uploadImage action)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 15:18:04 +01:00
Thomas Richter
04c2742e73 docs(03): create phase plan
Phase 03: Images
- 4 plan(s) in 3 wave(s)
- Wave 1: 03-01 (foundation)
- Wave 2: 03-02, 03-03 (parallel - upload + camera)
- Wave 3: 03-04 (integration + verification)
- Ready for execution

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 15:15:30 +01:00
Thomas Richter
d99bd0d3a2 docs(03): research phase domain
Phase 03: Images
- Standard stack identified (Sharp, svelte-lightbox, native browser APIs)
- Architecture patterns documented (form actions, camera capture, API endpoints)
- Pitfalls catalogued (EXIF rotation, camera cleanup, memory leaks)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 15:10:20 +01:00
Thomas Richter
c061730827 docs(03): capture phase context
Phase 03: Images
- Implementation decisions documented
- Phase boundary established
2026-01-29 14:52:37 +01:00
Thomas Richter
39ed266b15 docs(02): complete Core CRUD phase
- 12 requirements verified complete (CORE-01-06, CAPT-01-03, UX-01-03)
- 8/8 success criteria passed
- User approved mobile UX at checkpoint

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 14:31:52 +01:00
Thomas Richter
6413c8e2d6 docs(02-04): complete mobile UX plan
Tasks completed: 2/2
- Install svelte-gestures and implement swipe-to-delete
- Mobile UX verification (checkpoint approved)

Phase 2 Core CRUD complete.
SUMMARY: .planning/phases/02-core-crud/02-04-SUMMARY.md
2026-01-29 14:28:38 +01:00
Thomas Richter
1533759c47 fix(02-04): improve swipe-to-delete with direct touch handlers
- Replace svelte-gestures with native touch event handlers
- Add invalidateAll() after save/delete for seamless list updates
- Add $effect to sync edit state when entry prop changes
- Improve swipe animation with isSwiping state tracking
2026-01-29 14:27:05 +01:00
Thomas Richter
104c437ea6 feat(02-04): add swipe-to-delete gesture for mobile
- Install svelte-gestures package for touch gesture support
- Add useSwipe hook to EntryCard for left-swipe detection
- Implement delete confirmation overlay on swipe
- Add red delete background revealed during swipe
- Maintain desktop delete button in expanded view
2026-01-29 11:17:50 +01:00
Thomas Richter
969b6a71af docs(02-03): complete inline editing plan
Tasks completed: 2/2
- Add expand/collapse and inline editing to EntryCard
- Create CompletedToggle component and wire up showCompleted

SUMMARY: .planning/phases/02-core-crud/02-03-SUMMARY.md
2026-01-29 11:14:09 +01:00
Thomas Richter
fc7c1f6c98 feat(02-03): add CompletedToggle to show/hide completed tasks
- Create CompletedToggle component with checkbox UI
- Add showCompleted URL param to +page.server.ts load function
- Update +page.svelte to sync preferences with URL
- Toggle state persists in localStorage via preferences store
- Clicking toggle updates URL and invalidates data for server filter
2026-01-29 11:12:51 +01:00
Thomas Richter
7d66a8f6fc feat(02-03): add expand/collapse and inline editing to EntryCard
- Add expanded state for expand/collapse toggle
- Implement inline editing for title, content, and type
- Add 400ms debounced auto-save using fetch to ?/update
- Show 'Saving...' indicator during save
- Add delete button with confirmation dialog
- Use Svelte slide transition for smooth expand/collapse
- Fix button nesting by restructuring layout
2026-01-29 11:11:41 +01:00
Thomas Richter
628f643197 docs(02-02): complete main UI components plan
Tasks completed: 3/3
- Install dependencies and create preferences store
- Create EntryCard and EntryList components
- Create QuickCapture component and integrate main page

SUMMARY: .planning/phases/02-core-crud/02-02-SUMMARY.md

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 11:08:47 +01:00
Thomas Richter
fed184828e feat(02-02): add QuickCapture component and integrate main page
- QuickCapture fixed at bottom with type selector and submit button
- Uses enhance for progressive form enhancement
- Persists last used type via preferences store
- Clears form on successful submit
- Main page composes EntryList and QuickCapture
- Adequate bottom padding (pb-40) for capture bar clearance
- Sticky header with app title

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 11:07:51 +01:00
Thomas Richter
7c3a8b024d feat(02-02): add EntryCard and EntryList components
- EntryCard displays entry with type indicator (checkbox/badge)
- Tasks have checkbox for toggle completion via form action
- Thoughts show purple "T" badge indicator
- Completed tasks show strikethrough styling
- EntryList renders entries with mobile compact/desktop card layout
- Type badge shows blue for task, purple for thought

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 11:06:51 +01:00
Thomas Richter
ed6659f266 feat(02-02): add preferences store with svelte-persisted-store
- Install svelte-persisted-store for localStorage persistence
- Create preferences store with lastEntryType and showCompleted
- Sticky type preference across sessions

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 11:06:19 +01:00
Thomas Richter
e28ee2caf5 docs(02-01): complete CRUD form actions plan
Tasks completed: 3/3
- Extend repository with getOrdered method
- Create form actions for CRUD operations
- Establish accessible base styling

SUMMARY: .planning/phases/02-core-crud/02-01-SUMMARY.md
2026-01-29 11:04:11 +01:00
Thomas Richter
234d765749 feat(02-01): add accessible base styling
- Set html font-size to 100% (respects browser settings)
- Set body font-size to 1rem (16px minimum)
- Add font smoothing for better readability
- Add safe-bottom class for mobile notch support
- Add touch-target utility for WCAG 44x44px minimum
2026-01-29 11:03:07 +01:00
Thomas Richter
9a449228b7 feat(02-01): add CRUD form actions
- Add create action with content validation (title optional, type defaults to thought)
- Add update action with field-by-field updates and validation
- Add delete action with existence check
- Add toggleComplete action to toggle between open/done
- Use getOrdered() in load function for tasks-first ordering
- Update page component to use new data structure
2026-01-29 11:02:43 +01:00
Thomas Richter
87bf928c12 feat(02-01): add getOrdered method to repository
- Add getOrdered(options?) method to EntryRepository interface
- Implement filtering for completed entries (showCompleted option)
- Order by type ASC (task before thought), then createdAt DESC
- Import asc, ne operators from drizzle-orm
2026-01-29 11:01:59 +01:00
Thomas Richter
457cd407a8 docs(02): create phase plan
Phase 02: Core CRUD
- 4 plans in 4 waves
- 3 parallel-ready (Wave 1-3 sequential), 1 checkpoint
- Ready for execution
2026-01-29 05:27:31 +01:00
Thomas Richter
4036457391 docs(02): research phase domain
Phase 02: Core CRUD
- Standard stack identified (SvelteKit form actions, svelte-gestures)
- Architecture patterns documented (progressive enhancement, inline editing)
- Pitfalls catalogued (reactivity, debounce, mobile-first)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 05:22:10 +01:00
Thomas Richter
a64df52f93 docs(02): capture phase context
Phase 02: Core CRUD
- Quick capture: fixed bottom, title+content, remember last type
- Layout: mixed cards/compact, tasks then thoughts, hide completed
- Editing: inline expand, auto-save, swipe to delete
2026-01-29 05:11:54 +01:00
Thomas Richter
01a7a6230a docs(01): complete foundation phase
Phase 1: Foundation verified complete
- 2/2 plans executed
- 11/11 must-haves verified
- Goal achieved: data persistence and project structure ready

Ready for Phase 2: Core CRUD
2026-01-29 04:44:45 +01:00
Thomas Richter
f3fa1a07e9 docs(01-02): complete repository layer plan
Tasks completed: 2/2
- Create EntryRepository with typed CRUD operations
- Create data directory, server hooks, and verification page

SUMMARY: .planning/phases/01-foundation/01-02-SUMMARY.md
2026-01-29 04:39:27 +01:00
Thomas Richter
d7c7e9448d feat(01-02): add data directory, server hooks, and verification page
- Create data/ directory with attachments/ subdirectory and .gitkeep files
- Update .gitignore to track .gitkeep but ignore database files
- Server hooks initialize database on first request
- Page server load fetches entries and creates test entry if none exist
- Verification page shows database status, entry count, and recent entries
2026-01-29 04:38:44 +01:00
Thomas Richter
a15dbfd3d8 feat(01-02): create EntryRepository with typed CRUD operations
- Implement EntryRepository interface with create, getById, getAll, update, delete, count
- SQLiteEntryRepository class using Drizzle ORM
- Automatic ID generation with nanoid
- Automatic timestamp management (createdAt, updatedAt)
- Pagination support via limit/offset
- Singleton pattern for consistent access
2026-01-29 04:37:37 +01:00
Thomas Richter
4c2e8fe366 docs(01-01): complete project setup and database schema plan
Tasks completed: 2/2
- Task 1: Create SvelteKit project with dependencies
- Task 2: Configure Drizzle schema with entries table

SUMMARY: .planning/phases/01-foundation/01-01-SUMMARY.md
2026-01-29 04:35:31 +01:00
Thomas Richter
63c5e4bddc feat(01-01): configure Drizzle schema with entries table
- Schema with unified entries table (task/thought types)
- Fields: id, title, content, type, status, pinned, dueDate, timestamps
- Database connection with WAL mode
- Drizzle kit scripts (db:generate, db:migrate, db:push, db:studio)
- Database file at ./data/taskplaner.db
2026-01-29 04:34:14 +01:00
Thomas Richter
3a2e0f2e01 feat(01-01): create SvelteKit project with dependencies
- SvelteKit minimal template with TypeScript
- Tailwind CSS v4 with @tailwindcss/vite plugin
- ESLint and Prettier for code quality
- Dependencies: better-sqlite3, drizzle-orm, nanoid, zod
- Dev server runs on localhost:5173
2026-01-29 04:32:54 +01:00
Thomas Richter
92e0d5188a docs(01): create phase 1 foundation plans
Phase 01: Foundation
- 2 plans in 2 waves
- Wave 1: Project setup with SvelteKit + Drizzle schema
- Wave 2: Repository layer + verification page
- Ready for execution

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 04:26:48 +01:00
Thomas Richter
f7634d9956 docs(01): capture phase context
Phase 01: Foundation
- User skipped discussion (infrastructure phase)
- Claude has discretion following research recommendations
2026-01-29 04:22:25 +01:00