solop
Hi,
i would like to share the following component that you can use in your phoenix forms to provide a input field with a customizable source of suggestions. Could be used as a tagging component etc.
defmodule MyProjectWeb.Components.SelectComponent do
use MyProjectWeb, :live_component
def render(assigns) do
~H"""
<div class="flex flex-row items-baseline gap-4 break-inside-avoid" phx-target={@myself}>
<.label><%= @label %></.label>
<div class="w-full">
<div class="flex flex-wrap items-center gap-1">
<.inputs_for :let={f} field={@form[@field_name]}>
<.tag_badge color={@color_function.(f[:type].value)}>
<%= f[:name].value %>
<:actions>
<button
type="button"
phx-click="autocomplete_remove"
phx-target={@myself}
phx-value-index={f.index}
class="hover:text-red-500 pl-1"
>
×
</button>
</:actions>
</.tag_badge>
<.input field={f[:id]} type="hidden" />
<.input field={f[:name]} type="hidden" />
<input type="hidden" name={"case[#{@field_name}_sort][]"} value={f.index} />
</.inputs_for>
</div>
<.input
field={@form[:"new_#{@field_name}"]}
type="text"
placeholder={@placeholder}
phx-keydown="autocomplete_key"
onkeydown="return (event.keyCode!=13);"
phx-target={@myself}
/>
<input type="hidden" name={"case[#{@field_name}_drop][]"} />
<div>
<%= for {suggestion, index} <- Enum.with_index(@suggestions) do %>
<div
class={"suggestion #{if index == @selected_index, do: "bg-indigo-200"} rounded-sm p-1"}
phx-click="autocomplete_select"
phx-target={@myself}
phx-value-index={index}
>
<%= suggestion.name %>
</div>
<% end %>
</div>
</div>
</div>
"""
end
def mount(socket) do
{:ok, assign(socket, suggestions: [], selected_index: 0)}
end
def update(assigns, socket) do
{:ok, assign(socket, assigns)}
end
def handle_event("autocomplete_key", %{"key" => key, "value" => value}, socket) do
case key do
"ArrowDown" ->
{:noreply, update_selected_index(socket, 1)}
"ArrowUp" ->
{:noreply, update_selected_index(socket, -1)}
"Enter" ->
selected = get_from_suggestions(socket, socket.assigns.selected_index) || %{name: value}
{:noreply, socket.assigns.on_select.(socket, selected)}
_ ->
suggestions = socket.assigns.search_function.(value)
{:noreply, assign(socket, suggestions: suggestions, selected_index: 0)}
end
end
## In real life there seems to be always a value, but to make tests easier
## this def allows events without value
def handle_event("autocomplete_key", %{"key" => key}, socket) do
handle_event("autocomplete_key", %{"key" => key, "value" => ""}, socket)
end
def handle_event("autocomplete_remove", %{"index" => index}, socket) do
{:noreply, socket.assigns.on_remove.(socket, index)}
end
def handle_event("autocomplete_select", %{"index" => index}, socket) do
{int, _} = Integer.parse(index)
selected = get_from_suggestions(socket, int)
{:noreply, socket.assigns.on_select.(socket, selected)}
end
defp get_from_suggestions(socket, index) do
Enum.at(socket.assigns.suggestions, index)
end
defp update_selected_index(socket, direction) do
update(
socket,
:selected_index,
&rem(
&1 + direction + length(socket.assigns.suggestions),
length(socket.assigns.suggestions)
)
)
end
end
use it like this:
<.live_component
module={SelectComponent}
id={@id}
form={@form}
field_name="tags"
label="Tags"
placeholder="Enter a tag"
search_function={&search_suggestions/1}
color_function={&get_color_for_actor/1}
on_select={&handle_select/2}
on_remove={&handle_remove/2}
/>
You need to define these callback functions for it to work..
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
I’m posting this in response to Jose’s recent tweet (Cr. link) :
People are sleeping on Elixir for a coding harness:
Hot-code swappi...
New
Hello,
I wrote Stop My Hand, a Scattergories-like web application using Phoenix/LiveView as my learning project for Elixir (after readin...
New
AcmeScript — Writing JS hooks as if I were still using Elixir
I’ve been having fun building a little something over the last few days: Ac...
New
It would be helpful to have a list of companies worldwide that hire engineers without prior experience in Elixir. Often, it can be quite ...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming









