- Add /admin/providers LiveView for connecting and managing POD providers - Implement pagination for Printify API (handles all products, not just first page) - Add parallel processing (5 concurrent) for faster product sync - Add slug-based fallback matching when provider_product_id changes - Add error recovery with try/rescue to prevent stuck sync status - Add checksum-based change detection to skip unchanged products - Add upsert tests covering race conditions and slug matching - Add Printify provider tests - Document Printify integration research (product identity, order risks, open source vs managed hosting implications) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
3.8 KiB
3.8 KiB
SimpleShop Progress
Single source of truth for project status and task tracking.
Current Status
Working:
- Theme editor with 8 presets, instant switching, full customization
- Image optimization pipeline (AVIF/WebP/JPEG responsive variants)
- Shop pages (home, collections, products, cart, about, contact)
- Mobile-first design with bottom navigation
- 100% PageSpeed score
In Progress:
- Products context with provider integration (sync working, wiring to shop views next)
Next Up
- Printify Webhook Endpoint - Real-time product updates when changes happen in Printify
- Wire Products to Shop LiveViews - Replace PreviewData with real synced products
- Variant Selector Component - Size/colour picker on product pages
- Session-based Cart - Real cart with actual variants
Feature Areas
Theme System
Status: Complete
- 8 theme presets (Gallery, Studio, Boutique, etc.)
- Three-layer CSS architecture (primitives, attributes, semantic)
- Instant theme switching via CSS custom property injection
- Logo/header image uploads with SVG recoloring
- Self-hosted fonts (10 typefaces, GDPR compliant)
- ETS-cached CSS generation
Image Optimization
Status: Complete
- Oban background job processing
- Responsive
<picture>element (AVIF/WebP/JPEG) - Only generates sizes <= source dimensions
- Disk cache for variants (regenerable from DB)
mix optimize_imagestask for mockups- On-demand JPEG fallback generation
See: docs/plans/image-optimization.md for implementation details
Products & Provider Integration
Status: In Progress
Completed
- Products context with schemas (
c5c06d9) - Provider abstraction layer
- Printify client integration
- Product/variant/image schemas
- Admin Provider Setup UI (
/admin/providers) - connect, test, sync - ProductSyncWorker with pagination, parallel processing, error recovery
- Slug-based fallback matching for changed provider IDs
Remaining Tasks
- Printify webhook endpoint for real-time product updates (~1.5hr)
- Wire shop LiveViews to Products context (~2hr)
- Add variant selector component (~2hr)
Future Enhancements (post-MVP)
- Pre-checkout variant validation (verify availability before order)
- Cost change monitoring/alerts (warn if Printify cost increased)
- OAuth platform integration (appear in Printify's "Publish to" UI)
Technical Debt
- Add HTTP mocking (Mox/Bypass) for Printify API tests
See: docs/plans/products-context.md for implementation details See: docs/plans/printify-integration-research.md for API research & risk analysis
Cart & Checkout
Status: Planned
- Session-based cart module
- Cart LiveView with real variants
- Stripe Checkout integration
- Order creation and persistence
See: ROADMAP.md for design notes
Orders & Fulfillment
Status: Planned
- Orders context with schemas
- Order submission to Printify
- Order status tracking
- Customer notifications
See: docs/plans/products-context.md for schema design
Page Builder
Status: Future
Database-driven pages with drag-and-drop sections.
See: docs/plans/page-builder.md for design
Completed Work Reference
| Feature | Commit | Notes |
|---|---|---|
| Products context Phase 1 | c5c06d9 |
Schemas, provider abstraction |
| Oban Lifeline plugin | c1e1988 |
Rescue orphaned jobs |
| Image optimization | Multiple | Full pipeline complete |
| Self-hosted fonts | - | 10 typefaces, 728KB |
| Mobile bottom nav | - | Fixed tab bar |
| PageSpeed 100% | - | All optimizations |
| Theme presets (8) | - | Gallery, Studio, etc. |