defmodule Corex.Accordion do @moduledoc ~S''' Phoenix implementation of [Zag.js Accordion](https://zagjs.com/components/react/accordion). ## Examples ### List You must use `Corex.List.Item` struct for items. The value for each item is optional, useful for controlled mode and API to identify the item. You can specify disabled for each item. ```heex <.accordion class="accordion" items={[ %Corex.List.Item{ trigger: "Lorem ipsum dolor sit amet", content: "Consectetur adipiscing elit. Sed sodales ullamcorper tristique." }, %Corex.List.Item{ trigger: "Duis dictum gravida odio ac pharetra?", content: "Nullam eget vestibulum ligula, at interdum tellus." }, %Corex.List.Item{ trigger: "Donec condimentum ex mi", content: "Congue molestie ipsum gravida a. Sed ac eros luctus." } ]} /> ``` ### List Custom Similar to List but render a custom item slot that will be used for all items. Use `{item.meta.trigger}` and `{item.meta.content}` to render the trigger and content for each item. This example assumes the import of `.icon` from `Core Components` ```heex <.accordion class="accordion" items={[ %Corex.List.Item{ value: "lorem", trigger: "Lorem ipsum dolor sit amet", content: "Consectetur adipiscing elit. Sed sodales ullamcorper tristique.", meta: %{ indicator: "hero-chevron-right", } }, %Corex.List.Item{ trigger: "Duis dictum gravida odio ac pharetra?", content: "Nullam eget vestibulum ligula, at interdum tellus.", meta: %{ indicator: "hero-chevron-right", } }, %Corex.List.Item{ value: "donec", trigger: "Donec condimentum ex mi", content: "Congue molestie ipsum gravida a. Sed ac eros luctus.", disabled: true, meta: %{ indicator: "hero-chevron-right", } } ]} > <:item :let={item}> <.accordion_trigger item={item}> {item.data.trigger} <:indicator> <.icon name={item.data.meta.indicator} /> <.accordion_content item={item}> {item.data.content} ``` ### Custom Render a custom item slot per accordion item manually. Use let={item} to get the item data and pass it to the `accordion_trigger/1` and `accordion_content/1` components. The trigger component takes an optional `:indicator` slot to render the indicator ico This example assumes the import of `.icon` from `Core Components` ```heex <.accordion id="my-accordion" value={["duis"]} class="accordion"> <:item :let={item} value="lorem" disabled> <.accordion_trigger item={item}> Lorem ipsum dolor sit amet <:indicator> <.icon name="hero-chevron-right" /> <.accordion_content item={item}> Consectetur adipiscing elit. Sed sodales ullamcorper tristique. Proin quis risus feugiat tellus iaculis fringilla. <:item :let={item} value="duis"> <.accordion_trigger item={item}> Duis dictum gravida odio ac pharetra? <:indicator> <.icon name="hero-chevron-right" /> <.accordion_content item={item}> Nullam eget vestibulum ligula, at interdum tellus. Quisque feugiat, dui ut fermentum sodales, lectus metus dignissim ex. ``` ### Controlled Render an accordion controlled by the server. You must use the `on_value_change` event to update the value on the server and pass the value as a list of strings. The event will receive the value as a map with the key `value` and the id of the accordion. ```elixir defmodule MyAppWeb.AccordionLive do use MyAppWeb, :live_view def mount(_params, _session, socket) do {:ok, assign(socket, :value, ["lorem"])} end def handle_event("on_value_change", %{"value" => value}, socket) do {:noreply, assign(socket, :value, value)} end def render(assigns) do ~H""" <.accordion controlled value={@value} on_value_change="on_value_change" class="accordion"> <:item :let={item} value="lorem"> <.accordion_trigger item={item}> Lorem ipsum dolor sit amet <.accordion_content item={item}> Consectetur adipiscing elit. Sed sodales ullamcorper tristique. Proin quis risus feugiat tellus iaculis fringilla. <:item :let={item} value="duis"> <.accordion_trigger item={item}> Duis dictum gravida odio ac pharetra? <.accordion_content item={item}> Nullam eget vestibulum ligula, at interdum tellus. Quisque feugiat, dui ut fermentum sodales, lectus metus dignissim ex. """ end end ``` ### Async When the initial props are not available on mount, you can use the `Phoenix.LiveView.assign_async` function to assign the props asynchronously You can use the optional `Corex.Accordion.accordion_skeleton/1` to render a loading or error state ```elixir defmodule MyAppWeb.AccordionAsyncLive do use MyAppWeb, :live_view def mount(_params, _session, socket) do socket = socket |> assign_async(:accordion, fn -> Process.sleep(1000) items = [ %Corex.List.Item{ value: "lorem", trigger: "Lorem ipsum dolor sit amet", content: "Consectetur adipiscing elit. Sed sodales ullamcorper tristique.", disabled: true }, %Corex.List.Item{ value: "duis", trigger: "Duis dictum gravida odio ac pharetra?", content: "Nullam eget vestibulum ligula, at interdum tellus." }, %Corex.List.Item{ value: "donec", trigger: "Donec condimentum ex mi", content: "Congue molestie ipsum gravida a. Sed ac eros luctus." } ] {:ok, %{ accordion: %{ items: items, value: ["duis", "donec"] } }} end) {:ok, socket} end def render(assigns) do ~H""" <.async_result :let={accordion} assign={@accordion}> <:loading> <.accordion_skeleton count={3} class="accordion" /> <:failed> there was an error loading the accordion <.accordion id="async-accordion" class="accordion" items={accordion.items} value={accordion.value} /> """ end end ``` ## API Control In order to use the API, you must use and id on the component ***Client-side*** ```heex ``` ***Server-side*** ```elixir def handle_event("open_item", _, socket) do {:noreply, Corex.Accordion.set_value(socket, "my-accordion", ["item-1"])} end ``` ## Styling Use data attributes to target elements: ```css [data-scope="accordion"][data-part="root"] {} [data-scope="accordion"][data-part="item"] {} [data-scope="accordion"][data-part="item-trigger"] {} [data-scope="accordion"][data-part="item-content"] {} [data-scope="accordion"][data-part="item-indicator"] {} ``` If you wish to use the default Corex styling, you can use the class `accordion` on the component. This requires to install mix corex.design first and import the component css file. ```css @import "../corex/main.css"; @import "../corex/tokens/themes/neo/light.css"; @import "../corex/components/accordion.css"; ``` You can then use modifiers ```heex <.accordion class="accordion accordion--accent accordion--lg"> ``` Learn more about modifiers and [Corex Design](https://corex-ui.com/components/accordion#modifiers) ''' @doc type: :component use Phoenix.Component alias Corex.Accordion.Anatomy.{Props, Root, Item} alias Corex.Accordion.Connect import Corex.Helpers, only: [validate_value!: 1] @doc """ Renders an accordion component. You can use either: - The `:item` slot for manual item definition with full control - The `:items` attribute for programmatic item generation from a list of `%Corex.List.Item{}` structs When using `:items`, each item MUST be a `%Corex.List.Item{}` struct with: - `:value` (required) - unique identifier for the item - `:trigger` (required) - content for the trigger button - `:content` (optional, default: "") - content for the accordion panel - `:disabled` (optional, default: false) - whether the item is disabled """ attr(:id, :string, required: false, doc: "The id of the accordion, useful for API to identify the accordion" ) attr(:items, :list, default: nil, doc: "The items of the accordion, must be a list of %Corex.List.Item{} structs" ) attr(:value, :list, default: [], doc: "The initial value or the controlled value of the accordion, must be a list of strings" ) attr(:controlled, :boolean, default: false, doc: "Whether the accordion is controlled. Only in LiveView, the on_value_change event is required" ) attr(:collapsible, :boolean, default: true, doc: "Whether the accordion is collapsible") attr(:disabled, :boolean, default: false, doc: "Whether the accordion is disabled") attr(:multiple, :boolean, default: true, doc: "Whether the accordion allows multiple items to be selected" ) attr(:orientation, :string, default: "vertical", values: ["horizontal", "vertical"], doc: "The orientation of the accordion" ) attr(:dir, :string, default: "ltr", values: ["ltr", "rtl"], doc: "The direction of the accordion" ) attr(:on_value_change, :string, default: nil, doc: "The server event name when the value change" ) attr(:on_value_change_client, :string, default: nil, doc: "The client event name when the value change" ) attr(:on_focus_change, :string, default: nil, doc: "The server event name when the focus change" ) attr(:on_focus_change_client, :string, default: nil, doc: "The client event name when the focus change" ) attr(:rest, :global) slot :item, required: false do attr(:value, :string, doc: "The value of the item, useful in controlled mode and for API to identify the item" ) attr(:disabled, :boolean, doc: "Whether the item is disabled") end def accordion(assigns) do assigns = assigns |> assign_new(:id, fn -> "accordion-#{System.unique_integer([:positive])}" end) |> validate_items() ~H"""