Combobox (Multiselect)
Pass an array to the selected
property of createCombobox
to trigger multi-select mode
Example
<script lang="ts">
import { createCombobox } from 'svelte-headlessui'
import Transition from 'svelte-transition'
import Selector from '$icons/Selector.svelte'
import Check from '$icons/Check.svelte'
import Deselect from '$icons/Deselect.svelte'
// prettier-ignore
const people = [
{ id: 1, name: 'Wade Cooper' },
{ id: 2, name: 'Arlene Mccoy' },
{ id: 3, name: 'Devon Webb' },
{ id: 4, name: 'Tom Cook' },
{ id: 5, name: 'Tanya Fox' },
{ id: 6, name: 'Hellen Schmidt' },
{ id: 7, name: 'Caroline Schultz' },
{ id: 8, name: 'Mason Heaney' },
{ id: 9, name: 'Claudie Smitham' },
{ id: 10, name: 'Emil Schaefer' },
]
const combobox = createCombobox({ label: 'People', selected: [people[2], people[3]] })
function onChange(e: Event) {
console.log('select', (e as CustomEvent).detail)
}
$: filtered = people.filter((person) =>
person.name
.toLowerCase()
.replace(/\s+/g, '')
.includes($combobox.filter.toLowerCase().replace(/\s+/g, '')),
)
</script>
<div class="fixed top-8 w-full max-w-4xl px-4">
<div class="relative mt-1">
<span class="inline-block w-full rounded-md shadow-sm">
<button
use:combobox.button
on:change={onChange}
class="focus:shadow-outline-teal relative w-full cursor-default rounded-md border border-gray-300 bg-white py-2 pl-2 pr-10 text-left text-sm transition duration-150 ease-in-out focus:border-teal-300 focus:outline-none sm:leading-5"
>
<div class="flex flex-wrap gap-2">
{#each $combobox.selected as selected (selected.id)}
<span class="flex items-center gap-1 rounded bg-blue-50 px-2 py-0.5">
<span>{selected.name}</span>
<div use:combobox.deselect={selected}>
<Deselect />
</div>
</span>
{:else}
<span class="flex items-center gap-1 rounded px-2 py-0.5"> Empty </span>
{/each}
<input
use:combobox.input
on:change={onChange}
placeholder="Search…"
class="w-auto border-none py-1 text-sm leading-5 text-gray-900 focus:ring-0"
/>
</div>
<span class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
<Selector class="h-5 w-5 text-gray-400" />
</span>
</button>
</span>
<Transition
show={$combobox.expanded}
leave="transition ease-in duration-100"
leaveFrom="opacity-100"
leaveTo="opacity-0"
>
<ul
use:combobox.items
class="absolute mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-sm shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none"
>
{#each filtered as value}
{@const active = $combobox.active === value}
{@const selected = $combobox.selected.includes(value)}
<li
class="relative cursor-default select-none py-2 pl-4 pr-9 focus:outline-none {active
? 'bg-teal-600 text-white'
: 'text-gray-900'}"
use:combobox.item={{ value }}
>
<span class="block truncate {selected ? 'font-semibold' : 'font-normal'}"
>{value.name}</span
>
{#if selected}
<span
class="absolute inset-y-0 right-0 flex items-center pr-3 {active
? 'text-white'
: 'text-teal-600'}"
>
<Check class="h-5 w-5" />
</span>
{/if}
</li>
{:else}
<li class="relative cursor-default select-none py-2 pl-10 pr-4 text-gray-900">
<span class="block truncate font-normal">Nothing found</span>
</li>
{/each}
</ul>
</Transition>
</div>
</div>