2025-12-30 12:26:26 +00:00
|
|
|
defmodule SimpleshopThemeWeb do
|
|
|
|
|
@moduledoc """
|
|
|
|
|
The entrypoint for defining your web interface, such
|
|
|
|
|
as controllers, components, channels, and so on.
|
|
|
|
|
|
|
|
|
|
This can be used in your application as:
|
|
|
|
|
|
|
|
|
|
use SimpleshopThemeWeb, :controller
|
|
|
|
|
use SimpleshopThemeWeb, :html
|
|
|
|
|
|
|
|
|
|
The definitions below will be executed for every controller,
|
|
|
|
|
component, etc, so keep them short and clean, focused
|
|
|
|
|
on imports, uses and aliases.
|
|
|
|
|
|
|
|
|
|
Do NOT define functions inside the quoted expressions
|
|
|
|
|
below. Instead, define additional modules and import
|
|
|
|
|
those modules here.
|
|
|
|
|
"""
|
|
|
|
|
|
feat: add automated Printify mockup generation & POD sample content
Printify Integration:
- Add Printify API client module with full HTTP wrapper
- Add mockup generator with dynamic "cover" scaling algorithm
- Create Mix task (mix generate_mockups) for automated mockup generation
- Support --cleanup flag to delete products after downloading mockups
- Calculate optimal scale factor based on artwork/placeholder aspect ratios
- Handle landscape artwork on portrait print areas without white space
Sample Content (16 products across 5 POD categories):
- Art Prints: Mountain Sunrise, Ocean Waves, Wildflower Meadow, Geometric Abstract, Botanical Illustration
- Apparel: Forest Silhouette T-Shirt, Forest Light Hoodie
- Tote Bags: Wildflower Meadow, Sunset Gradient
- Homewares: Fern Leaf Mug, Ocean Waves Cushion, Night Sky Blanket
- Stationery: Autumn Leaves Notebook, Monstera Leaf Notebook
- Accessories: Monstera Leaf Phone Case, Blue Waves Laptop Sleeve
Preview Data Updates:
- Replace generic e-commerce products with POD-focused items
- Update categories to POD-relevant: Art Prints, Apparel, Homewares, Stationery, Accessories
- Update cart drawer items to match new product range
- Refresh testimonials with POD-appropriate reviews
Theme Content Updates:
- Update hero section for "Wildprint Studio" brand identity
- Rewrite about page narrative with humble, British, personal tone
- Update search hints to nature/POD relevant terms
- Add mockups directory to static paths
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-14 23:35:18 +00:00
|
|
|
def static_paths, do: ~w(assets css fonts images mockups favicon.ico robots.txt demo.html)
|
2025-12-30 12:26:26 +00:00
|
|
|
|
|
|
|
|
def router do
|
|
|
|
|
quote do
|
|
|
|
|
use Phoenix.Router, helpers: false
|
|
|
|
|
|
|
|
|
|
# Import common connection and controller functions to use in pipelines
|
|
|
|
|
import Plug.Conn
|
|
|
|
|
import Phoenix.Controller
|
|
|
|
|
import Phoenix.LiveView.Router
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def channel do
|
|
|
|
|
quote do
|
|
|
|
|
use Phoenix.Channel
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def controller do
|
|
|
|
|
quote do
|
|
|
|
|
use Phoenix.Controller, formats: [:html, :json]
|
|
|
|
|
|
|
|
|
|
use Gettext, backend: SimpleshopThemeWeb.Gettext
|
|
|
|
|
|
|
|
|
|
import Plug.Conn
|
|
|
|
|
|
|
|
|
|
unquote(verified_routes())
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def live_view do
|
|
|
|
|
quote do
|
|
|
|
|
use Phoenix.LiveView
|
|
|
|
|
|
|
|
|
|
unquote(html_helpers())
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def live_component do
|
|
|
|
|
quote do
|
|
|
|
|
use Phoenix.LiveComponent
|
|
|
|
|
|
|
|
|
|
unquote(html_helpers())
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def html do
|
|
|
|
|
quote do
|
|
|
|
|
use Phoenix.Component
|
|
|
|
|
|
|
|
|
|
# Import convenience functions from controllers
|
|
|
|
|
import Phoenix.Controller,
|
|
|
|
|
only: [get_csrf_token: 0, view_module: 1, view_template: 1]
|
|
|
|
|
|
|
|
|
|
# Include general helpers for rendering HTML
|
|
|
|
|
unquote(html_helpers())
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
defp html_helpers do
|
|
|
|
|
quote do
|
|
|
|
|
# Translation
|
|
|
|
|
use Gettext, backend: SimpleshopThemeWeb.Gettext
|
|
|
|
|
|
|
|
|
|
# HTML escaping functionality
|
|
|
|
|
import Phoenix.HTML
|
|
|
|
|
# Core UI components
|
|
|
|
|
import SimpleshopThemeWeb.CoreComponents
|
2026-01-17 13:11:39 +00:00
|
|
|
# Shop UI components
|
|
|
|
|
import SimpleshopThemeWeb.ShopComponents
|
2025-12-30 12:26:26 +00:00
|
|
|
|
|
|
|
|
# Common modules used in templates
|
|
|
|
|
alias Phoenix.LiveView.JS
|
|
|
|
|
alias SimpleshopThemeWeb.Layouts
|
|
|
|
|
|
|
|
|
|
# Routes generation with the ~p sigil
|
|
|
|
|
unquote(verified_routes())
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def verified_routes do
|
|
|
|
|
quote do
|
|
|
|
|
use Phoenix.VerifiedRoutes,
|
|
|
|
|
endpoint: SimpleshopThemeWeb.Endpoint,
|
|
|
|
|
router: SimpleshopThemeWeb.Router,
|
|
|
|
|
statics: SimpleshopThemeWeb.static_paths()
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
|
When used, dispatch to the appropriate controller/live_view/etc.
|
|
|
|
|
"""
|
|
|
|
|
defmacro __using__(which) when is_atom(which) do
|
|
|
|
|
apply(__MODULE__, which, [])
|
|
|
|
|
end
|
|
|
|
|
end
|