ultisuite-client/lib/stores
R3D347HR4Y 07d57f13a8
Some checks are pending
E2E / Playwright e2e (push) Waiting to run
Add Contact Avatar Features and Improve UI Components
- Introduced new ContactAvatar and ContactAvatarPicker components for enhanced avatar management in contact views.
- Updated ContactDetailView and ContactFormView to utilize the new avatar components, improving user experience when adding or editing contacts.
- Enhanced ContactHoverCard and ContactRow components to display avatars, providing a more visually appealing interface.
- Added loading and error states in ContactsListView for better user feedback during data fetching.
- Implemented a new ContactsLoadState component to handle loading and error scenarios in the contacts list.
- Updated package.json to include @formkit/auto-animate for improved UI animations.
2026-06-06 20:26:51 +02:00
..
account-store.ts huhuhuhu 2026-05-25 13:52:40 +02:00
blocked-senders-store.ts Add Contact Avatar Features and Improve UI Components 2026-06-06 20:26:51 +02:00
compose-identities-store.ts huhuhuhu 2026-05-25 13:52:40 +02:00
debounced-json-storage.ts major perf improvements 2026-05-15 23:51:57 +02:00
hydration.ts First commit, not a small one 2026-05-15 17:40:17 +02:00
mail-search-store.ts Huhu 2026-05-20 14:06:44 +02:00
mail-settings-store.ts huhuhuhu 2026-05-25 13:52:40 +02:00
mail-signatures-store.ts huhuhuhu 2026-05-25 13:52:40 +02:00
mail-store.ts feat(api): offline-first mail sync w/ TanStack Query 2026-05-23 00:04:28 +02:00
mail-ui-store.ts huhuhuhu 2026-05-25 13:52:40 +02:00
nav-store.ts huhuhuhu 2026-05-25 13:52:40 +02:00
README.md before split 2 2026-05-20 16:01:08 +02:00
scheduled-store.ts feat(api): offline-first mail sync w/ TanStack Query 2026-05-23 00:04:28 +02:00
trusted-senders-store.ts huhuhuhu 2026-05-25 13:52:40 +02:00

Mail stores (Zustand)

Persisted (debounced-json-storage / persist)

  • mail-store — read/star/important overrides, label edits, recent folder visits
  • mail-settings-store — density, conversation mode, sort, display prefs
  • nav-store — sidebar folder/label tree, disabled nav labels
  • account-store — active account
  • scheduled-store — scheduled send queue

Ephemeral UI (session only)

  • mail-search-store — search input, dropdown, filter chips before URL submit
  • mail-ui-store — shell chrome: sidebar collapsed, mobile search overlay, folder unread badges

Rules

  • URL is source of truth for folder, inbox tab, page, open message (useMailRoute + mail-url.ts)
  • Search results use query params on /mail/search (SearchParams); bar/overlay state syncs via submitMailSearch in lib/mail-search/navigate.ts
  • Do not persist ephemeral UI unless product explicitly requires it