2026-02-18 21:23:15 +00:00
|
|
|
defmodule BerrypodWeb.PageTemplates do
|
2026-01-17 22:17:59 +00:00
|
|
|
@moduledoc """
|
|
|
|
|
Shared page templates used by both the public shop and theme preview.
|
|
|
|
|
|
|
|
|
|
These templates accept a `mode` parameter to control navigation behavior:
|
|
|
|
|
- `:shop` - Links navigate normally (real shop pages)
|
|
|
|
|
- `:preview` - Links send events to parent LiveView (theme editor)
|
|
|
|
|
|
|
|
|
|
All templates expect these common assigns:
|
|
|
|
|
- `theme_settings` - Current theme configuration
|
|
|
|
|
- `logo_image` - Logo image struct or nil
|
|
|
|
|
- `header_image` - Header image struct or nil
|
|
|
|
|
- `mode` - `:shop` or `:preview`
|
|
|
|
|
- `cart_items` - List of cart items (can be empty)
|
|
|
|
|
- `cart_count` - Number of items in cart
|
|
|
|
|
"""
|
|
|
|
|
use Phoenix.Component
|
2026-02-18 21:23:15 +00:00
|
|
|
use BerrypodWeb.ShopComponents
|
2026-01-17 22:17:59 +00:00
|
|
|
|
|
|
|
|
embed_templates "page_templates/*"
|
2026-02-24 08:40:08 +00:00
|
|
|
|
|
|
|
|
def format_order_status("unfulfilled"), do: "Being prepared"
|
|
|
|
|
def format_order_status("submitted"), do: "Sent to printer"
|
|
|
|
|
def format_order_status("processing"), do: "In production"
|
|
|
|
|
def format_order_status("shipped"), do: "On its way"
|
|
|
|
|
def format_order_status("delivered"), do: "Delivered"
|
|
|
|
|
def format_order_status("failed"), do: "Issue — contact us"
|
|
|
|
|
def format_order_status("cancelled"), do: "Cancelled"
|
|
|
|
|
def format_order_status(status), do: status
|
2026-01-17 22:17:59 +00:00
|
|
|
end
|