| name | dockview-with-examples |
| description | Dockview with practical React examples (~170k tokens). USE THIS SKILL FOR: finding working code patterns to copy, seeing how to implement specific features, learning idiomatic usage, understanding real-world integration patterns. Contains everything in dockview-full PLUS 45 React sandbox examples covering tabs, groups, drag-drop, serialization, theming, and more. Choose this when you need 'show me how to implement X' or 'what's the pattern for Y'. |
Dockview Implementation + Examples Reference
191 files | 26925 lines | 170362 tokens
Contents
Everything in dockview-full PLUS:
packages/docs/sandboxes/react/dockview/**/src/*.tsx - 40+ React examples:
- Basic setup and configuration
- Tab customization and rendering
- Group management and constraints
- Drag and drop customization
- Serialization/deserialization
- Theming and styling
- Watermarks and empty states
- Floating panels
- Popout windows
- Resize handling
- And more...
packages/docs/sandboxes/dockview-app/src/*.tsx - Full application example
Files
| File | Contents |
|---|
references/summary.md | Start here - Purpose, format explanation, and statistics |
references/project-structure.md | Directory tree with line counts per file |
references/files.md | All file contents (search with ## File: <path>) |
How to Use
1. Find file locations
Check project-structure.md for the directory tree:
src/
index.ts (42 lines)
utils/
helpers.ts (128 lines)
2. Read file contents
Grep in files.md for the file path:
## File: src/utils/helpers.ts
3. Search for code
Grep in files.md for keywords:
function calculateTotal
Common Use Cases
Understand a feature:
- Search
project-structure.md for related file names
- Read the main implementation file in
files.md
- Search for imports/references to trace dependencies
Debug an error:
- Grep the error message or class name in
files.md
- Check line counts in
project-structure.md to find large files
Find all usages:
- Grep function or variable name in
files.md
Tips
- Use line counts in
project-structure.md to estimate file complexity
- Search
## File: pattern to jump between files
- Check
summary.md for excluded files, format details, and file statistics
This skill was generated by Repomix