View Source LiveSelect (LiveSelect v1.0.4)

The LiveSelect component is rendered by calling the live_select/1 function and passing it a form and the name of a field. LiveSelect creates a text input field in which the user can type text, and hidden input field(s) that will contain the value of the selected option(s).

Whenever the user types something in the text input, LiveSelect triggers a live_select_change event for your LiveView or LiveComponent. The message has a text parameter containing the current text entered by the user, as well as id and field parameters with the id of the LiveSelect component and the name of the LiveSelect form field, respectively. Your job is to handle the event, retrieve the list of selectable options and then call Phoenix.LiveView.send_update/3 to send the list of options to LiveSelect. See the "Examples" section below for details, and check out the cheatsheet for some useful tips.

Selection can happen either using the keyboard, by navigating the options with the arrow keys and then pressing enter, or by clicking an option with the mouse.

Whenever an option is selected, LiveSelect will trigger a standard phx-change event in the form. See the "Examples" section below for details on how to handle the event.

In single mode, if the configuration option allow_clear is set, the user can manually clear the selection by clicking on the x button on the input field. In tags mode, single tags can be removed by clicking on them.

single-mode

Single mode

demo

tags-mode

Tags mode

demo

When :tags mode is enabled LiveSelect allows the user to select multiple entries. The entries will be visible above the text input field as removable tags.

The selected entries will be passed to your live view's change and submit event handlers as a list of entries, just like an HTML <select> element with multiple attribute would do.

options

Options

You can pass or update the list of options the user can choose from with the options assign. Each option will be assigned a label, which will be shown in the dropdown, and a value, which will be the value of the LiveSelect input when the option is selected.

options can be any enumeration of the following elements:

  • atoms, strings or numbers: In this case, each element will be both label and value for the option
  • tuples: {label, value} corresponding to label and value for the option
  • maps: %{label: label, value: value} or %{value: value}
  • keywords: [label: label, value: value] or [value: value]

In the case of maps and keywords, if only value is specified, it will be used as both value and label for the option.

Because you can pass a list of tuples, you can use maps and keyword lists to pass the list of options, for example:

%{Red: 1, Yellow: 2, Green: 3}

Will result in 3 options with labels :Red, :Yellow, :Green and values 1, 2, and 3.

Note that the option values, if they are not strings, will be JSON-encoded. Your LiveView will receive this JSON-encoded version in the phx-change and phx-submit events.

styling

Styling

LiveSelect supports 3 styling modes:

  • tailwind: uses standard tailwind utility classes (the default)
  • daisyui: uses daisyUI classes.
  • none: no styling at all.

Please see the styling section for details

alternative-tag-labels

Alternative tag labels

Sometimes, in :tags mode, you might want to use alternative labels for the tags. For example, you might want the labels in the tags to be shorter in order to save space. You can do this by specifying an additional tag_label key when passing options as map or keywords. For example, passing these options:

[%{label: "New York", tag_label: "NY"}, %{label: "Barcelona", tag_label: "BCN"}]  

will result in "New York" and "Barcelona" being used for the options in the dropdown, while "NY" and "BCN" will be used for the tags.

slots

Slots

You can have complete control on how your options and tags are rendered by using the :option and :tag slots. Let's say you want to show some fancy icons next to each option in the dropdown and the tags:

<.live_select
        form={@form}
        field={:city_search}
        phx-target={@myself}
        mode={:tags}
      >
        <:option :let={option}>
          <div class="flex">
            <.globe />&nbsp;<%= option.label %>
          </div>
        </:option>
        <:tag :let={option}>
            <.check />&nbsp;<%= option.label %>
        </:tag>
</.live_select>

Here's the result:

slots

controlling-the-selection-programmatically

Controlling the selection programmatically

You can always control the selection programmatically, overriding the current user-selected values, by sending a :value update to LiveSelect via Phoenix.LiveView.send_update/3:

send_update(LiveSelect.Component, id: live_select_id, value: new_selection)

new_selection must be a single element in :single mode, a list in :tags mode. If it's nil, the selection will be cleared.
After updating the selection, LiveSelect will trigger a change event in the form.

To set a custom id for the component to use with Phoenix.LiveView.send_update/3, you can pass the id assign to live_select/1.

examples

Examples

These examples describe all the moving parts in detail. You can see these examples in action, see which messages and events are being sent, and play around with the configuration easily with the showcase app.

single-mode-1

Single mode

The user can search for cities. The LiveSelect main form input is called city_search. When a city is selected, the coordinates of that city will be the value of the form input. The name of the selected city is available in the text input field named city_search_text_input.

Template:

<.form for={@changeset} :let={f} phx-change="change">
  <.live_select form={f} field={:city_search} /> 
</.form>

Forms implemented in LiveComponents

