mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-02-04 08:41:17 +01:00
* feat: nginx + torrential basics & services system * fix: lint + i18n * fix: update torrential to remove openssl * feat: add torrential to Docker build * feat: move to self hosted runner * fix: move off self-hosted runner * fix: update nginx.conf * feat: torrential cache invalidation * fix: update torrential for cache invalidation * feat: integrity check task * fix: lint * feat: move to version ids * fix: client fixes and client-side checks * feat: new depot apis and version id fixes * feat: update torrential * feat: droplet bump and remove unsafe update functions * fix: lint * feat: v4 featureset: emulators, multi-launch commands * fix: lint * fix: mobile ui for game editor * feat: launch options * fix: lint * fix: remove axios, use $fetch * feat: metadata and task api improvements * feat: task actions * fix: slight styling issue * feat: fix style and lints * feat: totp backend routes * feat: oidc groups * fix: update drop-base * feat: creation of passkeys & totp * feat: totp signin * feat: webauthn mfa/signin * feat: launch selecting ui * fix: manually running tasks * feat: update add company game modal to use new SelectorGame * feat: executor selector * fix(docker): update rust to rust nightly for torrential build (#305) * feat: new version ui * feat: move package lookup to build time to allow for deno dev * fix: lint * feat: localisation cleanup * feat: apply localisation cleanup * feat: potential i18n refactor logic * feat: remove args from commands * fix: lint * fix: lockfile --------- Co-authored-by: Aden Lindsay <140392385+AdenMGB@users.noreply.github.com>
92 lines
2.6 KiB
Vue
92 lines
2.6 KiB
Vue
<template>
|
|
<Combobox
|
|
as="div"
|
|
nullable
|
|
:immediate="true"
|
|
:model-value="model"
|
|
class="bg-zinc-800 rounded"
|
|
@update:model-value="updateModelValue"
|
|
>
|
|
<div class="relative">
|
|
<ComboboxInput
|
|
:key="model?.id ?? 'off'"
|
|
class="block flex-1 border-0 py-1.5 pl-2 bg-transparent text-zinc-100 placeholder:text-zinc-400 focus:ring-0 sm:text-sm sm:leading-6"
|
|
placeholder="Start typing..."
|
|
:display-value="(v) => (v ? props.display(v as T) : '')"
|
|
@change="query = $event.target.value"
|
|
@blur="query = ''"
|
|
/>
|
|
<ComboboxButton
|
|
class="absolute inset-0 right-0 flex items-center justify-end rounded-r-md px-2 focus:outline-none"
|
|
>
|
|
<ChevronUpDownIcon class="size-5 text-gray-400" aria-hidden="true" />
|
|
</ComboboxButton>
|
|
|
|
<ComboboxOptions
|
|
class="absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-zinc-900 py-1 text-base shadow-lg ring-1 ring-white/5 focus:outline-none sm:text-sm"
|
|
>
|
|
<div
|
|
v-if="results.length == 0"
|
|
class="text-zinc-300 uppercase font-display font-bold text-center p-4"
|
|
>
|
|
No results.
|
|
</div>
|
|
<ComboboxOption
|
|
v-for="result in results"
|
|
v-else
|
|
:key="result.id"
|
|
v-slot="{ active, selected }"
|
|
:value="result"
|
|
as="template"
|
|
>
|
|
<li
|
|
:class="[
|
|
'relative cursor-default select-none py-2 pl-3 pr-9',
|
|
active ? 'bg-blue-600 text-white outline-none' : 'text-zinc-100',
|
|
]"
|
|
>
|
|
<span>
|
|
<slot :value="result" />
|
|
</span>
|
|
|
|
<span
|
|
v-if="selected"
|
|
:class="[
|
|
'absolute inset-y-0 right-0 flex items-center pr-4',
|
|
active ? 'text-white' : 'text-blue-600',
|
|
]"
|
|
>
|
|
<CheckIcon class="size-5" aria-hidden="true" />
|
|
</span>
|
|
</li>
|
|
</ComboboxOption>
|
|
</ComboboxOptions>
|
|
</div>
|
|
</Combobox>
|
|
</template>
|
|
|
|
<script setup lang="ts" generic="T extends { id: string }">
|
|
import {
|
|
Combobox,
|
|
ComboboxButton,
|
|
ComboboxInput,
|
|
ComboboxOption,
|
|
ComboboxOptions,
|
|
} from "@headlessui/vue";
|
|
import { CheckIcon, ChevronUpDownIcon } from "@heroicons/vue/24/outline";
|
|
|
|
const props = defineProps<{
|
|
search: (query: string) => T[];
|
|
display: (value: T) => string;
|
|
}>();
|
|
|
|
const model = defineModel<T | undefined>();
|
|
const query = ref("");
|
|
|
|
const results = computed(() => props.search(query.value));
|
|
|
|
function updateModelValue(v: T) {
|
|
model.value = v;
|
|
}
|
|
</script>
|