Commit Graph

260 Commits

Author SHA1 Message Date
27492ee01f feat: add location autocomplete 2026-04-10 15:40:38 -04:00
12849b2362 feat: add AI settings controls 2026-04-10 15:40:29 -04:00
e01a7ed1ad feat: use friendly event date labels 2026-04-09 17:41:37 -04:00
12f2fd95dc refactor: centralize event dialog form state 2026-04-09 17:41:26 -04:00
911e5735a4 feat: add shared recurrence helpers 2026-04-09 17:41:04 -04:00
95bc5db9a8 refactor: move calendar chrome into the home page 2026-04-09 13:25:52 -04:00
22224bebc6 feat: redesign local calendar workspace 2026-04-09 13:25:30 -04:00
f05e6f5792 feat: clarify AI draft messaging in toolbar 2026-04-09 11:59:45 -04:00
ecff8bebb1 feat: review single AI-generated events before saving 2026-04-09 11:59:32 -04:00
aef22f704f ️ feat: keep event actions menu visible 2026-04-09 01:10:37 -04:00
e4953ee42e chore: update skills
Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
2026-04-09 01:04:00 -04:00
92f60d3a9a 📱 fix: hide keyboard shortcuts trigger on mobile 2026-04-09 00:59:15 -04:00
513aafcebc feat: support multiple image uploads for AI event generation 🖼️
- Updated OpenRouter integration to accept an array of image URLs
- Updated ImagePicker to use the `multiple` attribute natively
- Added `appendImagesDeduped` for handling client-side image deduplication
- Enhanced clipboard pasting to extract multiple images at once
- Rendered multiple images in a horizontal thumbnail strip in the AIToolbar
- Added tests to cover multi-image logic and AI request mapping
2026-04-08 20:46:43 -04:00
cac201a4d2 feat: add document-level paste and Ctrl/Cmd+V handler for image clipboard support 2026-04-08 19:58:40 -04:00
1c864f162e feat: handle image paste in AI toolbar textarea via onPaste handler 2026-04-08 19:58:36 -04:00
b3121ed532 refactor: remove strict MIME-type allowlist check from validateImageFile 2026-04-08 19:58:05 -04:00
d850d88a3a test: add unit tests for extractImageFromClipboard 2026-04-08 19:58:03 -04:00
2d34bbebc4 feat: add extractImageFromClipboard utility with broad image/* MIME matching 2026-04-08 19:58:01 -04:00
722c0f0f7d 🚸 feat: redesign AI toolbar with two-zone layout and HoverCard shortcuts popover
- Split composer into AI zone (primary accent) and data actions zone (neutral)
- Move Attach/Generate to labeled footer bar below textarea (left/right aligned)
- Add info icon with HoverCard (hover preview) + Popover (pinned click) showing identical keyboard shortcuts content using shadcn HoverCard to fix theme inconsistency vs Tooltip
- Expose imperative triggerRef on ImagePicker for keyboard shortcut access
- Wire TooltipProvider in root layout; install shadcn kbd and hover-card
- Unauthenticated state shows locked CTA with real sign-in button weight
- Add behavioral contract tests for footer bar, info trigger, and zone layout
2026-04-08 13:08:36 -04:00
650d1d5f95 🩹 fix: restore textarea placeholder padding in ai-toolbar
Replace px-0 py-0 override with px-3 py-1 so placeholder text is
never flush against the edge. The ::placeholder pseudo-element
inherits box padding from the textarea; zeroing it out removed all
visual breathing room for the hint text.

Also adds tests/textarea.test.ts that locks down this behaviour via
class-string assertions on the resolved cn() output.
2026-04-08 09:19:59 -04:00
b93669a416 🔥 fix: remove border and background from empty events skeleton 2026-04-08 09:15:05 -04:00
9dfd4ef326 feat: add Google and Apple OAuth via better-auth socialProviders 2026-04-08 09:12:50 -04:00
e59476dea9 fix: remove fixed height and icon margins from sign-in buttons 2026-04-08 01:51:22 -04:00
86bb20baf4 fix: remove icon margin overrides from mode toggle menu items 2026-04-08 01:51:17 -04:00
1ef63d8070 fix: remove fixed height and icon margins from event actions toolbar 2026-04-08 01:51:12 -04:00
0f46e9322f refactor: mobile-first AI toolbar layout 2026-04-08 01:50:06 -04:00
0807779c9b feat: make AI summary notification dismissable 2026-04-08 01:47:29 -04:00
a3000def67 fix: remove redundant shadcn component className overrides 2026-04-08 01:43:55 -04:00
a819cbfced fix: normalize action button icon spacing and text size 2026-04-08 01:33:33 -04:00
de6407170d fix: align component styling inconsistencies 2026-04-08 01:29:51 -04:00
8eda6c89e2 feat: replace all vanilla HTML elements with shadcn components
- Install skeleton and tooltip shadcn components
- event-dialog: textarea → Textarea, duration chips → Button ghost
- date-time-picker: raw button trigger → Button outline, quick-date chips → Button ghost
- event-card: <a> URL link → Button link asChild
- sign-in: animate-pulse div → Skeleton
- ai-toolbar: animate-pulse div → Skeleton, event count span → Badge secondary
- event-actions-toolbar: event count span → Badge secondary
2026-04-08 01:17:18 -04:00
1cee73702b feat: add quick duration selectors (+15 min, +30 min, +1h, +3h) in event dialog 2026-04-08 01:07:14 -04:00
6884a87e3c feat: add Today / Next week / Next month quick selectors to date picker 2026-04-08 01:04:34 -04:00
cc5ce95e1b feat: replace raw date/time inputs with shadcn Calendar + Select picker
- Add popover shadcn component (radix-ui based)
- Create DateTimePicker component: Calendar popover for date + hour/minute
  selects for time, allDay-aware, emits ISO / YYYY-MM-DD strings
- Replace datetime-local / date <Input> fields in EventDialog with DateTimePicker
- Remove unused CalendarIcon and Clock imports from event-dialog
2026-04-08 01:02:47 -04:00
19228b0a71 feat(ui): add Separator component 2026-04-08 00:57:07 -04:00
26a82681c4 refactor(page): move event actions into AIToolbar, remove standalone EventActionsToolbar 2026-04-08 00:57:02 -04:00
2fc21ee929 feat(ai-toolbar): merge event actions into toolbar, add motion animations and AI summary panel
- Add event action props (events, onAddEvent, onImport, onExport, onClearAll)
- Show skeleton loading state while session is pending
- Render event action buttons (Add, Import, Export, Clear) in action bar
- Add AnimatePresence for image preview attach/remove
- Replace Card summary panel with animated glass-card panel
- Inline AI Summarize button into action bar when authenticated
- Add Sparkles icon to AI command section header
2026-04-08 00:56:58 -04:00
8d7cc5b2a5 style(recurrence-picker): tighten spacing and use muted xs labels 2026-04-08 00:56:52 -04:00
a26787a026 feat(event-dialog): redesign with glass-strong styling, icon-decorated inputs, and Cancel button
- Apply glass-strong to DialogContent
- Add LucideMapPin and CalendarIcon/Clock icons to input fields
- Replace native checkbox with Checkbox + Label component
- Unify allDay date inputs into single relative-positioned blocks
- Add Cancel button to DialogFooter
- Rename Save to Create for new events
2026-04-08 00:56:49 -04:00
e000d41474 feat(event-actions-toolbar): redesign with icon buttons, sm size, and event count badge 2026-04-08 00:56:43 -04:00
5c7003fd13 feat(drag-drop-container): replace border highlight with animated glass overlay on drag 2026-04-08 00:56:38 -04:00
8b54a661fe feat(events-list): add AnimatePresence for list transitions and improve empty state 2026-04-08 00:56:35 -04:00
c80322f20a feat(event-card): redesign with motion layout animations, improved date formatting, and contextual metadata
- Wrap card in motion.div with layout/enter/exit animations
- Replace Card/CardHeader/CardContent with flat glass-card div
- Add hover-reveal action menu with opacity transition
- Improve date formatting with locale options for month/day/time
- Show end time inline next to start
- Add ExternalLink for event URLs
- Add icons to dropdown menu items with DropdownMenuSeparator
2026-04-08 00:56:28 -04:00
2992cfbccd feat(rrule-display): display recurrence rule as a Badge instead of plain text 2026-04-08 00:56:21 -04:00
625e019ae7 feat(mode-toggle): simplify component, add icons to menu items and active state highlight 2026-04-08 00:56:17 -04:00
8ee5688168 feat(sign-in): add icons, use ghost variant and sm size for header buttons 2026-04-08 00:56:13 -04:00
59bc8fee38 feat(auth): redesign auth pages with glass UI and motion animations
- error page: replace Card with glass-strong panel, add AlertTriangle icon
- signin page: add framer-motion entrance animation, CalendarDays branding,
  Loader2 spinner while loading, merge isPending/session checks
- signout page: replace Card with glass-strong panel, add LogOut icon,
  tighten user identity display
2026-04-08 00:56:08 -04:00
c6086bdcc7 refactor(layout): switch to Geist fonts, redesign header, default to dark theme
- Replace Magra with Geist Mono font
- Rename font variables to geistSans/geistMono
- Apply both font variables to body
- Redesign sticky header with glass-strong and CalendarDays icon
- Wrap main content in max-w-4xl centered container
- Add glass-strong className to Toaster
- Default theme changed to dark
2026-04-08 00:56:03 -04:00
22fe3ec97b style: overhaul design tokens, shadows, animations, and glass utilities
- Replace warm/mixed color palette with clean cool blue-grey tokens
- Reduce border-radius from 1.25rem to 0.75rem
- Rewrite shadow system using oklch with proper depth scale
- Switch fonts from custom serif/sans to Geist Sans/Mono CSS vars
- Add CSS animation keyframes (fade-in, slide-up, slide-down, scale-in)
- Add glass, glass-card, and glass-strong utility classes
2026-04-08 00:55:55 -04:00
40dfde34a2 deps: add framer-motion and radix-ui packages 2026-04-08 00:55:48 -04:00