If your form is implemented in a LiveComponent and not in a LiveView, you might have to add the phx-target attribute when rendering LiveSelect:

 <.live_select form={f} field={:city_search} phx-target={@myself} />

We say "might" because LiveSelect will look for the target in the form's options if none has been explicitly passed with the phx-target attribute. By passing phx-target explicitly however, you're always on the safe side.

LiveView or LiveComponent that is the target of the form's events:

import LiveSelect

@impl true
def handle_event("live_select_change", %{"text" => text, "id" => live_select_id}, socket) do 
    cities = City.search(text)
    # cities could be:
    # [ {"city name 1", [lat_1, long_1]}, {"city name 2", [lat_2, long_2]}, ... ]
    #
    # but it could also be (no coordinates in this case):
    # [ "city name 1", "city name 2", ... ]
    #
    # or:
    # [ [label: "city name 1", value: [lat_1, long_1]], [label: "city name 2", value: [lat_2, long_2]], ... ] 
    #
    # or even:
    # ["city name 1": [lat_1, long_1], "city name 2": [lat_2, long_2]]

    send_update(LiveSelect.Component, id: live_select_id, options: cities)
  
    {:noreply, socket}
end

@impl true
def handle_event(
    "change",
    %{"my_form" => %{"city_search_text_input" => city_name, "city_search" => city_coords}},
    socket
  ) do
    IO.puts("You selected city #{city_name} located at: #{city_coords}")

    {:noreply, socket}
end  

tags-mode-1

Tags mode

Let's say you want to build on the previous example and allow the user to select multiple cities and not only one. The :tags mode allows you to do exactly this.

Template:

<.form for={:my_form} :let={f} phx-change="change">
  <.live_select form={f} field={:city_search} mode={:tags} /> 
</.form>

LiveView or LiveComponent that is the target of the form's events:

@impl true
def handle_event(
    "change",
    %{"my_form" => %{"city_search" => list_of_coords}},
    socket
  ) do
  # list_of_coords will contain the list of the JSON-encoded coordinates of the selected cities, for example:
  # ["[-46.565,-23.69389]", "[-48.27722,-18.91861]"]    

  IO.puts("You selected cities located at: #{list_of_coords}")

  {:noreply, socket}
end  

multiple-liveselect-inputs-in-the-same-liveview

Multiple LiveSelect inputs in the same LiveView

If you have multiple LiveSelect inputs in the same LiveView, you can distinguish them based on the field or id. For example:

Template:

<.form for={:my_form} :let={f} phx-change="change">
  <.live_select form={f} field={:city_search} />
  <.live_select form={f} field={:album_search} />
</.form>

LiveView or LiveComponent:

@impl true
def handle_event("live_select_change", %{"text" => text, "id" => live_select_id, "field" => live_select_field}, socket) do
  options =
    case live_select_field do
      :city_search -> City.search(text)
      :album_search -> Album.search(text)
    end

  send_update(LiveSelect.Component, id: live_select_id, options: options)

  {:noreply, socket}
end

Link to this section Summary

Components

Renders a LiveSelect input in a form.

Link to this section Components

Renders a LiveSelect input in a form.

attributes

Attributes

  • form (:any) (required) - the form.

  • field (:atom) (required) - the form field.

  • id (:string) - an id to assign to the component. If none is provided, #{form_name}_#{field}_live_select_component will be used.

  • mode (:atom) - either :single (for single selection), or :tags (for multiple selection using tags). Defaults to :single.

  • options (:list) - initial available options to select from. See the "Options" section for details on what you can pass here.

  • value (:any) - used to manually set a selection - overrides any values from the form. Must be a single element in :single mode, or a list of elements in :tags mode.

  • max_selectable (:integer) - limits the maximum number of selectable elements. 0 means unlimited. Defaults to 0.

  • user_defined_options (:boolean) - if true, hitting enter will always add the text entered by the user to the selection. Defaults to false.

  • allow_clear (:boolean) - if true, when in single mode, display a "x" button in the input field to clear the selection.

  • disabled (:boolean) - set this to true to disable the input field.

  • placeholder (:string) - placeholder text for the input field.

  • debounce (:integer) - number of milliseconds to wait after the last keystroke before triggering a "live_select_change" event. Defaults to 100.

  • update_min_len (:integer) - the minimum length of text in the text input field that will trigger an update of the dropdown. Defaults to 1.

  • style (:atom) - one of :tailwind, :daisyui or :none. See the Styling section for details. Defaults to :tailwind.

  • phx-target (:any) - Optional target for change events. Usually the same target as the form.

slots

Slots

  • option - optional slot that renders an option in the dropdown. The option's data is available via :let.
  • tag - optional slot that renders a tag. The option's data is available via :let.

styling-attributes

Styling attributes