Files
keystone/resources/js/pages/applications/Index.vue
Harry Bayliss 85c44296ac
Some checks failed
CI / Tests (push) Failing after 56s
CI / Lint (push) Failing after 1m35s
Restructure UX and seed a fully simulated organisation
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.
2026-06-08 22:09:57 +01:00

90 lines
3.2 KiB
Vue

<script setup lang="ts">
import { Button } from "@/components/ui/button";
import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import AppLayout from "@/layouts/AppLayout.vue";
import { Head, Link } from "@inertiajs/vue3";
import { PlusIcon } from "lucide-vue-next";
defineProps<{
applications: Record<string, any>[];
}>();
</script>
<template>
<Head title="Dashboard" />
<AppLayout
:breadcrumbs="[
{
title: 'Applications',
href: route('applications.index', {
organisation: $page.props.organisation.id,
}),
},
]"
>
<div class="flex items-center justify-between gap-3 p-4">
<div>
<h2 class="text-3xl font-bold tracking-tight">Applications</h2>
<p class="mt-1 text-sm text-muted-foreground">
Source repositories and their deployment environments.
</p>
</div>
<div>
<Button
:as="Link"
:href="
route('applications.create', {
organisation: $page.props.organisation.id,
})
"
>
<PlusIcon class="size-4" />
Create
</Button>
</div>
</div>
<div class="grid gap-4 rounded-xl p-4 md:grid-cols-2 lg:grid-cols-3">
<Card v-for="application in applications" :key="application.id" class="relative w-full">
<CardHeader>
<CardTitle>{{ application.name }}</CardTitle>
<CardDescription
>{{ application.environments?.length ?? 0 }} environments</CardDescription
>
</CardHeader>
<Link
:href="
route('applications.show', {
organisation: $page.props.organisation.id,
application: application.id,
})
"
class="absolute inset-0"
></Link>
</Card>
<Card v-if="applications.length === 0" class="md:col-span-2 lg:col-span-3">
<CardHeader>
<CardTitle>No applications yet</CardTitle>
<CardDescription>
Create an application to add the first environment, deploy key, and runtime
services.
</CardDescription>
<div>
<Button
:as="Link"
:href="
route('applications.create', {
organisation: $page.props.organisation.id,
})
"
>
<PlusIcon class="size-4" />
Create application
</Button>
</div>
</CardHeader>
</Card>
</div>
</AppLayout>
</template>