All checks were successful
deploy / deploy (push) Successful in 4m13s
Phase 3b of unified editing mode. The Settings tab now shows context-specific forms: custom pages get editable title, slug, meta, visibility and nav options; system pages get read-only info with links to admin; product/collection pages show provider info. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
1.0 KiB
Elixir
28 lines
1.0 KiB
Elixir
defmodule BerrypodWeb.ShopComponents do
|
|
@moduledoc """
|
|
Facade module for shop/storefront UI components.
|
|
|
|
`use BerrypodWeb.ShopComponents` imports all sub-modules:
|
|
|
|
- `Base` — themed inputs, buttons, cards
|
|
- `Layout` — header, footer, mobile nav, shop_layout wrapper
|
|
- `Cart` — cart drawer, cart items, order summary
|
|
- `Product` — product cards, gallery, variant selector, hero sections
|
|
- `Content` — rich text, responsive images, contact form, reviews
|
|
- `ThemeEditor` — shared theme editor components for admin and on-site editing
|
|
- `SettingsEditor` — shared settings editor components for on-site editing
|
|
"""
|
|
|
|
defmacro __using__(_opts \\ []) do
|
|
quote do
|
|
import BerrypodWeb.ShopComponents.Base
|
|
import BerrypodWeb.ShopComponents.Cart
|
|
import BerrypodWeb.ShopComponents.Content
|
|
import BerrypodWeb.ShopComponents.Layout
|
|
import BerrypodWeb.ShopComponents.Product
|
|
import BerrypodWeb.ShopComponents.SettingsEditor
|
|
import BerrypodWeb.ShopComponents.ThemeEditor
|
|
end
|
|
end
|
|
end
|