File size: 13,571 Bytes
88211d3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | defmodule PlausibleWeb.Live.Components.ComboBox do
@moduledoc """
Phoenix LiveComponent for a combobox UI element with search and selection
functionality.
The component allows users to select an option from a list of options,
which can be searched by typing in the input field.
The component renders an input field with a dropdown anchor and a
hidden input field for submitting the selected value. In order to remain
functional, the component must be embedded in a `<form/>`.
The number of options displayed in the dropdown is limited to 15
by default but can be customized. When a user types into the input
field, the component searches the available options and provides
suggestions based on the input.
Any function can be supplied via `suggest_fun` attribute
- see the provided `ComboBox.StaticSearch`.
In most cases the `suggest_fun` runs an operation that could be deferred,
so by default, the `async={true}` attr calls it in a background Task
and updates the suggestions asynchronously. This way, you can render
the component without having to wait for suggestions to load.
If you explicitly need to make the operation synchronous, you may
pass `async={false}` option.
If your initial `options` are not provided up-front at initial render,
lack of `options` attr value combined with `async=true` calls the
`suggest_fun.("", [])` asynchronously - that special clause can be used
to provide the initial set of suggestions updated right after the initial render.
To simplify integration testing, suggestions load up synchronously during
tests. This lets you skip waiting for suggestions messages
to arrive. The asynchronous behaviour alone is already tested in
ComboBox own test suite, so there is no need for additional
verification.
"""
use PlausibleWeb, :live_component
@default_suggestions_limit 15
def update(assigns, socket) do
socket =
socket
|> assign(assigns)
|> select_default()
socket =
if connected?(socket) do
socket
|> assign_options()
else
socket
end
|> assign_suggestions(assigns)
{:ok, socket}
end
attr(:placeholder, :string, default: "Select option or search by typing")
attr(:id, :any, required: true)
attr(:options, :list, default: [])
attr(:submit_name, :string, required: true)
attr(:display_value, :string, default: "")
attr(:submit_value, :string, default: "")
attr(:selected, :any)
attr(:suggest_fun, :any, required: true)
attr(:suggestions_limit, :integer)
attr(:class, :string, default: "")
attr(:input_class, :string, default: "")
attr(:dropdown_class, :string, default: "")
attr(:required, :boolean, default: false)
attr(:creatable, :boolean, default: false)
attr(:errors, :list, default: [])
attr(:async, :boolean, default: Mix.env() != :test)
attr(:on_selection_made, :any)
def render(assigns) do
~H"""
<div
id={"input-picker-main-#{@id}"}
class={@class}
x-data={"comboBox('#{@id}')"}
x-on:keydown.arrow-up.prevent="focusPrev"
x-on:keydown.arrow-down.prevent="focusNext"
x-on:keydown.enter.prevent="select"
x-on:keydown.tab="close"
x-on:keydown.escape="close"
>
<div class="relative w-full">
<div
@click.away="close"
class="pl-2 pr-8 py-1 w-full dark:bg-gray-750 dark:text-gray-300 rounded-md shadow-xs border border-gray-300 dark:border-gray-750 focus-within:outline-none focus-within:ring-3 focus-within:ring-indigo-500/20 dark:focus-within:ring-indigo-500/25 focus-within:border-indigo-500"
>
<input
type="text"
autocomplete="off"
id={@id}
name={"display-#{@id}"}
placeholder={@placeholder}
x-on:focus="open"
x-on:selection-change={assigns[:"x-on-selection-change"]}
phx-change="search"
x-on:keydown="open"
phx-target={@myself}
phx-debounce={200}
value={@display_value}
class={[
"text-sm [&.phx-change-loading+svg.spinner]:block border-none py-1.5 px-1.5 w-full inline-block rounded-md focus:outline-hidden focus:ring-0",
@input_class
]}
style="background-color: inherit;"
required={@required}
/>
<.spinner class="spinner hidden absolute inset-y-3 right-8" />
<.spinner
id={"selection-in-progress-#{@id}"}
phx-update="ignore"
x-show="selectionInProgress"
class="spinner absolute inset-y-3 right-8"
/>
<.dropdown_anchor id={@id} />
<input
type="hidden"
x-init={"trackSubmitValueChange('#{Phoenix.HTML.javascript_escape(to_string(@submit_value))}')"}
name={@submit_name}
value={@submit_value}
phx-target={@myself}
id={"submit-#{@id}"}
/>
</div>
<.combo_dropdown
ref={@id}
suggest_fun={@suggest_fun}
suggestions={@suggestions}
target={@myself}
creatable={@creatable}
display_value={@display_value}
dropdown_class={@dropdown_class}
/>
</div>
</div>
"""
end
attr(:id, :any, required: true)
def dropdown_anchor(assigns) do
~H"""
<div x-on:click="open" class="cursor-pointer absolute inset-y-0 right-0 flex items-center pr-2">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
class="h-4 w-4 text-gray-500"
>
<path
fill-rule="evenodd"
d="M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z"
clip-rule="evenodd"
>
</path>
</svg>
</div>
"""
end
attr(:ref, :string, required: true)
attr(:suggestions, :list, default: [])
attr(:suggest_fun, :any, required: true)
attr(:target, :any)
attr(:creatable, :boolean, required: true)
attr(:display_value, :string, required: true)
attr(:dropdown_class, :string, default: "")
def combo_dropdown(assigns) do
~H"""
<ul
tabindex="-1"
id={"dropdown-#{@ref}"}
x-show="isOpen"
x-ref="suggestions"
class={[
"text-sm w-full dropdown z-50 absolute mt-1 max-h-60 overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1/5 ring-black focus:outline-hidden dark:bg-gray-800",
@dropdown_class
]}
style="display: none;"
>
<.option
:if={display_creatable_option?(assigns)}
idx={0}
submit_value={@display_value}
display_value={@display_value}
target={@target}
ref={@ref}
creatable
/>
<.option
:for={
{{submit_value, display_value}, idx} <-
Enum.with_index(
@suggestions,
fn {option_value, option}, idx -> {{option_value, to_string(option)}, idx + 1} end
)
}
:if={@suggestions != []}
idx={idx}
submit_value={submit_value}
display_value={display_value}
target={@target}
ref={@ref}
/>
<div
:if={@suggestions == [] && !@creatable}
class="relative cursor-default select-none py-2 px-4 text-gray-700 dark:text-gray-300"
>
No matches found. Try searching for something different.
</div>
<div
:if={@suggestions == [] && @creatable && String.trim(@display_value) == ""}
class="relative cursor-default select-none py-2 px-4 text-gray-700 dark:text-gray-300"
>
Create an item by typing.
</div>
</ul>
"""
end
attr(:display_value, :string, required: true)
attr(:submit_value, :string, required: true)
attr(:ref, :string, required: true)
attr(:target, :any)
attr(:idx, :integer, required: true)
attr(:creatable, :boolean, default: false)
def option(assigns) do
assigns = assign(assigns, :suggestions_limit, suggestions_limit(assigns))
~H"""
<li
class={[
"relative select-none cursor-pointer dark:text-gray-300",
@creatable && "creatable"
]}
@mouseenter={"setFocus(#{@idx})"}
x-bind:class={ "{'bg-gray-100 dark:bg-gray-700': focus === #{@idx}}" }
id={"dropdown-#{@ref}-option-#{@idx}"}
>
<a
x-ref={"dropdown-#{@ref}-option-#{@idx}"}
x-on:click={not @creatable && "selectionInProgress = true"}
x-on:mouseenter="const isTruncated = $el.scrollWidth > $el.clientWidth; $el.title = isTruncated ? $el.dataset.displayValue : ''"
phx-click={select_option(@ref, @submit_value, @display_value)}
phx-value-submit-value={@submit_value}
phx-value-display-value={@display_value}
phx-target={@target}
class="block truncate py-2 px-3"
data-display-value={@display_value}
>
<%= if @creatable do %>
Create "{@display_value}"
<% else %>
{@display_value}
<% end %>
</a>
</li>
<li :if={@idx == @suggestions_limit} class="text-gray-500 relative py-2 px-3">
Max results reached, type to refine search.
</li>
"""
end
def select_option(js \\ %JS{}, id, submit_value, display_value) do
js
|> JS.dispatch("phx:notify-selection-change",
detail: %{
id: id,
value: %{"submitValue" => submit_value, "displayValue" => display_value}
}
)
|> JS.push("select-option",
value: %{"submit-value" => submit_value, "display-value" => display_value}
)
end
def handle_event(
"select-option",
%{"submit-value" => submit_value, "display-value" => display_value},
socket
) do
socket = do_select(socket, submit_value, display_value)
{:noreply, socket}
end
def handle_event(
"search",
%{"_target" => [target]} = params,
%{assigns: %{options: options}} = socket
) do
input = params[target]
input_len = input |> String.trim() |> String.length()
socket =
if socket.assigns[:creatable] do
assign(socket, display_value: input, submit_value: input)
else
socket
end
suggestions =
if input_len > 0 do
run_suggest_fun(input, options, socket.assigns, :suggestions)
else
options
end
|> Enum.take(suggestions_limit(socket.assigns))
{:noreply, assign(socket, %{suggestions: suggestions, searching?: input_len > 0})}
end
defp do_select(socket, submit_value, display_value) do
id = socket.assigns.id
socket =
socket
|> push_event("update-value", %{id: id, value: display_value, fire: false})
|> push_event("update-value", %{id: "submit-#{id}", value: submit_value, fire: true})
|> assign(:display_value, display_value)
|> assign(:submit_value, submit_value)
if socket.assigns[:on_selection_made] do
socket.assigns.on_selection_made.(submit_value, id)
end
socket
end
defp suggestions_limit(assigns) do
Map.get(assigns, :suggestions_limit, @default_suggestions_limit)
end
defp display_creatable_option?(assigns) do
empty_input? = String.length(assigns.display_value) == 0
input_matches_suggestion? =
Enum.any?(assigns.suggestions, fn {suggestion, _} -> assigns.display_value == suggestion end)
assigns.creatable && not empty_input? && not input_matches_suggestion?
end
defp assign_options(socket) do
assign_new(socket, :options, fn ->
run_suggest_fun("", [], socket.assigns, :options)
end)
end
defp assign_suggestions(socket, %{suggestions: _}), do: socket
# A background suggest_fun task delivered a result for a different key
# (namely, the initial options prefetch) - since the user has already
# searched, this stale result must not clobber the up-to-date suggestions.
defp assign_suggestions(%{assigns: %{searching?: true}} = socket, %{async_result?: true}),
do: socket
defp assign_suggestions(socket, _assigns), do: fill_suggestions_from_options(socket)
defp fill_suggestions_from_options(socket) do
suggestions =
socket.assigns
|> Map.get(:options, [])
|> Enum.take(suggestions_limit(socket.assigns))
assign(socket, suggestions: suggestions)
end
defp select_default(socket) do
case {socket.assigns[:selected], socket.assigns[:submit_value]} do
{{submit_value, display_value}, nil} ->
assign(socket, submit_value: submit_value, display_value: display_value)
{submit_and_display_value, nil} when is_binary(submit_and_display_value) ->
assign(socket,
submit_value: submit_and_display_value,
display_value: submit_and_display_value
)
_ ->
socket
end
end
defp run_suggest_fun(input, options, %{id: id, suggest_fun: fun} = assigns, key_to_update) do
if assigns[:async] do
pid = self()
Task.start(fn ->
result = fun.(input, options)
send_update(
pid,
__MODULE__,
Keyword.new([
{:id, id},
{key_to_update, result},
{:async_result?, true}
])
)
end)
# This prevents flashing the suggestions container
# before the update is received on a subsequent render
assigns[key_to_update] || []
else
fun.(input, options)
end
end
end
|