frontend-design-patterns
π―Skillfrom mineru98/skills-store
frontend-design-patterns skill from mineru98/skills-store
Installation
npx skills add https://github.com/mineru98/skills-store --skill frontend-design-patternsSkill Details
Enterprise React architecture combining DDD and FSD patterns. Use when (1) designing or structuring React applications, (2) implementing Index/Types/Styles component pattern, (3) setting up Service/Hook 1:1 mapping with React Query and Axios, (4) configuring Zustand state management, (5) applying TypeScript conventions for maintainable codebases. Triggers include architectural decisions, folder structure planning, data layer design, and code organization tasks.
Overview
# Frontend Design Patterns
Enterprise-grade React architecture combining Domain-Driven Design (DDD) and Feature-Sliced Design (FSD) with strict TypeScript conventions.
Core Patterns
1. DDD + FSD Hybrid Architecture
- Philosophy: Think in domains, not pages
- Structure: Layered architecture with unidirectional dependencies
- Key Concept: Features (user actions) vs Entities (data representation)
Reference: See references/ddd-fsd-fundamentals.md for detailed DDD/FSD fusion strategy.
2. FSD Layer Hierarchy
```
App -> Pages -> Widgets -> Features -> Entities -> Shared
```
Each layer only depends on layers below it. No upward dependencies.
- Slices: Domain-based directories (e.g.,
features/cart,features/auth) - Segments:
ui/,model/,api/,lib/,config/,index.ts
Reference: See references/fsd-layers-guide.md for complete layer definitions.
3. Component Structure: Index/Types/Styles
```
ComponentName/
βββ index.tsx # React logic & JSX
βββ types.ts # TypeScript interfaces
βββ styles.ts # CSS-in-JS (Emotion/styled-components)
```
Separates concerns at filesystem level. Improves collaboration and reduces merge conflicts.
Reference: See references/component-structure.md for implementation details.
4. Data Layer: Service/Hook 1:1 Mapping
```
Service Layer (Pure TS) -> Hook Layer (React Query) -> Components
```
- Service: API calls, DTOs (React-agnostic)
- Hook: React Query integration, caching, loading/error states
- Rule: One service function = one custom hook
- Query Keys: Use factory pattern
Reference: See references/data-layer-architecture.md for Axios/React Query setup.
5. State Management: Zustand + React Query
- React Query: Server state (API data, caching)
- Zustand: Client state (theme, modals, complex forms)
- Store Location: Domain-specific in
model/segment - Pattern: Slice pattern with selector optimization
Reference: See references/state-management.md for Zustand patterns.
6. TypeScript Conventions
| Target | Case | Example |
|--------|------|---------|
| Component | PascalCase | UserProfile |
| Interface | PascalCase | UserProfileProps |
| Variable | camelCase | userList, isLoading |
| Boolean | camelCase | is, has, should, can prefix |
| Constant | UPPER_SNAKE | MAX_COUNT |
| Hook | camelCase | useAuth, useWindowSize |
Reference: See references/typescript-conventions.md for complete rules.
Workflow
Load references based on current task:
| Task | Reference |
|------|-----------|
| Architecture design | references/ddd-fsd-fundamentals.md |
| Folder structure | references/fsd-layers-guide.md |
| Component creation | references/component-structure.md |
| API/Data layer | references/data-layer-architecture.md |
| State management | references/state-management.md |
| Code conventions | references/typescript-conventions.md |
Scripts
Create FSD Structure
```bash
python scripts/create_fsd_structure.py
```
Creates complete FSD folder structure with standard segments.
Create Component
```bash
python scripts/create_component.py
```
Generates Index/Types/Styles pattern component.
Create Service/Hook Pair
```bash
python scripts/create_service_hook.py
```
Generates Service Layer + Hook Layer with Query Key factory.
Create Zustand Store
```bash
python scripts/create_zustand_store.py
```
Generates Zustand store with selectors and actions.
Key Principles
- Separation of Concerns: UI, logic, styles separated at filesystem level
- Unidirectional Dependencies: Layers only depend on lower layers
- Explicit Dependencies: No circular references
- Type Safety: Strict TypeScript, no
any - Single Responsibility: Each file/module has one clear purpose
More from this repository7
explaining-code skill from mineru98/skills-store
Detects and automatically fixes PowerShell script encoding issues, ensuring correct display of non-ASCII characters like Korean text and emojis on Windows.
Transforms frontend UI/UX by automatically modifying styling, layout, components, and responsive designs using Gemini CLI in --yolo mode.
logic-master skill from mineru98/skills-store
Analyzes Excel files to detect data quality issues, format inconsistencies, and generate comprehensive statistical reports with actionable insights.
commands-creator skill from mineru98/skills-store
Guides creating specialized Claude subagents for targeted, efficient task delegation across different domains. ``` Generates specialized subagents for precise, domain-specific task delegation and ...