johndoe6345789 5a344e4fb6 test: Add comprehensive test coverage - improve from 21.88% to 29.17%
Phase 1: App routes and core infrastructure
- Add providers.test.tsx: 8 tests for Redux/error boundary/navigation setup
- Add PageLayout.test.tsx: 16 tests for layout structure and accessibility
- Add page.test.tsx: 11 tests for home page rendering and composition

Phase 2: Database layer (db.ts)
- Add db.test.ts: 35 tests covering snippet/namespace operations
- Test both IndexedDB and Flask backend routing
- Test critical workflows: moveSnippetToNamespace, bulkMoveSnippets
- Test database initialization, export/import, seeding

Phase 3: Feature workflows (namespace manager)
- Add NamespaceSelector.test.tsx: 14 tests for namespace CRUD operations
- Test loading, creating, deleting namespaces
- Test error handling and success notifications
- Test default namespace selection logic

Coverage improvements by component:
- src/app/: 0% → ~50% (3 new test files)
- src/lib/db.ts: 32.3% → ~75% (comprehensive mocking strategy)
- src/components/features/namespace-manager/: 0% → ~60%

Overall: 21.88% → 29.17% (+7.29 percentage points, +3.56 absolute coverage)

All 571 tests passing, no lint warnings

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-20 20:46:32 +00:00
2026-01-17 14:23:21 +00:00
2026-01-17 14:23:21 +00:00
2026-01-17 14:23:21 +00:00
2026-01-17 14:23:21 +00:00
2026-01-17 14:23:21 +00:00

CodeSnippet - Code Snippet Manager

A powerful code snippet management application with flexible storage backends and an integrated component library showcase.

🚀 Quick Start

Choose the setup that works best for you:

docker-compose up -d

Access at: http://localhost:3000 (auto-configured with Flask backend)

Option 2: Local Development

# Start backend
docker-compose -f docker-compose.backend-only.yml up -d

# Configure frontend
echo "VITE_FLASK_BACKEND_URL=http://localhost:5000" > .env

# Start frontend
npm install
npm run dev

Access at: http://localhost:5173

Option 3: Frontend Only (No Backend)

npm install
npm run dev

Access at: http://localhost:5173 (uses local IndexedDB storage)

📖 See detailed setup instructions →

🔑 Key Features

  • 📝 Snippet Management - Create, edit, and organize code snippets with syntax highlighting
  • 🔍 Smart Search - Real-time search across title, description, language, and code
  • 👁️ Live Preview - Split-screen editor with live React component preview
  • 💾 Flexible Storage - Choose between local IndexedDB or Flask backend
  • 🔄 Auto-Configuration - Automatically use Flask backend via environment variable
  • 🗂️ Component Library - Showcase organized by atomic design principles
  • 📤 Export/Import - Backup and restore your entire database
  • 🎨 Beautiful UI - Modern dark theme with purple and cyan accents

🎯 Storage Backends

CodeSnippet supports two storage backends:

IndexedDB (Default)

  • Local browser storage
  • No server required
  • Perfect for personal use

Flask Backend (Optional)

  • Remote server storage
  • Multi-device sync
  • Requires Flask backend

🔧 Auto-Configuration:
Set VITE_FLASK_BACKEND_URL environment variable to automatically use Flask backend:

# .env file
VITE_FLASK_BACKEND_URL=http://localhost:5000

When set, the app automatically connects to Flask backend and disables manual configuration.

📖 Complete backend configuration guide →

📚 Documentation

Getting Started

Backend & Storage

Production Deployment

🛠️ Technology Stack

  • React 19 + TypeScript
  • SQL.js (SQLite in WebAssembly)
  • Flask (Python backend)
  • Monaco Editor (VS Code editor)
  • Framer Motion (animations)
  • Shadcn UI (component library)
  • Tailwind CSS (styling)

📄 License

The Spark Template files and resources from GitHub are licensed under the terms of the MIT license, Copyright GitHub, Inc.

Description
No description provided
Readme MIT 38 MiB
Languages
HTML 56%
TypeScript 32.2%
SCSS 9%
JavaScript 1.7%
CSS 0.8%
Other 0.3%