Files
Central/frontend/pages/applications/[slug].vue
tristan e6aec7d95a fix : use MalioButton/MalioButtonIcon everywhere, fix env count and fixture URLs
- Replace all native HTML buttons with MalioButton and MalioButtonIcon components
- Add app:read group on environments relation to fix 0 count in list
- Fix fixture URLs (http for apps, https for gitea)
- Maintenance icons: alert-outline (activate) / shield-check-outline (deactivate)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 14:38:34 +02:00

388 lines
16 KiB
Vue

<script setup lang="ts">
import type { Application, ApplicationWrite, Environment, EnvironmentWrite } from '~/services/dto/application'
import { getApplication, updateApplication, deleteApplication } from '~/services/applications'
import { createEnvironment, updateEnvironment, deleteEnvironment, toggleMaintenance } from '~/services/environments'
const { t } = useI18n()
const route = useRoute()
const router = useRouter()
const slug = route.params.slug as string
const application = ref<Application | null>(null)
const loading = ref(true)
const pendingMaintenanceByEnvId = ref<Record<number, boolean>>({})
// App edit modal
const showAppModal = ref(false)
const editForm = ref<ApplicationWrite>({ name: '', slug: '', registryImage: '', description: '', giteaUrl: '' })
const isSubmittingApp = ref(false)
// Env modal
const showEnvModal = ref(false)
const editingEnvId = ref<number | null>(null)
const envForm = ref<EnvironmentWrite>({
name: '',
containerName: '',
deployScriptPath: '',
maintenanceFilePath: '',
appUrl: '',
logFiles: [],
})
const isSubmittingEnv = ref(false)
async function loadApplication() {
loading.value = true
try {
application.value = await getApplication(slug)
} finally {
loading.value = false
}
}
// Application edit
function openEditAppModal() {
if (!application.value) return
editForm.value = {
name: application.value.name,
slug: application.value.slug,
registryImage: application.value.registryImage,
description: application.value.description ?? '',
giteaUrl: application.value.giteaUrl ?? '',
}
showAppModal.value = true
}
async function saveApp() {
isSubmittingApp.value = true
try {
application.value = await updateApplication(slug, editForm.value)
showAppModal.value = false
if (editForm.value.slug !== slug) {
router.replace(`/applications/${editForm.value.slug}`)
}
} finally {
isSubmittingApp.value = false
}
}
async function handleDeleteApp() {
if (!confirm(t('applications.detail.deleteConfirm'))) return
await deleteApplication(slug)
router.push('/applications')
}
// Environment CRUD
function openCreateEnvModal() {
editingEnvId.value = null
envForm.value = { name: '', containerName: '', deployScriptPath: '', maintenanceFilePath: '', appUrl: '', logFiles: [] }
showEnvModal.value = true
}
function openEditEnvModal(env: Environment) {
editingEnvId.value = env.id!
envForm.value = {
name: env.name,
containerName: env.containerName,
deployScriptPath: env.deployScriptPath,
maintenanceFilePath: env.maintenanceFilePath,
appUrl: env.appUrl ?? '',
logFiles: env.logFiles.map(lf => ({ label: lf.label, path: lf.path })),
}
showEnvModal.value = true
}
async function saveEnv() {
isSubmittingEnv.value = true
try {
if (editingEnvId.value) {
await updateEnvironment(editingEnvId.value, envForm.value)
} else {
await createEnvironment(slug, envForm.value)
}
showEnvModal.value = false
await loadApplication()
} finally {
isSubmittingEnv.value = false
}
}
async function handleDeleteEnv(envId: number) {
if (!confirm(t('environments.deleteConfirm'))) return
await deleteEnvironment(envId)
await loadApplication()
}
async function handleToggleMaintenance(env: Environment) {
const envId = env.id!
pendingMaintenanceByEnvId.value[envId] = true
try {
await toggleMaintenance(envId, !env.maintenance)
await loadApplication()
} finally {
delete pendingMaintenanceByEnvId.value[envId]
}
}
function addLogFile() {
envForm.value.logFiles.push({ label: '', path: '' })
}
function removeLogFile(index: number) {
envForm.value.logFiles.splice(index, 1)
}
const envModalTitle = computed(() =>
editingEnvId.value ? t('environments.editButton') : t('environments.addButton')
)
onMounted(loadApplication)
</script>
<template>
<div class="px-4 py-8 sm:px-8 lg:px-16">
<!-- Back link -->
<NuxtLink to="/applications" class="text-neutral-400 hover:text-primary-500 text-sm mb-6 inline-flex items-center gap-1">
<Icon name="mdi:arrow-left" size="16" />
{{ t('applications.title') }}
</NuxtLink>
<!-- Loading -->
<div v-if="loading" class="animate-pulse mt-4">
<div class="h-10 bg-neutral-200 rounded w-1/3 mb-4" />
<div class="h-4 bg-neutral-200 rounded w-2/3 mb-2" />
<div class="h-4 bg-neutral-200 rounded w-1/2" />
</div>
<template v-else-if="application">
<!-- Application header -->
<div class="flex items-start justify-between pb-6">
<div>
<h1 class="text-2xl font-bold text-primary-500 sm:text-4xl">{{ application.name }}</h1>
<p v-if="application.description" class="text-neutral-500 mt-2">{{ application.description }}</p>
</div>
<div class="flex gap-2">
<MalioButton
:label="t('applications.detail.editButton')"
variant="secondary"
icon-name="mdi:pencil"
icon-position="left"
@click="openEditAppModal"
/>
<MalioButton
:label="t('applications.detail.deleteButton')"
variant="danger"
icon-name="mdi:trash-can-outline"
icon-position="left"
@click="handleDeleteApp"
/>
</div>
</div>
<!-- Application info -->
<div class="rounded-lg bg-tertiary-500 p-5 mb-8">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 text-sm">
<div>
<span class="text-neutral-400">{{ t('applications.detail.registryImage') }} :</span>
<span class="text-neutral-800 ml-1 font-mono">{{ application.registryImage }}</span>
</div>
<div v-if="application.giteaUrl">
<span class="text-neutral-400">{{ t('applications.detail.giteaUrl') }} :</span>
<a :href="application.giteaUrl" target="_blank" class="text-primary-500 hover:underline ml-1">
{{ application.giteaUrl }}
</a>
</div>
</div>
</div>
<!-- Environments section -->
<div>
<div class="flex items-center justify-between pb-4">
<h2 class="text-xl font-bold text-primary-500 sm:text-2xl">{{ t('environments.title') }}</h2>
<MalioButtonIcon
icon="mdi:plus"
aria-label="Retour"
@click="openCreateEnvModal"
/>
</div>
<!-- Environments list -->
<div v-if="!application.environments?.length" class="rounded-lg border border-neutral-200 bg-white p-6 text-center text-neutral-500">
{{ t('applications.card.noEnvironments') }}
</div>
<div v-for="env in application.environments" :key="env.id" class="rounded-lg bg-tertiary-500 p-5 mb-4">
<div class="flex items-start justify-between">
<div>
<div class="flex items-center gap-3">
<h3 class="text-lg font-semibold text-neutral-900">{{ env.name }}</h3>
<span
class="inline-block rounded-full px-3 py-1 text-xs font-semibold"
:class="env.maintenance
? 'bg-orange-100 text-orange-700'
: 'bg-green-100 text-green-700'"
>
{{ env.maintenance ? t('environments.maintenance.active') : t('environments.maintenance.inactive') }}
</span>
</div>
<p class="text-neutral-400 text-sm mt-1 font-mono">{{ env.containerName }}</p>
<a
v-if="env.appUrl"
:href="env.appUrl"
target="_blank"
class="text-primary-500 hover:underline text-sm mt-1 inline-flex items-center gap-1"
>
{{ env.appUrl }}
<Icon name="mdi:open-in-new" size="14" />
</a>
</div>
<div class="flex gap-2">
<MalioButton
:label="pendingMaintenanceByEnvId[env.id!]
? t('environments.maintenance.pending')
: env.maintenance
? t('environments.maintenance.deactivate')
: t('environments.maintenance.activate')"
:variant="env.maintenance ? 'danger' : 'primary'"
:icon-name="env.maintenance ? 'mdi:shield-check-outline' : 'mdi:alert-outline'"
icon-position="left"
:loading="!!pendingMaintenanceByEnvId[env.id!]"
@click="handleToggleMaintenance(env)"
/>
</div>
</div>
<!-- Log files -->
<div v-if="env.logFiles.length" class="mt-4 border-t border-neutral-200 pt-3">
<p class="text-xs font-semibold uppercase tracking-wider text-neutral-400 mb-2">{{ t('environments.logFiles.title') }}</p>
<div v-for="lf in env.logFiles" :key="lf.id" class="text-sm text-neutral-700 flex gap-2">
<span class="font-medium">{{ lf.label }} :</span>
<span class="font-mono text-neutral-400">{{ lf.path }}</span>
</div>
</div>
<div class="flex justify-center gap-4 mt-4">
<MalioButton
:label="t('environments.editButton')"
variant="secondary"
icon-name="mdi:pencil"
icon-position="left"
@click="openEditEnvModal(env)"
/>
<MalioButton
:label="t('environments.deleteButton')"
variant="danger"
icon-name="mdi:trash-can-outline"
icon-position="left"
@click="handleDeleteEnv(env.id!)"
/>
</div>
</div>
</div>
</template>
<!-- Edit application modal -->
<AppModal
v-model="showAppModal"
:submit-label="t('applications.form.save')"
:cancel-label="t('applications.form.cancel')"
:loading="isSubmittingApp"
@submit="saveApp"
>
<template #title>{{ t('applications.detail.editButton') }}</template>
<form @submit.prevent="saveApp" class="space-y-4">
<div class="grid grid-cols-1 gap-x-6 gap-y-4 sm:grid-cols-2">
<MalioInputText
v-model="editForm.name"
:label="t('applications.form.name')"
required
/>
<MalioInputText
v-model="editForm.slug"
:label="t('applications.form.slug')"
required
/>
<MalioInputText
v-model="editForm.registryImage"
:label="t('applications.form.registryImage')"
required
/>
<MalioInputText
v-model="editForm.giteaUrl"
:label="t('applications.form.giteaUrl')"
/>
</div>
<div>
<label class="mb-1 block text-sm font-medium text-neutral-700">{{ t('applications.form.description') }}</label>
<textarea
v-model="editForm.description"
class="w-full rounded-md border border-neutral-300 px-3 py-2 text-base text-neutral-900 focus:border-primary-500 focus:ring-2 focus:ring-secondary-500/20"
rows="3"
/>
</div>
</form>
</AppModal>
<!-- Environment modal -->
<AppModal
v-model="showEnvModal"
:submit-label="t('environments.form.save')"
:cancel-label="t('environments.form.cancel')"
:loading="isSubmittingEnv"
@submit="saveEnv"
>
<template #title>{{ envModalTitle }}</template>
<form @submit.prevent="saveEnv" class="space-y-4">
<div class="grid grid-cols-1 gap-x-6 gap-y-4 sm:grid-cols-2">
<MalioInputText
v-model="envForm.name"
:label="t('environments.form.name')"
required
/>
<MalioInputText
v-model="envForm.containerName"
:label="t('environments.form.containerName')"
required
/>
<MalioInputText
v-model="envForm.deployScriptPath"
:label="t('environments.form.deployScriptPath')"
required
/>
<MalioInputText
v-model="envForm.maintenanceFilePath"
:label="t('environments.form.maintenanceFilePath')"
required
/>
<MalioInputText
v-model="envForm.appUrl"
:label="t('environments.form.appUrl')"
/>
</div>
<!-- Log files -->
<div>
<div class="flex items-center justify-between mb-2">
<p class="text-sm font-medium text-neutral-700">{{ t('environments.logFiles.title') }}</p>
<button type="button" @click="addLogFile" class="text-primary-500 hover:underline text-sm font-semibold">
+ {{ t('environments.logFiles.addButton') }}
</button>
</div>
<div v-for="(lf, index) in envForm.logFiles" :key="index" class="flex gap-2 mb-2">
<MalioInputText v-model="lf.label" :label="t('environments.logFiles.label')" groupClass="mt-0" inputClass="flex-1" required />
<MalioInputText v-model="lf.path" :label="t('environments.logFiles.path')" groupClass="mt-0" inputClass="flex-[2]" required />
<MalioButtonIcon
icon="mdi:delete-outline"
:aria-label="t('environments.logFiles.remove')"
variant="ghost"
icon-size="18"
button-class="text-red-500 hover:bg-red-50 hover:text-red-700 my-1"
@click="removeLogFile(index)"
/>
</div>
</div>
</form>
</AppModal>
</div>
</template>