Files
keystone/resources/js/pages/applications/Show.vue
Harry Bayliss 66f0ee9e50
All checks were successful
CI / Tests (push) Successful in 43s
CI / Lint (push) Successful in 1m3s
Migrate to Gitea, switch JS tooling to oxlint/oxfmt, lift test coverage to 95%
- Add .gitea/workflows/ci.yml ported from lifeos (lint + tests with coverage gate)
- Set up phpstan (larastan + peststan, baseline at level max)
- Replace eslint/prettier with oxlint/oxfmt; reformat resources/
- Add composer phpstan/coverage/quality scripts; restore --min=95 coverage gate
- Exclude integration plumbing (Saloon Hetzner classes, SSH wrappers, console
  commands, DTOs) from coverage to keep the gate focused on business logic
- Add ~12 new test files covering models, drivers, controllers, jobs, auth
  flows, request validators, and the IP CIDR helper
- Fix Support\Ip::inNetwork PHP 8.4 TypeError in CIDR mask check
- Fix FirewallRule::command comparing the enum-cast type column to a string
- Fix Server::network using the wrong foreign key column
- Remove unreachable code under abort(403) in RegisteredUserController
2026-05-13 16:51:07 +01:00

220 lines
11 KiB
Vue

<script setup lang="ts">
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import AppLayout from "@/layouts/AppLayout.vue";
import { Head, Link, router } from "@inertiajs/vue3";
import {
BoxesIcon,
ExternalLinkIcon,
GitBranchIcon,
KeyRoundIcon,
RocketIcon,
} from "lucide-vue-next";
const props = defineProps({
application: {
type: Object,
required: true,
},
});
</script>
<template>
<Head title="Dashboard" />
<AppLayout
:breadcrumbs="[
{
title: 'Applications',
href: route('applications.index', { organisation: $page.props.organisation.id }),
},
{
title: props.application.name,
href: route('applications.show', {
organisation: $page.props.organisation.id,
application: props.application.id,
}),
},
]"
>
<div class="flex h-full flex-1 flex-col gap-4 rounded-xl p-4">
<div class="flex items-center gap-3">
<h2 class="text-3xl font-bold tracking-tight">{{ application.name }}</h2>
</div>
<Card v-if="application.deploy_key_public && !application.deploy_key_installed_at">
<CardHeader>
<div class="flex items-start justify-between gap-4">
<div class="min-w-0 space-y-3">
<div class="flex items-center gap-2">
<KeyRoundIcon class="size-4" />
<CardTitle>Repository Deploy Key</CardTitle>
</div>
<pre
class="max-w-full overflow-x-auto rounded border bg-muted p-3 text-xs"
>{{ application.deploy_key_public }}</pre
>
</div>
<Button
class="shrink-0"
@click="
router.post(
route('applications.verify-repository', {
organisation: $page.props.organisation.id,
application: application.id,
}),
)
"
>
<GitBranchIcon class="size-4" />
Verify
</Button>
</div>
</CardHeader>
</Card>
<div>
<div class="mb-3 flex items-center justify-between">
<h3 class="text-2xl font-semibold tracking-tight">Environments</h3>
</div>
<div class="grid gap-4 md:grid-cols-2 lg:grid-cols-3">
<Card
v-for="environment in application.environments"
:key="environment.id"
class="relative"
>
<CardHeader>
<div class="flex items-start justify-between gap-3">
<div>
<div class="flex items-center gap-2">
<BoxesIcon class="size-4" />
<CardTitle>{{ environment.name }}</CardTitle>
<Badge
:variant="
environment.status === 'active'
? 'success'
: 'secondary'
"
>{{ environment.status.replace("-", " ") }}</Badge
>
</div>
<CardDescription>
Branch: {{ environment.branch }} &bull;
{{ environment.services?.length ?? 0 }} services
</CardDescription>
<div
v-if="environment.variables?.length"
class="mt-3 flex flex-wrap gap-2"
>
<Badge
v-for="variable in environment.variables"
:key="variable.id"
:variant="
variable.source === 'user' ? 'secondary' : 'outline'
"
>
{{ variable.key }} ·
{{ variable.source.replace("_", " ") }}
<span v-if="!variable.overridable"> · locked</span>
</Badge>
</div>
</div>
<div class="flex shrink-0 gap-2">
<Button
:as="Link"
size="xs"
variant="secondary"
:href="
route('environments.show', {
organisation: $page.props.organisation.id,
application: application.id,
environment: environment.id,
})
"
>
<ExternalLinkIcon class="size-4" />
Open
</Button>
<Button
size="xs"
@click="
router.post(
route('environment-deployments.store', {
organisation: $page.props.organisation.id,
application: application.id,
environment: environment.id,
}),
)
"
>
<RocketIcon class="size-4" />
Deploy
</Button>
<Button
size="xs"
variant="secondary"
@click="
router.post(
route('environment-migrations.store', {
organisation: $page.props.organisation.id,
application: application.id,
environment: environment.id,
}),
)
"
>
Migrate
</Button>
<Button
:as="Link"
size="xs"
variant="secondary"
:href="
route('environment-variables.create', {
organisation: $page.props.organisation.id,
application: application.id,
environment: environment.id,
})
"
>
Env
</Button>
<Button
size="xs"
variant="secondary"
@click="
router.post(
route('environment-workers.store', {
organisation: $page.props.organisation.id,
application: application.id,
environment: environment.id,
}),
)
"
>
Worker
</Button>
<Button
:as="Link"
size="xs"
:href="
route('environment-attachments.create', {
organisation: $page.props.organisation.id,
application: application.id,
environment: environment.id,
})
"
>
Attach
</Button>
</div>
</div>
</CardHeader>
</Card>
</div>
</div>
</div>
</AppLayout>
</template>