Files
Harry Bayliss 5b977c1f41
Some checks failed
CI / Lint (push) Failing after 22s
CI / Tests (push) Failing after 33s
wowowowowo
2026-05-28 15:15:41 +01:00

207 lines
6.5 KiB
Vue

<script setup lang="ts">
import InputError from "@/components/InputError.vue";
import RadioButton from "@/components/RadioButton.vue";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import ServiceCategory, {
DescriptionMap as serviceCategoryDescriptions,
} from "@/enums/ServiceCategory";
import AppLayout from "@/layouts/AppLayout.vue";
import { Head, useForm } from "@inertiajs/vue3";
import {
AppWindowIcon,
ArchiveIcon,
DatabaseIcon,
DatabaseZapIcon,
DoorOpenIcon,
} from "lucide-vue-next";
import { watch } from "vue";
const props = defineProps<{
services: Record<string, Record<string, string[]>>;
}>();
const form = useForm({
name: null,
category: null,
type: null,
version: null,
});
const deployPolicyDefaults = {
[ServiceCategory.APPLICATION]: "with_environment",
[ServiceCategory.DATABASE]: "dependency_only",
[ServiceCategory.CACHE]: "dependency_only",
[ServiceCategory.GATEWAY]: "manual_or_on_route_change",
[ServiceCategory.STORAGE]: "manual",
[ServiceCategory.BUILDER]: "manual",
};
function getIcon(category: string) {
switch (category) {
case ServiceCategory.DATABASE:
return DatabaseIcon;
case ServiceCategory.CACHE:
return DatabaseZapIcon;
case ServiceCategory.APPLICATION:
return AppWindowIcon;
case ServiceCategory.GATEWAY:
return DoorOpenIcon;
case ServiceCategory.STORAGE:
return ArchiveIcon;
default:
return null;
}
}
function generateServiceName(): string {
let str = "";
if (form.category) {
str += form.category.toLowerCase() + "-";
}
if (form.type) {
str += form.type.toLowerCase() + "-";
}
if (form.version) {
str += form.version.toLowerCase();
}
return str;
}
watch([() => form.category, () => form.type, () => form.version], () => {
form.name = generateServiceName();
});
</script>
<template>
<Head title="Add Service to Server" />
<AppLayout
:breadcrumbs="[
{
title: 'Servers',
href: route('servers.index', {
organisation: $page.props.organisation.id,
}),
},
{
title: 'Services',
},
{
title: 'Create',
},
]"
>
<div class="flex h-full flex-1 flex-col gap-4 rounded-xl p-4">
<div
class="grid gap-2 md:grid-cols-2 lg:grid-cols-3"
role="radiogroup"
aria-label="Service category"
>
<RadioButton
v-for="(category, categoryKey) in ServiceCategory"
:key="category"
v-model="form.category"
:value="category"
name="category"
class="flex gap-3 py-3"
:described-by="`service-category-${category}-description`"
>
<component :is="getIcon(category)" class="size-5" />
<div>
<h4 class="mb-1 text-lg font-semibold leading-none tracking-tighter">
{{ category }}
</h4>
<p :id="`service-category-${category}-description`" class="text-sm">
{{ serviceCategoryDescriptions[categoryKey] }}
</p>
</div>
</RadioButton>
</div>
<div
v-if="form.category"
class="grid gap-2 md:grid-cols-2 lg:grid-cols-3"
role="radiogroup"
aria-label="Service type"
>
<RadioButton
v-for="service in services[form.category] ?? []"
:key="service.name"
v-model="form.type"
:value="service.name"
name="type"
class="py-3"
>
<h4 class="mb-1 text-lg font-semibold leading-none tracking-tighter">
{{ service.name }}
</h4>
</RadioButton>
<div
v-if="!services[form.category]"
class="rounded-md border border-dashed p-4 text-sm text-muted-foreground md:col-span-2 lg:col-span-3"
>
No service drivers are configured for {{ form.category }} services yet.
</div>
</div>
<div
v-if="form.type"
class="grid gap-2 md:grid-cols-2 lg:grid-cols-3"
role="radiogroup"
aria-label="Service version"
>
<RadioButton
v-for="(version, versionKey) in services[form.category][form.type].versions"
:key="versionKey"
v-model="form.version"
:value="versionKey"
name="version"
class="py-3"
>
<h4 class="mb-1 text-lg font-semibold leading-none tracking-tighter">
{{ version.name }}
</h4>
</RadioButton>
</div>
<div v-if="form.category" class="rounded-md border bg-muted/30 p-3 text-sm">
Default deploy policy: {{ deployPolicyDefaults[form.category]?.replace("_", " ") }}
</div>
<div class="grid gap-2">
<Label for="name">Name</Label>
<Input
id="name"
type="text"
required
autofocus
:tabindex="1"
v-model="form.name"
placeholder="postgres-db"
/>
<InputError :message="form.errors.name" />
</div>
<div class="flex items-center justify-end">
<Button
@click="
form.post(
route('services.store', {
organisation: $page.props.organisation.id,
server: $page.props.server.id,
}),
)
"
>Submit</Button
>
</div>
</div>
</AppLayout>
</template>