mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-02-04 00:31: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>
101 lines
3.2 KiB
Vue
101 lines
3.2 KiB
Vue
<template>
|
|
<Listbox v-model="typedModel" as="div">
|
|
<ListboxLabel class="block text-sm font-medium leading-6 text-zinc-100"
|
|
><slot
|
|
/></ListboxLabel>
|
|
<div class="relative mt-2">
|
|
<ListboxButton
|
|
class="relative w-full cursor-default rounded-md bg-zinc-950 py-1.5 pl-3 pr-10 text-left text-zinc-100 shadow-sm ring-1 ring-inset ring-zinc-800 focus:outline-none focus:ring-2 focus:ring-blue-500 sm:text-sm sm:leading-6"
|
|
>
|
|
<span v-if="model" class="flex items-center">
|
|
<component
|
|
:is="PLATFORM_ICONS[model]"
|
|
alt=""
|
|
class="h-5 w-5 flex-shrink-0 text-blue-600"
|
|
/>
|
|
<span class="ml-3 block truncate">{{ model }}</span>
|
|
</span>
|
|
<span v-else>{{ $t("library.admin.import.selectPlatform") }}</span>
|
|
<span
|
|
class="pointer-events-none absolute inset-y-0 right-0 ml-3 flex items-center pr-2"
|
|
>
|
|
<ChevronUpDownIcon class="h-5 w-5 text-gray-400" aria-hidden="true" />
|
|
</span>
|
|
</ListboxButton>
|
|
|
|
<transition
|
|
leave-active-class="transition ease-in duration-100"
|
|
leave-from-class="opacity-100"
|
|
leave-to-class="opacity-0"
|
|
>
|
|
<ListboxOptions
|
|
class="absolute z-10 mt-1 max-h-56 w-full overflow-auto rounded-md bg-zinc-900 py-1 text-base shadow-lg ring-1 ring-zinc-950 ring-opacity-5 focus:outline-none sm:text-sm"
|
|
>
|
|
<ListboxOption
|
|
v-for="[name, value] in values"
|
|
:key="value"
|
|
v-slot="{ active, selected }"
|
|
as="template"
|
|
:value="value"
|
|
>
|
|
<li
|
|
:class="[
|
|
active ? 'bg-blue-600 text-white' : 'text-zinc-100',
|
|
'relative cursor-default select-none py-2 pl-3 pr-9',
|
|
]"
|
|
>
|
|
<div class="flex items-center">
|
|
<component
|
|
:is="PLATFORM_ICONS[value]"
|
|
alt=""
|
|
:class="[
|
|
active ? 'text-zinc-100' : 'text-blue-600',
|
|
'h-5 w-5 flex-shrink-0',
|
|
]"
|
|
/>
|
|
<span class="ml-3 block truncate">{{ name }}</span>
|
|
</div>
|
|
|
|
<span
|
|
v-if="selected"
|
|
:class="[
|
|
active ? 'text-white' : 'text-blue-600',
|
|
'absolute inset-y-0 right-0 flex items-center pr-4',
|
|
]"
|
|
>
|
|
<CheckIcon class="h-5 w-5" aria-hidden="true" />
|
|
</span>
|
|
</li>
|
|
</ListboxOption>
|
|
</ListboxOptions>
|
|
</transition>
|
|
</div>
|
|
</Listbox>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {
|
|
Listbox,
|
|
ListboxButton,
|
|
ListboxLabel,
|
|
ListboxOption,
|
|
ListboxOptions,
|
|
} from "@headlessui/vue";
|
|
import { CheckIcon, ChevronUpDownIcon } from "@heroicons/vue/20/solid";
|
|
import { Platform } from "~/prisma/client/enums";
|
|
|
|
const model = defineModel<Platform | undefined>();
|
|
|
|
const typedModel = computed<Platform | null>({
|
|
get() {
|
|
return model.value || null;
|
|
},
|
|
set(v) {
|
|
if (v === null) return (model.value = undefined);
|
|
model.value = v;
|
|
},
|
|
});
|
|
|
|
const values = Object.entries(Platform);
|
|
</script>
|