-
Notifications
You must be signed in to change notification settings - Fork 415
Calendar UI porting #1544
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calendar UI porting #1544
Conversation
|
Caution Review failedThe pull request is closed. 📝 WalkthroughWalkthroughAdds a calendars tab type and calendar UI to the main area, replaces id-based tab equality with a new isSameTab helper across hooks and routing, updates tab schema and helpers, removes an old calendar component and the eventsByMonth index in persisted store, and tightens sidebar session active checks. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor User
participant MainHeader as MainHeader
participant useTabs as useTabs.openNew
participant TabsState as Tabs State
User->>MainHeader: Click "New Calendar"
MainHeader->>useTabs: openNew({ type: "calendars", month, active: true })
useTabs->>useTabs: Filter existing with !isSameTab(t, tab)
useTabs->>TabsState: Append new active calendar tab
TabsState-->>MainHeader: Updated tabs
MainHeader-->>User: Calendar tab appears active
sequenceDiagram
autonumber
participant UI as TabsHeader/Item
participant useTabs as useTabs.select / useTabs.close
participant TabsState as Tabs State
UI->>useTabs: select(tab)
useTabs->>TabsState: Map tabs: active = isSameTab(t, tab)
UI->>useTabs: close(tab)
useTabs->>useTabs: Remove with !isSameTab(t, tab)
useTabs->>useTabs: Compute next active index
useTabs->>TabsState: Update tabs with single active
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Possibly related PRs
Pre-merge checks and finishing touches❌ Failed checks (2 warnings)
✅ Passed checks (1 passed)
📜 Recent review detailsConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro 📒 Files selected for processing (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
apps/desktop2/src/components/main/main-area.tsx (1)
4-158: Import ReactNode to satisfy the type annotation.
Line 156 referencesReact.ReactNode, butReactis never imported, causing a TypeScript compile-time failure. Pulling inReactNodeexplicitly avoids the namespace lookup and keeps tree-shaking intact.+import type { ReactNode } from "react"; -import { eachDayOfInterval, endOfMonth, startOfMonth } from "date-fns"; +import { eachDayOfInterval, endOfMonth, format, startOfMonth } from "date-fns"; -function TabItemBase( - { icon, title, active, handleClose, handleSelect }: { - icon: React.ReactNode; +function TabItemBase( + { icon, title, active, handleClose, handleSelect }: { + icon: ReactNode;
📜 Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (7)
apps/desktop2/src/components/calendar.tsx(0 hunks)apps/desktop2/src/components/main/left-sidebar.tsx(1 hunks)apps/desktop2/src/components/main/main-area.tsx(9 hunks)apps/desktop2/src/hooks/useTabs.ts(4 hunks)apps/desktop2/src/routes/app/main/_layout.index.tsx(2 hunks)apps/desktop2/src/tinybase/store/persisted.ts(0 hunks)apps/desktop2/src/types/index.ts(1 hunks)
💤 Files with no reviewable changes (2)
- apps/desktop2/src/components/calendar.tsx
- apps/desktop2/src/tinybase/store/persisted.ts
🧰 Additional context used
📓 Path-based instructions (1)
**/*.{js,ts,tsx,rs}
⚙️ CodeRabbit configuration file
**/*.{js,ts,tsx,rs}: 1. Do not add any error handling. Keep the existing one.
2. No unused imports, variables, or functions.
3. For comments, keep it minimal. It should be about "Why", not "What".
Files:
apps/desktop2/src/components/main/left-sidebar.tsxapps/desktop2/src/routes/app/main/_layout.index.tsxapps/desktop2/src/types/index.tsapps/desktop2/src/components/main/main-area.tsxapps/desktop2/src/hooks/useTabs.ts
🧬 Code graph analysis (4)
apps/desktop2/src/routes/app/main/_layout.index.tsx (1)
apps/desktop2/src/types/index.ts (1)
isSameTab(67-69)
apps/desktop2/src/types/index.ts (1)
apps/desktop2/src/tinybase/store/persisted.ts (1)
TABLES(221-221)
apps/desktop2/src/components/main/main-area.tsx (2)
apps/desktop2/src/hooks/useTabs.ts (1)
useTabs(4-83)apps/desktop2/src/types/index.ts (3)
uniqueIdfromTab(54-65)Tab(39-39)rowIdfromTab(41-52)
apps/desktop2/src/hooks/useTabs.ts (1)
apps/desktop2/src/types/index.ts (2)
isSameTab(67-69)Tab(39-39)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
- GitHub Check: ci (windows, windows-latest)
- GitHub Check: ci (macos, macos-14)
No description provided.