eshans
Hi all - am pretty new to this whole ecosystem. Was tasked with trying to build an autocomplete search dropdown similar to this
Autocomplete component — Vuetify - it should be resusable across different parts of the site - it will basically entail two parts: a regular input for typing into, and a panel underneath it for rendering the options and selection behavior
Here’s my code. Having a tough time figuring out where to start but wanted to just do it with dummy data and not any server side datalists yet. Thanks in advance for any guidance if anyone can offer. Is this all feasible without JS?
is where is starts.
defmodule LevelWeb.UI.AutocompleteDropdown do
@moduledoc false
use LevelWeb, :live_component
@variants %{
default: %{
select_container: "px-[1rem] py-[0.5rem] border border-[#D0D5DD] rounded-full bg-white",
placeholder_text: "text-base font-normal",
icon: "fa-caret-down text-base"
},
primary: %{
select_container: "pl-[1.5rem] py-[0.625rem] pr-[1.25rem] border border-[#D0D5DD] rounded-lg bg-white",
placeholder_text: "text-sm font-medium",
icon: "fa-chevron-down text-[0.625rem]"
},
primary_rounded: %{
select_container: "pl-[1.5rem] py-[0.625rem] pr-[1.25rem] border border-[#D0D5DD] rounded-full bg-white",
placeholder_text: "text-sm font-medium",
icon: "fa-chevron-down text-[0.625rem]"
}
}
@dynamic_styles %{
select_container: "border-blue"
}
@impl Phoenix.LiveComponent
def mount(socket) do
socket =
socket
|> assign_new(:menu_open?, fn -> false end)
|> assign_new(:placeholder_text, fn -> "Choose Major(s)" end)
|> assign_new(:variant, fn -> :default end)
|> assign_new(:chip_variant, fn -> :primary end)
{:ok, socket}
end
@impl Phoenix.LiveComponent
def render(assigns) do
assigns =
assigns
|> assign_new(:target, fn -> assigns.id end)
|> assign_new(:key, fn -> nil end)
|> assign_new(:render_chips?, fn -> true end)
~H"""
<div class="autocomplete-parent">
<div class="relative">
<input id={"#{@id}-search-input"} class="relative w-full appearance-none border border-gray-detailBorder rounded-xl bg-transparent py-0.5 pr-1 text-sm placeholder:text-[#666] focus:outline-none lg:w-[36rem]" type="text" list="matches" placeholder="Search.." />
<datalist id="matches">
<option>test1</option>
<option>test2</option>
<option>test3</option>
</datalist>
</div>
</div>
"""
end
@impl Phoenix.LiveComponent
def handle_event("toggle_menu", _, socket) do
socket = assign(socket, :menu_open?, !socket.assigns.menu_open?)
{:noreply, socket}
end
@impl Phoenix.LiveComponent
def handle_event("close_menu", _, socket) do
socket = assign(socket, :menu_open?, false)
{:noreply, socket}
end
@spec is_selected?(map(), list(map())) :: boolean()
defp is_selected?(item, selected_items) do
Enum.find(selected_items, fn i -> i.value == item.value end) != nil
end
end
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
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
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Joep
You could check out: LiveSelect v1.7.5 — Documentation
ghenry
Have a read of and adapt Typeahead with LiveView and Tailwind · FullstackPhoenix
eshans
Thanks a lot!
eshans
appreciate it, thanks!