Folder & Naming Pattern Guide
This document defines the folder structure and naming conventions used in this codebase.
File Naming Convention
All files use kebab-case (lowercase with hyphens):
β
add-feature-dialog.tsx
β
use-board-actions.ts
β
board-view.tsx
β AddFeatureDialog.tsx
β useBoardActions.ts
β BoardView.tsx
Export Naming Convention
While files use kebab-case, exports use PascalCase for components and camelCase for hooks/functions:
// File: add-feature-dialog.tsx
export function AddFeatureDialog() { ... }
// File: use-board-actions.ts
export function useBoardActions() { ... }
View Folder Structure
Each complex view should have its own folder with the following structure:
components/views/
βββ [view-name].tsx # Entry point (exports the main view)
βββ [view-name]/ # Subfolder for complex views
βββ components/ # View-specific reusable components
β βββ index.ts # Barrel export
β βββ [component].tsx # Individual components
βββ dialogs/ # View-specific dialogs and modals
β βββ index.ts # Barrel export
β βββ [dialog-name].tsx # Individual dialogs/modals
βββ hooks/ # View-specific hooks
β βββ index.ts # Barrel export
β βββ use-[name].ts # Individual hooks
βββ shared/ # Shared utilities between components
β βββ index.ts # Barrel export
β βββ [name].ts # Shared code
βββ constants.ts # View constants
βββ types.ts # View-specific types (optional)
βββ utils.ts # View utilities (optional)
βββ [main-component].tsx # Main view components (e.g., kanban-board.tsx)
Example: board-view
components/views/
βββ board-view.tsx # Entry point
βββ board-view/
βββ components/
β βββ index.ts
β βββ kanban-card.tsx
β βββ kanban-column.tsx
βββ dialogs/
β βββ index.ts
β βββ add-feature-dialog.tsx
β βββ edit-feature-dialog.tsx
β βββ follow-up-dialog.tsx
β βββ delete-all-verified-dialog.tsx
β βββ delete-completed-feature-dialog.tsx
β βββ completed-features-modal.tsx
β βββ agent-output-modal.tsx
β βββ feature-suggestions-dialog.tsx
βββ hooks/
β βββ index.ts
β βββ use-board-actions.ts
β βββ use-board-features.ts
β βββ use-board-drag-drop.ts
βββ shared/
β βββ index.ts
β βββ model-constants.ts
β βββ model-selector.tsx
βββ constants.ts
βββ kanban-board.tsx
Global vs View-Specific Code
Global (src/hooks/, src/lib/, etc.)
Code that is used across multiple views:
src/hooks/use-auto-mode.ts- Used by board-view, agent-view, etc.src/hooks/use-keyboard-shortcuts.ts- Used across the appsrc/lib/utils.ts- Global utilities
View-Specific ([view-name]/hooks/, [view-name]/components/)
Code that is only used within a single view:
board-view/hooks/use-board-actions.ts- Only used by board-viewboard-view/components/kanban-card.tsx- Only used by board-view
Barrel Exports
Use index.ts files to create clean import paths:
// board-view/hooks/index.ts
export { useBoardActions } from './use-board-actions';
export { useBoardFeatures } from './use-board-features';
// Usage in board-view.tsx
import { useBoardActions, useBoardFeatures } from './board-view/hooks';
When to Create a Subfolder
Create a subfolder for a view when:
- The view file exceeds ~500 lines
- The view has 3+ related components
- The view has 2+ custom hooks
- Multiple dialogs/modals are specific to the view
Dialogs Folder
The dialogs/ folder contains all dialog and modal components specific to a view:
What goes in dialogs/:
- Confirmation dialogs (e.g.,
delete-all-verified-dialog.tsx) - Form dialogs (e.g.,
add-feature-dialog.tsx,edit-feature-dialog.tsx) - Modal overlays (e.g.,
agent-output-modal.tsx,completed-features-modal.tsx) - Any component that renders as an overlay/popup
Naming convention:
- Use
-dialog.tsxsuffix for confirmation/form dialogs - Use
-modal.tsxsuffix for content-heavy modals
Barrel export pattern:
// dialogs/index.ts
export { AddFeatureDialog } from './add-feature-dialog';
export { EditFeatureDialog } from './edit-feature-dialog';
export { AgentOutputModal } from './agent-output-modal';
// ... etc
// Usage in view entry point
import { AddFeatureDialog, EditFeatureDialog, AgentOutputModal } from './board-view/dialogs';
Quick Reference
| Location | File Naming | Export Naming |
|---|---|---|
| Components | kebab-case.tsx |
PascalCase |
| Dialogs | *-dialog.tsx or *-modal.tsx |
PascalCase |
| Hooks | use-kebab-case.ts |
camelCase |
| Utils/Lib | kebab-case.ts |
camelCase |
| Types | kebab-case.ts |
PascalCase |
| Constants | constants.ts |
SCREAMING_SNAKE_CASE |