2026-02-18 21:23:15 +00:00
|
|
|
defmodule BerrypodWeb.ThemeHook do
|
2026-02-08 11:59:33 +00:00
|
|
|
@moduledoc """
|
|
|
|
|
LiveView on_mount hook for theme settings, CSS, and media assigns.
|
|
|
|
|
|
|
|
|
|
Mounted in the public_shop live_session alongside CartHook.
|
|
|
|
|
Eliminates the identical theme-loading boilerplate from every shop LiveView.
|
2026-02-11 22:58:58 +00:00
|
|
|
|
|
|
|
|
## Actions
|
|
|
|
|
|
|
|
|
|
- `:mount_theme` — loads theme settings, CSS, and media assigns
|
|
|
|
|
- `:require_site_live` — redirects unauthenticated visitors to /coming-soon
|
|
|
|
|
when the shop is not live
|
2026-02-08 11:59:33 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import Phoenix.Component, only: [assign: 3]
|
|
|
|
|
|
2026-03-28 10:09:33 +00:00
|
|
|
alias Berrypod.{Products, Settings, Site, Media}
|
2026-02-18 21:23:15 +00:00
|
|
|
alias Berrypod.Theme.{CSSCache, CSSGenerator}
|
2026-02-08 11:59:33 +00:00
|
|
|
|
|
|
|
|
def on_mount(:mount_theme, _params, _session, socket) do
|
|
|
|
|
theme_settings = Settings.get_theme_settings()
|
|
|
|
|
|
|
|
|
|
generated_css =
|
|
|
|
|
case CSSCache.get() do
|
|
|
|
|
{:ok, css} ->
|
|
|
|
|
css
|
|
|
|
|
|
|
|
|
|
:miss ->
|
2026-02-20 18:39:41 +00:00
|
|
|
css = CSSGenerator.generate(theme_settings, &BerrypodWeb.Endpoint.static_path/1)
|
2026-02-08 11:59:33 +00:00
|
|
|
CSSCache.put(css)
|
|
|
|
|
css
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
socket =
|
|
|
|
|
socket
|
|
|
|
|
|> assign(:theme_settings, theme_settings)
|
2026-03-03 14:52:31 +00:00
|
|
|
|> assign(:site_name, Settings.site_name())
|
|
|
|
|
|> assign(:site_description, Settings.site_description())
|
2026-02-08 11:59:33 +00:00
|
|
|
|> assign(:generated_css, generated_css)
|
|
|
|
|
|> assign(:logo_image, Media.get_logo())
|
|
|
|
|
|> assign(:header_image, Media.get_header())
|
2026-02-13 08:27:26 +00:00
|
|
|
|> assign(:categories, Products.list_categories())
|
2026-02-08 11:59:33 +00:00
|
|
|
|> assign(:mode, :shop)
|
2026-02-13 16:02:25 +00:00
|
|
|
|> assign(
|
|
|
|
|
:is_admin,
|
|
|
|
|
!!(socket.assigns[:current_scope] && socket.assigns.current_scope.user)
|
|
|
|
|
)
|
2026-03-28 10:09:33 +00:00
|
|
|
|> assign(:header_nav_items, load_header_nav())
|
|
|
|
|
|> assign(:footer_nav_items, load_footer_nav())
|
|
|
|
|
|> assign(:social_links, Site.social_links_for_shop())
|
|
|
|
|
|> assign(:announcement_text, Site.announcement_text())
|
|
|
|
|
|> assign(:announcement_link, Site.announcement_link())
|
|
|
|
|
|> assign(:announcement_style, Site.announcement_style())
|
2026-02-08 11:59:33 +00:00
|
|
|
|
|
|
|
|
{:cont, socket}
|
|
|
|
|
end
|
2026-02-11 22:58:58 +00:00
|
|
|
|
2026-02-12 14:46:07 +00:00
|
|
|
def on_mount(:require_site_live, _params, _session, socket) do
|
2026-02-11 22:58:58 +00:00
|
|
|
cond do
|
|
|
|
|
Settings.site_live?() ->
|
|
|
|
|
{:cont, socket}
|
|
|
|
|
|
2026-02-12 14:46:07 +00:00
|
|
|
# mount_current_scope runs first, so current_scope is already validated
|
|
|
|
|
socket.assigns[:current_scope] && socket.assigns.current_scope.user ->
|
2026-02-11 22:58:58 +00:00
|
|
|
{:cont, socket}
|
|
|
|
|
|
|
|
|
|
true ->
|
|
|
|
|
{:halt, Phoenix.LiveView.redirect(socket, to: "/coming-soon")}
|
|
|
|
|
end
|
|
|
|
|
end
|
2026-02-28 11:18:37 +00:00
|
|
|
|
2026-03-28 10:09:33 +00:00
|
|
|
defp load_header_nav do
|
2026-03-28 22:19:48 +00:00
|
|
|
Site.nav_items_for_shop("header") |> add_active_slugs()
|
2026-03-28 10:09:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
defp load_footer_nav do
|
2026-03-28 22:19:48 +00:00
|
|
|
Site.nav_items_for_shop("footer")
|
2026-03-28 10:09:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Add active_slugs for Shop nav item to highlight on collection and pdp pages
|
|
|
|
|
defp add_active_slugs(items) do
|
|
|
|
|
Enum.map(items, fn item ->
|
|
|
|
|
if item["slug"] == "collection" do
|
|
|
|
|
Map.put(item, "active_slugs", ["collection", "pdp"])
|
|
|
|
|
else
|
|
|
|
|
item
|
|
|
|
|
end
|
|
|
|
|
end)
|
2026-02-28 11:18:37 +00:00
|
|
|
end
|
2026-02-08 11:59:33 +00:00
|
|
|
end
|