Rework the dashboard, environment topology view, header navigation, and status rendering, and standardise selects on a shadcn-vue component. Replace the thin database seeder with a SimulatedEnvironmentSeeder that builds a fully wired, mostly-running organisation (ACTIVE server fleet, managed + GHCR registries, Gitea source provider, ClipBin app with production/staging environments, services, slices, endpoints, managed variables, build artifacts, and a completed/in-progress/failed operations history) so the new UI renders against realistic data.
150 lines
5.9 KiB
Vue
150 lines
5.9 KiB
Vue
<script setup lang="ts">
|
|
import InputError from "@/components/InputError.vue";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import AppLayout from "@/layouts/AppLayout.vue";
|
|
import { Head, router, useForm } from "@inertiajs/vue3";
|
|
|
|
const props = defineProps<{
|
|
application: Record<string, any>;
|
|
repositoryTypes: Record<string, string>;
|
|
sourceProviders: Record<string, any>[];
|
|
}>();
|
|
|
|
const form = useForm({
|
|
name: props.application.name,
|
|
source_provider_id: props.application.source_provider_id ?? "",
|
|
repository_type: props.application.repository_type ?? "git",
|
|
repository_url: props.application.repository_url,
|
|
default_branch: props.application.default_branch,
|
|
});
|
|
|
|
const destroyApplication = (): void => {
|
|
if (!window.confirm(`Delete ${props.application.name}? This removes its environments too.`)) {
|
|
return;
|
|
}
|
|
|
|
router.delete(
|
|
route("applications.destroy", {
|
|
organisation: props.application.organisation_id,
|
|
application: props.application.id,
|
|
}),
|
|
);
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Head :title="`Edit ${application.name}`" />
|
|
|
|
<AppLayout
|
|
:breadcrumbs="[
|
|
{
|
|
title: 'Applications',
|
|
href: route('applications.index', { organisation: $page.props.organisation.id }),
|
|
},
|
|
{
|
|
title: application.name,
|
|
href: route('applications.show', {
|
|
organisation: $page.props.organisation.id,
|
|
application: application.id,
|
|
}),
|
|
},
|
|
{ title: 'Edit' },
|
|
]"
|
|
>
|
|
<form
|
|
class="flex h-full max-w-3xl flex-1 flex-col gap-5 p-4"
|
|
@submit.prevent="
|
|
form.put(
|
|
route('applications.update', {
|
|
organisation: $page.props.organisation.id,
|
|
application: application.id,
|
|
}),
|
|
)
|
|
"
|
|
>
|
|
<div>
|
|
<h2 class="text-3xl font-bold tracking-tight">Edit Application</h2>
|
|
<p class="mt-1 text-sm text-muted-foreground">
|
|
Update repository metadata used when resolving deploy targets.
|
|
</p>
|
|
</div>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Repository</CardTitle>
|
|
</CardHeader>
|
|
<CardContent class="grid gap-4">
|
|
<div class="grid gap-2">
|
|
<Label for="repository_type">Repository type</Label>
|
|
<Select v-model="form.repository_type" required>
|
|
<SelectTrigger id="repository_type">
|
|
<SelectValue placeholder="Select repository type" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem
|
|
v-for="(type, key) in repositoryTypes"
|
|
:key="key"
|
|
:value="type"
|
|
>
|
|
{{ type }}
|
|
</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<InputError :message="form.errors.repository_type" />
|
|
</div>
|
|
<div class="grid gap-2">
|
|
<Label for="source_provider_id">Source provider</Label>
|
|
<Select v-model="form.source_provider_id">
|
|
<SelectTrigger id="source_provider_id">
|
|
<SelectValue placeholder="No provider" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem
|
|
v-for="provider in sourceProviders"
|
|
:key="provider.id"
|
|
:value="String(provider.id)"
|
|
>
|
|
{{ provider.name }} · {{ provider.type }}
|
|
</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<InputError :message="form.errors.source_provider_id" />
|
|
</div>
|
|
<div class="grid gap-2">
|
|
<Label for="name">Name</Label>
|
|
<Input id="name" v-model="form.name" required />
|
|
<InputError :message="form.errors.name" />
|
|
</div>
|
|
<div class="grid gap-2">
|
|
<Label for="repository_url">Repository SSH URL</Label>
|
|
<Input id="repository_url" v-model="form.repository_url" required />
|
|
<InputError :message="form.errors.repository_url" />
|
|
</div>
|
|
<div class="grid gap-2">
|
|
<Label for="default_branch">Default branch</Label>
|
|
<Input id="default_branch" v-model="form.default_branch" required />
|
|
<InputError :message="form.errors.default_branch" />
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<div class="flex flex-wrap justify-between gap-2">
|
|
<Button type="button" variant="destructive" @click="destroyApplication">
|
|
Delete application
|
|
</Button>
|
|
<Button type="submit" :disabled="form.processing">Save changes</Button>
|
|
</div>
|
|
</form>
|
|
</AppLayout>
|
|
</template>
|