Files
SRCmail/stores/__tests__/ui-store.test.ts
T
Linus Rath cf02f587de feat: resizable columns, nav rail overhaul, multi-select & drag-drop, UI polish
Resizable Columns
- Add ResizeHandle component with mouse drag, keyboard (Arrow keys),
  and double-click to reset to default width
- Add sidebarWidth/emailListWidth to ui-store with clamping + persistence
- Wire resize handles between sidebar/email-list panels on desktop

Navigation Rail Overhaul
- Move StorageQuotaCircle, push-status, sign-out from Sidebar to NavigationRail
- Interactive SVG ring with popover breakdown (used/free/total)
- Sidebar collapse state lifted to ui-store
- Show total email count per mailbox alongside unread badge

Email Multi-Selection & Drag-and-Drop
- Ctrl+Click (toggle) and Shift+Click (range) on all list items
- Add selectRangeEmails and lastSelectedEmailId to email-store
- Enable drag-and-drop on thread items and thread headers
- useEmailDrag accepts optional threadEmails for full-thread drag

Email Viewer Layout
- Remove card wrapper for cleaner full-width reading
- Always render HTML body when available
- Adjust skeleton loader to match flat layout

Modal & UI Polish
- Standardise backdrops, close buttons, padding, border-radius, transitions
- Migrate template-string classNames to cn() in settings
- Unify focus-ring token to ring-ring on form controls

i18n
- Add storage_used/free/total keys to all 8 locales

Dev Mock JMAP Server (new, gated by DEV_MOCK_JMAP=true)
- Session, Mailbox/Email/Thread/Identity CRUD, back-references, upload
- GET /download with Content-Disposition, GET /eventsource SSE

Tests (46 new)
- ui-store (13), email-selection (10), resize-handle (9), mock-server (14)
2026-03-09 16:46:25 +01:00

114 lines
3.8 KiB
TypeScript

import { describe, it, expect, beforeEach } from 'vitest';
import { useUIStore } from '../ui-store';
describe('ui-store', () => {
beforeEach(() => {
useUIStore.setState({
activeView: 'list',
sidebarOpen: false,
tabletListVisible: true,
isMobile: false,
isTablet: false,
isDesktop: true,
sidebarWidth: 256,
emailListWidth: 384,
sidebarCollapsed: false,
});
localStorage.clear();
});
describe('setSidebarWidth', () => {
it('should clamp to minimum', () => {
useUIStore.getState().setSidebarWidth(50);
expect(useUIStore.getState().sidebarWidth).toBe(180);
});
it('should clamp to maximum', () => {
useUIStore.getState().setSidebarWidth(999);
expect(useUIStore.getState().sidebarWidth).toBe(400);
});
it('should accept values within range', () => {
useUIStore.getState().setSidebarWidth(300);
expect(useUIStore.getState().sidebarWidth).toBe(300);
});
});
describe('setEmailListWidth', () => {
it('should clamp to minimum', () => {
useUIStore.getState().setEmailListWidth(100);
expect(useUIStore.getState().emailListWidth).toBe(240);
});
it('should clamp to maximum', () => {
useUIStore.getState().setEmailListWidth(1000);
expect(useUIStore.getState().emailListWidth).toBe(600);
});
it('should accept values within range', () => {
useUIStore.getState().setEmailListWidth(450);
expect(useUIStore.getState().emailListWidth).toBe(450);
});
});
describe('resetSidebarWidth', () => {
it('should reset to default (256)', () => {
useUIStore.getState().setSidebarWidth(350);
useUIStore.getState().resetSidebarWidth();
expect(useUIStore.getState().sidebarWidth).toBe(256);
});
it('should persist to localStorage', () => {
useUIStore.getState().setSidebarWidth(350);
useUIStore.getState().setEmailListWidth(500);
useUIStore.getState().resetSidebarWidth();
const stored = JSON.parse(localStorage.getItem('column-widths')!);
expect(stored.sidebarWidth).toBe(256);
expect(stored.emailListWidth).toBe(500);
});
});
describe('resetEmailListWidth', () => {
it('should reset to default (384)', () => {
useUIStore.getState().setEmailListWidth(550);
useUIStore.getState().resetEmailListWidth();
expect(useUIStore.getState().emailListWidth).toBe(384);
});
it('should persist to localStorage', () => {
useUIStore.getState().setSidebarWidth(300);
useUIStore.getState().setEmailListWidth(550);
useUIStore.getState().resetEmailListWidth();
const stored = JSON.parse(localStorage.getItem('column-widths')!);
expect(stored.sidebarWidth).toBe(300);
expect(stored.emailListWidth).toBe(384);
});
});
describe('persistColumnWidths', () => {
it('should save current widths to localStorage', () => {
useUIStore.getState().setSidebarWidth(280);
useUIStore.getState().setEmailListWidth(420);
useUIStore.getState().persistColumnWidths();
const stored = JSON.parse(localStorage.getItem('column-widths')!);
expect(stored.sidebarWidth).toBe(280);
expect(stored.emailListWidth).toBe(420);
});
});
describe('sidebarCollapsed', () => {
it('should toggle collapsed state', () => {
expect(useUIStore.getState().sidebarCollapsed).toBe(false);
useUIStore.getState().toggleSidebarCollapsed();
expect(useUIStore.getState().sidebarCollapsed).toBe(true);
useUIStore.getState().toggleSidebarCollapsed();
expect(useUIStore.getState().sidebarCollapsed).toBe(false);
});
it('should set collapsed directly', () => {
useUIStore.getState().setSidebarCollapsed(true);
expect(useUIStore.getState().sidebarCollapsed).toBe(true);
});
});
});