eshans

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

Showing Posts 1 to 4

Joep

Joep

eshans

eshans OP

Thanks a lot!

eshans

eshans OP

appreciate it, thanks!

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
RemyXRenard
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
velrest
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
samoloth
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
FlyingNoodle
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
Aludel - LLM Evaluation Workbench Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews