All checks were successful
deploy / deploy (push) Successful in 3m37s
Custom page settings (title, slug, meta, published, navigation) now appear as a collapsible section at the top of the Page tab. The separate Settings tab has been fully removed. - Add page_settings_section component to page_renderer.ex - Remove dead :settings case from editor_panel_content - Delete settings_editor.ex component entirely - Remove SettingsEditor import from shop_components.ex - Add .page-settings-* CSS styles - Clean up old .settings-* CSS styles Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
921 B
Elixir
26 lines
921 B
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
|
|
"""
|
|
|
|
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.ThemeEditor
|
|
end
|
|
end
|
|
end
|