Current section

Files

Jump to
mishka_chelekom priv components native_select.eex
Raw

priv/components/native_select.eex

defmodule <%= @module %> do
@moduledoc """
The `<%= @module %>` module provides a customizable native select component
for forms in Phoenix LiveView. It supports a variety of styles, colors, and sizes, making
it adaptable to different design requirements. The module allows for flexible configuration
of the select element, including options for multi-selection, custom labels, and error handling.
This component is highly versatile, with extensive theming options such as border styles,
color variants, and rounded corners. It also provides a convenient way to render select
options through slots, enabling dynamic rendering of form elements based on the passed data.
With built-in error handling and custom error messages, `<%= @module %>`
enhances the user experience by providing clear feedback and interaction states,
ensuring a polished and user-friendly interface for form-based applications.
**Documentation:** https://mishka.tools/chelekom/docs/forms/native-select
"""
use Phoenix.Component
import <%= inspect(@web_module) %>.Components.<%= @module_prefix_camel %>Icon, only: [<%= @component_prefix %>icon: 1]
<%= if is_nil(@type) or "native_select" in @type do %>
@doc """
Renders a customizable `native_select` input component with options for single or multiple selections.
Supports validation and various styling options.
## Examples
```elixir
<.<%= @component_prefix %>native_select name="name" description="This is description" label="This is outline label">
<:option value="usa">USA</:option>
<:option value="uae" selected>UAE</:option>
</.<%= @component_prefix %>native_select>
<.<%= @component_prefix %>native_select
name="name"
space="small"
color="danger"
variant="default"
multiple
min_height="min-h-36"
size="extra_small"
description="This is multiple option group"
label="This is outline label"
>
<.<%= @component_prefix %>select_option_group label="group 1">
<:option value="usa">USA</:option>
<:option value="uae" selected>UAE</:option>
</.<%= @component_prefix %>select_option_group>
<.<%= @component_prefix %>select_option_group label="group 2">
<:option value="usa">USA</:option>
<:option value="uae">UAE</:option>
<:option value="br" selected>Great Britain</:option>
</.<%= @component_prefix %>select_option_group>
</.<%= @component_prefix %>native_select>
```
"""
@doc type: :component
attr :id, :string,
default: nil,
doc: "A unique identifier is used to manage state and interaction"
attr :class, :any, default: nil, doc: "Custom CSS class for additional styling"
attr :color, :string, default: "natural", doc: "Determines color theme"
attr :border, :string, default: "extra_small", doc: "Determines border style"
attr :rounded, :string, default: "small", doc: "Determines the border radius"
attr :variant, :string, default: "base", doc: "Determines the style"
attr :description, :string, default: nil, doc: "Determines a short description"
attr :space, :string, default: "medium", doc: "Space between items"
attr :min_height, :string, default: nil, doc: "Determines min height style"
attr :description_class, :string, default: "text-[12px]", doc: "Custom classes for description"
attr :label_class, :string, default: nil, doc: "Custom CSS class for the label styling"
attr :field_wrapper_class, :string, default: nil, doc: "Custom CSS class field wrapper"
attr :select_class, :string, default: nil, doc: "Custom CSS class for additional styling"
attr :description_wrapper_class, :string,
default: nil,
doc: "Custom classes for description wrapper"
attr :size, :string,
default: "extra_large",
doc:
"Determines the overall size of the elements, including padding, font size, and other items"
attr :ring, :boolean,
default: true,
doc:
"Determines a ring border on focused input, utilities for creating outline rings with box-shadows."
attr :error_icon, :string, default: nil, doc: "Icon to be displayed alongside error messages"
attr :label, :string, default: nil, doc: "Specifies text for the label"
attr :multiple, :boolean,
default: false,
doc: "Specifies if the select input allows multiple selections"
attr :errors, :list, default: [], doc: "List of error messages to be displayed"
attr :name, :any, doc: "Name of input"
slot :inner_block, required: false, doc: "Inner block that renders HEEx content"
slot :option, required: false do
attr :value, :string, doc: "Value of each select option"
attr :selected, :boolean, required: false, doc: "Specifies this option is selected"
attr :disabled, :string, required: false, doc: "Specifies this option is disabled"
end
attr :field, Phoenix.HTML.FormField, doc: "a form field struct retrieved from the form"
attr :rest, :global,
include: ~w(autocomplete disabled form readonly multiple required title autofocus tabindex),
doc:
"Global attributes can define defaults which are merged with attributes provided by the caller"
@spec <%= @component_prefix %>native_select(map()) :: Phoenix.LiveView.Rendered.t()
def <%= @component_prefix %>native_select(%{field: %Phoenix.HTML.FormField{} = field} = assigns) do
errors = if Phoenix.Component.used_input?(field), do: field.errors, else: []
assigns
|> assign(field: nil, id: assigns.id || field.id)
|> assign(:errors, Enum.map(errors, &translate_error(&1)))
|> assign_new(:name, fn ->
if assigns.rest[:multiple], do: field.name <> "[]", else: field.name
end)
|> assign_new(:value, fn -> field.value end)
|> <%= @component_prefix %>native_select()
end
def <%= @component_prefix %>native_select(assigns) do
~H"""
<div class={[
@variant != "native" && color_variant(@variant, @color),
rounded_size(@rounded),
border_class(@border, @variant),
size_class(@size),
space_class(@space),
"[&_.select-field]:focus-within:outline-none",
@ring && "[&_.select-field]:focus-within:ring-1",
@class
]}>
<div
:if={@label || @description}
class={["select-label-wrapper", @description_wrapper_class]}
>
<.label :if={@label} for={@id} class={@label_class}>{@label}</.label>
<div :if={@description} class={@description_class}>
{@description}
</div>
</div>
<select
name={@name}
id={@id}
multiple={@multiple}
class={[
"select-field appearance-none block w-full text-[16px] sm:font-inherit py-1 px-2",
@multiple && "select-multiple-option",
@errors != [] && "select-field-error",
@min_height,
@select_class
]}
{@rest}
>
<option
:for={{option, index} <- Enum.with_index(@option, 1)}
id={"#{@id}-option-#{index}"}
value={option[:value]}
selected={option[:selected]}
disabled={option[:disabled]}
>
{render_slot(option)}
</option>
</select>
<.error :for={msg <- @errors} icon={@error_icon}>{msg}</.error>
</div>
"""
end
<% end %>
<%= if is_nil(@type) or "select_option_group" in @type do %>
@doc """
Renders a group (`select_option_group`) of selectable options within a native select input.
The group can have a label and multiple options, with support for selected and disabled states.
## Examples
```elixir
<.<%= @component_prefix %>select_option_group label="group 2">
<:option value="usa">USA</:option>
<:option value="uae">UAE</:option>
<:option value="br" selected>Great Britain</:option>
</.<%= @component_prefix %>select_option_group>
```
"""
@doc type: :component
attr :id, :string,
default: nil,
doc: "A unique identifier is used to manage state and interaction"
attr :label, :string, default: nil, doc: "Specifies text for the label"
attr :class, :any, default: nil, doc: "Custom CSS class for additional styling"
slot :option, required: false, doc: "Option slot for select" do
attr :value, :string, doc: "Value of each select option"
attr :selected, :boolean, required: false, doc: "Specifies this option is selected"
attr :disabled, :string, required: false, doc: "Specifies this option is disabled"
end
def <%= @component_prefix %>select_option_group(assigns) do
~H"""
<optgroup label={@label} class={@class}>
<option
:for={{option, index} <- Enum.with_index(@option, 1)}
id={"#{@id}-option-#{index}"}
value={option[:value]}
selected={option[:selected]}
disabled={option[:disabled]}
>
{render_slot(option)}
</option>
</optgroup>
"""
end
<% end %>
attr :for, :string, default: nil, doc: "Specifies the form which is associated with"
attr :class, :any, default: nil, doc: "Custom CSS class for additional styling"
slot :inner_block, required: true, doc: "Inner block that renders HEEx content"
defp label(assigns) do
~H"""
<label for={@for} class={["font-semibold", @class]}>
{render_slot(@inner_block)}
</label>
"""
end
attr :icon, :string, default: nil, doc: "Icon displayed alongside of an item"
slot :inner_block, required: true, doc: "Inner block that renders HEEx content"
defp error(assigns) do
~H"""
<p class="mt-3 flex items-center gap-3 text-sm text-rose-700">
<.<%= @component_prefix %>icon :if={!is_nil(@icon)} name={@icon} class="shrink-0" />
{render_slot(@inner_block)}
</p>
"""
end
<%= if is_nil(@size) or "extra_small" in @size do %>
defp size_class("extra_small") do
[
"text-xs [&_.select-field]:text-xs [&_.select-field:not(.select-multiple-option)]:h-8"
]
end
<% end %>
<%= if is_nil(@size) or "small" in @size do %>
defp size_class("small") do
[
"text-sm [&_.select-field]:text-sm [&_.select-field:not(.select-multiple-option)]:h-9"
]
end
<% end %>
<%= if is_nil(@size) or "medium" in @size do %>
defp size_class("medium") do
[
"text-base [&_.select-field]:text-base [&_.select-field:not(.select-multiple-option)]:h-10"
]
end
<% end %>
<%= if is_nil(@size) or "large" in @size do %>
defp size_class("large") do
[
"text-lg [&_.select-field]:text-lg [&_.select-field:not(.select-multiple-option)]:h-11"
]
end
<% end %>
<%= if is_nil(@size) or "extra_large" in @size do %>
defp size_class("extra_large") do
[
"text-xl [&_.select-field]:text-xl [&_.select-field:not(.select-multiple-option)]:h-12"
]
end
<% end %>
defp size_class(params) when is_binary(params), do: params
<%= if is_nil(@rounded) or "extra_small" in @rounded do %>
defp rounded_size("extra_small"), do: "[&_.select-field]:rounded-sm"
<% end %>
<%= if is_nil(@rounded) or "small" in @rounded do %>
defp rounded_size("small"), do: "[&_.select-field]:rounded"
<% end %>
<%= if is_nil(@rounded) or "medium" in @rounded do %>
defp rounded_size("medium"), do: "[&_.select-field]:rounded-md"
<% end %>
<%= if is_nil(@rounded) or "large" in @rounded do %>
defp rounded_size("large"), do: "[&_.select-field]:rounded-lg"
<% end %>
<%= if is_nil(@rounded) or "extra_large" in @rounded do %>
defp rounded_size("extra_large"), do: "[&_.select-field]:rounded-xl"
<% end %>
<%= if is_nil(@rounded) or "full" in @rounded do %>
defp rounded_size("full"), do: "[&_.select-field]:rounded-full"
<% end %>
<%= if is_nil(@rounded) or "none" in @rounded do %>
defp rounded_size("none"), do: nil
<% end %>
defp rounded_size(params) when is_binary(params), do: params
defp border_class(_, variant)
when variant in [
"default",
"shadow",
"native"
],
do: nil
defp border_class("none", _), do: "[&_.select-field]:border-0"
defp border_class("extra_small", _), do: "[&_.select-field]:border"
defp border_class("small", _), do: "[&_.select-field]:border-2"
defp border_class("medium", _), do: "[&_.select-field]:border-[3px]"
defp border_class("large", _), do: "[&_.select-field]:border-4"
defp border_class("extra_large", _), do: "[&_.select-field]:border-[5px]"
defp border_class(params, _) when is_binary(params), do: params
<%= if is_nil(@space) or "none" in @space do %>
defp space_class("none"), do: nil
<% end %>
<%= if is_nil(@space) or "small" in @space do %>
defp space_class("extra_small"), do: "space-y-1"
<% end %>
<%= if is_nil(@space) or "small" in @space do %>
defp space_class("small"), do: "space-y-1.5"
<% end %>
<%= if is_nil(@space) or "medium" in @space do %>
defp space_class("medium"), do: "space-y-2"
<% end %>
<%= if is_nil(@space) or "large" in @space do %>
defp space_class("large"), do: "space-y-2.5"
<% end %>
<%= if is_nil(@space) or "extra_large" in @space do %>
defp space_class("extra_large"), do: "space-y-3"
<% end %>
defp space_class(params) when is_binary(params), do: params
<%= if is_nil(@variant) or "base" in @variant do %>
defp color_variant("base", _) do
[
"text-base-text-light dark:text-base-text-dark [&_.select-field:not(:has(.select-field-error))]:border-base-border-light [&_.select-field]:shadow-sm",
"[&_.select-field:not(:has(.select-field-error))]:bg-white",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-base-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-base-border-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-base-hover-light dark:focus-within:[&_.select-field]:ring-base-hover-dark"
]
end
<% end %>
<%= if is_nil(@variant) or "default" in @variant do %>
<%= if is_nil(@color) or "white" in @color do %>
defp color_variant("default", "white") do
[
"[&_.select-field]:bg-white text-form-white-text",
"[&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-form-white-focus",
]
end
<% end %>
<%= if is_nil(@color) or "natural" in @color do %>
defp color_variant("default", "natural") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-natural-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-natural-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-natural-light dark:focus-within:[&_.select-field]:ring-natural-dark",
]
end
<% end %>
<%= if is_nil(@color) or "primary" in @color do %>
defp color_variant("default", "primary") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-primary-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-primary-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-primary-light dark:focus-within:[&_.select-field]:ring-primary-dark",
]
end
<% end %>
<%= if is_nil(@color) or "secondary" in @color do %>
defp color_variant("default", "secondary") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-secondary-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-secondary-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-secondary-light dark:focus-within:[&_.select-field]:ring-secondary-dark",
]
end
<% end %>
<%= if is_nil(@color) or "success" in @color do %>
defp color_variant("default", "success") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-success-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-success-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-success-light dark:focus-within:[&_.select-field]:ring-success-dark",
]
end
<% end %>
<%= if is_nil(@color) or "warning" in @color do %>
defp color_variant("default", "warning") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-warning-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-warning-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-warning-light dark:focus-within:[&_.select-field]:ring-warning-dark",
]
end
<% end %>
<%= if is_nil(@color) or "danger" in @color do %>
defp color_variant("default", "danger") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-danger-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-danger-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-danger-light dark:focus-within:[&_.select-field]:ring-danger-dark",
]
end
<% end %>
<%= if is_nil(@color) or "info" in @color do %>
defp color_variant("default", "info") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-info-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-info-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-info-light dark:focus-within:[&_.select-field]:ring-info-dark",
]
end
<% end %>
<%= if is_nil(@color) or "misc" in @color do %>
defp color_variant("default", "misc") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-misc-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-misc-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-misc-light dark:focus-within:[&_.select-field]:ring-misc-dark",
]
end
<% end %>
<%= if is_nil(@color) or "dawn" in @color do %>
defp color_variant("default", "dawn") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-dawn-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-dawn-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-dawn-light dark:focus-within:[&_.select-field]:ring-dawn-dark",
]
end
<% end %>
<%= if is_nil(@color) or "silver" in @color do %>
defp color_variant("default", "silver") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-silver-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-silver-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-silver-light dark:focus-within:[&_.select-field]:ring-silver-dark",
]
end
<% end %>
<%= if is_nil(@color) or "dark" in @color do %>
defp color_variant("default", "dark") do
[
"[&_.select-field]:bg-default-dark-bg text-default-dark-bg [&_.select-field]:text-white",
"[&_.select-field.select-field-error]:bg-rose-700",
"focus-within:[&_.select-field]:ring-silver-hover-light",
]
end
<% end %>
<% end %>
<%= if is_nil(@variant) or "bordered" in @variant do %>
<%= if is_nil(@color) or "white" in @color do %>
defp color_variant("bordered", "white") do
[
"[&_.select-field]:bg-white [&_.select-field]:border-transparent text-form-white-text",
"[&_.select-field>input]:placeholder:text-form-white-text",
]
end
<% end %>
<%= if is_nil(@color) or "natural" in @color do %>
defp color_variant("bordered", "natural") do
[
"text-natural-bordered-text-light dark:text-natural-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-natural-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-natural-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-natural-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-natural-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-natural-light dark:focus-within:[&_.select-field]:ring-natural-dark",
]
end
<% end %>
<%= if is_nil(@color) or "primary" in @color do %>
defp color_variant("bordered", "primary") do
[
"text-primary-bordered-text-light dark:text-primary-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-primary-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-primary-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-primary-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-primary-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-primary-light dark:focus-within:[&_.select-field]:ring-primary-dark",
]
end
<% end %>
<%= if is_nil(@color) or "secondary" in @color do %>
defp color_variant("bordered", "secondary") do
[
"text-secondary-bordered-text-light dark:text-secondary-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-secondary-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-secondary-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-secondary-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-secondary-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-secondary-light dark:focus-within:[&_.select-field]:ring-secondary-dark",
]
end
<% end %>
<%= if is_nil(@color) or "success" in @color do %>
defp color_variant("bordered", "success") do
[
"text-success-bordered-text-light dark:text-success-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-success-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-success-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-success-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-success-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-success-light dark:focus-within:[&_.select-field]:ring-success-dark",
]
end
<% end %>
<%= if is_nil(@color) or "warning" in @color do %>
defp color_variant("bordered", "warning") do
[
"text-warning-bordered-text-light dark:text-warning-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-warning-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-warning-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-warning-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-warning-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-warning-light dark:focus-within:[&_.select-field]:ring-warning-dark",
]
end
<% end %>
<%= if is_nil(@color) or "danger" in @color do %>
defp color_variant("bordered", "danger") do
[
"text-danger-bordered-text-light dark:text-danger-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-danger-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-danger-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-danger-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-danger-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-danger-light dark:focus-within:[&_.select-field]:ring-danger-dark",
]
end
<% end %>
<%= if is_nil(@color) or "info" in @color do %>
defp color_variant("bordered", "info") do
[
"text-info-bordered-text-light dark:text-info-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-info-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-info-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-info-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-info-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-info-light dark:focus-within:[&_.select-field]:ring-info-dark",
]
end
<% end %>
<%= if is_nil(@color) or "misc" in @color do %>
defp color_variant("bordered", "misc") do
[
"text-misc-bordered-text-light dark:text-misc-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-misc-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-misc-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-misc-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-misc-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-misc-light dark:focus-within:[&_.select-field]:ring-misc-dark",
]
end
<% end %>
<%= if is_nil(@color) or "dawn" in @color do %>
defp color_variant("bordered", "dawn") do
[
"text-dawn-bordered-text-light dark:text-dawn-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-dawn-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-dawn-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-dawn-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-dawn-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-dawn-light dark:focus-within:[&_.select-field]:ring-dawn-dark",
]
end
<% end %>
<%= if is_nil(@color) or "silver" in @color do %>
defp color_variant("bordered", "silver") do
[
"text-silver-bordered-text-light dark:text-silver-hover-dark [&_.select-field:not(:has(.select-field-error))]:border-silver-bordered-text-light",
"[&_.select-field:not(:has(.select-field-error))]:bg-silver-bordered-bg-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-silver-bordered-bg-dark",
"dark:[&_.select-field:not(:has(.select-field-error))]:border-silver-hover-dark",
"[&_.select-field.select-field-error]:bg-rose-700 [&_.select-field.select-field-error]:border-rose-700",
"focus-within:[&_.select-field]:ring-silver-light dark:focus-within:[&_.select-field]:ring-silver-dark",
]
end
<% end %>
<%= if is_nil(@color) or "dark" in @color do %>
defp color_variant("bordered", "dark") do
[
"[&_.select-field]:bg-default-dark-bg text-default-dark-bg [&_.select-field]:border-silver-hover-light text-base-text-dark",
"focus-within:[&_.select-field]:ring-ring-dark",
]
end
<% end %>
<% end %>
<%= if is_nil(@variant) or "shadow" in @variant do %>
<%= if is_nil(@color) or "natural" in @color do %>
defp color_variant("shadow", "natural") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-natural-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-natural-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-natural-light dark:focus-within:[&_.select-field]:ring-natural-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-natural)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-natural)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "primary" in @color do %>
defp color_variant("shadow", "primary") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-primary-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-primary-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-primary-light dark:focus-within:[&_.select-field]:ring-primary-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-primary)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-primary)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "secondary" in @color do %>
defp color_variant("shadow", "secondary") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-secondary-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-secondary-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-secondary-light dark:focus-within:[&_.select-field]:ring-secondary-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-secondary)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-secondary)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "success" in @color do %>
defp color_variant("shadow", "success") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-success-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-success-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-success-light dark:focus-within:[&_.select-field]:ring-success-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-success)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-success)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "warning" in @color do %>
defp color_variant("shadow", "warning") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-warning-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-warning-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-warning-light dark:focus-within:[&_.select-field]:ring-warning-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-warning)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-warning)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "danger" in @color do %>
defp color_variant("shadow", "danger") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-danger-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-danger-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-danger-light dark:focus-within:[&_.select-field]:ring-danger-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-danger)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-danger)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "info" in @color do %>
defp color_variant("shadow", "info") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-info-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-info-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-info-light dark:focus-within:[&_.select-field]:ring-info-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-info)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-info)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "misc" in @color do %>
defp color_variant("shadow", "misc") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-misc-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-misc-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-misc-light dark:focus-within:[&_.select-field]:ring-misc-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-misc)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-misc)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "dawn" in @color do %>
defp color_variant("shadow", "dawn") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-dawn-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-dawn-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-dawn-light dark:focus-within:[&_.select-field]:ring-dawn-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-dawn)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-dawn)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<%= if is_nil(@color) or "silver" in @color do %>
defp color_variant("shadow", "silver") do
[
"text-black dark:text-white [&_.select-field:not(:has(.select-field-error))]:bg-silver-light",
"dark:[&_.select-field:not(:has(.select-field-error))]:bg-silver-dark",
"[&_.select-field.select-field-error]:bg-rose-700",
"[&_.select-field]:text-white dark:[&_.select-field]:text-black",
"focus-within:[&_.select-field]:ring-silver-light dark:focus-within:[&_.select-field]:ring-silver-dark",
"[&_.select-field]:shadow-[0px_4px_6px_-4px_var(--color-shadow-silver)] [&_.select-field]:shadow-[0px_10px_15px_-3px_var(--color-shadow-silver)]",
"dark:[&_.select-field]:shadow-none",
]
end
<% end %>
<% end %>
defp color_variant(params, _) when is_binary(params), do: params
defp translate_error({msg, opts}) do
# When using gettext, we typically pass the strings we want
# to translate as a static argument:
#
# # Translate the number of files with plural rules
# dngettext("errors", "1 file", "%{count} files", count)
#
# However the error messages in our forms and APIs are generated
# dynamically, so we need to translate them by calling Gettext
# with our gettext backend as first argument. Translations are
# available in the errors.po file (as we use the "errors" domain).
if count = opts[:count] do
Gettext.dngettext(<%= inspect(@web_module) %>.Gettext, "errors", msg, msg, count, opts)
else
Gettext.dgettext(<%= inspect(@web_module) %>.Gettext, "errors", msg, opts)
end
end
end