Files
keystone/resources/js/components/ServerSelector.vue

78 lines
3.1 KiB
Vue

<script setup>
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog';
import { Deferred, router } from '@inertiajs/vue3';
import { LoaderCircleIcon } from 'lucide-vue-next';
import { ref, watch } from 'vue';
import { Card } from './ui/card';
import ServiceCategory from '@/enums/ServiceCategory';
const props = defineProps({
servers: {
type: Array,
required: false,
},
serviceCategory: {
type: String,
required: false,
validate: (value) => {
return Object.keys(ServiceCategory).includes(value);
}
}
});
const isOpen = ref(false);
defineEmits(['select']);
watch(isOpen, () => {
if (isOpen.value && props.servers === undefined) {
router.reload({
only: ['servers'],
async: true,
});
}
});
</script>
<template>
<Dialog v-model:open="isOpen">
<DialogTrigger class="block w-full">
<slot name="trigger" />
</DialogTrigger>
<DialogContent>
<DialogHeader>
<DialogTitle>Servers</DialogTitle>
<DialogDescription>Select an active server to install the gateway on.</DialogDescription>
<div class="my-2 max-h-80 overflow-y-auto">
<Deferred data="servers">
<template #fallback>
<div class="flex justify-center py-4">
<LoaderCircleIcon class="size-6 animate-spin text-muted-foreground" />
</div>
</template>
<Card
v-for="(server, serverIndex) in servers"
:key="`serverPicker-${server.id}`"
:data-index="serverIndex"
class="group flex gap-4 p-2 justify-between text-muted-foreground hover:text-foreground transition"
:class="{
'rounded-b-none': serverIndex !== servers.length - 1,
'rounded-t-none': serverIndex !== 0,
'border-b-0': serverIndex !== servers.length - 1,
}"
@click="
$emit('select', server);
isOpen = false;
"
>
<div class="cursor-default text-sm">{{ server.name }}</div>
<div v-if="serviceCategory" class="text-xs">{{ !!server.services.filter((s) => s.category === serviceCategory).length ? 'Has Gateway' : 'No Gateway Installed' }}</div>
</Card>
<Card v-if="servers.length === 0" class="p-2 text-sm text-muted-foreground"> No servers available </Card>
</Deferred>
</div>
</DialogHeader>
<!-- <DialogFooter> Dismiss </DialogFooter> -->
</DialogContent>
</Dialog>
</template>