- Replace all AppDrawer with MalioDrawer across 10 drawer components - Replace native <button> with MalioButton/MalioButtonIcon in all pages and components - Fix TimeTrackingExportDrawer: use MalioSelectCheckbox for multi-select filters - Add Malio design system colors (m-btn-*, m-disabled, m-surface) to tailwind.config.ts - Align toggle button heights with MalioButton (h-[40px]) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
265 lines
11 KiB
Vue
265 lines
11 KiB
Vue
<template>
|
|
<div>
|
|
<div class="sticky top-8 z-20 bg-white pb-4 sm:top-12">
|
|
<div class="flex items-center justify-between gap-3">
|
|
<h1 class="text-xl font-bold text-primary-500 sm:text-2xl">
|
|
Tickets client
|
|
<span v-if="project" class="text-neutral-400">— {{ project.name }}</span>
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="mt-4 flex flex-wrap items-center gap-3">
|
|
<select
|
|
v-model="filterStatus"
|
|
class="rounded-md border border-neutral-300 px-3 py-2 text-sm focus:border-primary-500 focus:outline-none"
|
|
>
|
|
<option :value="null">Tous les statuts</option>
|
|
<option value="new">{{ $t('clientTicket.status.new') }}</option>
|
|
<option value="in_progress">{{ $t('clientTicket.status.in_progress') }}</option>
|
|
<option value="done">{{ $t('clientTicket.status.done') }}</option>
|
|
<option value="rejected">{{ $t('clientTicket.status.rejected') }}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-if="isLoading" class="py-12 text-center text-sm text-neutral-400">
|
|
{{ $t('common.loading') }}
|
|
</div>
|
|
|
|
<div v-else-if="filteredTickets.length === 0" class="py-12 text-center text-sm text-neutral-400">
|
|
{{ $t('clientTicket.noTickets') }}
|
|
</div>
|
|
|
|
<div v-else class="mt-4 space-y-3">
|
|
<div
|
|
v-for="ticket in filteredTickets"
|
|
:key="ticket.id"
|
|
class="rounded-lg border border-neutral-200 bg-white"
|
|
>
|
|
<div
|
|
class="flex cursor-pointer items-start justify-between gap-3 p-4 transition-colors hover:bg-neutral-50"
|
|
@click="toggleExpand(ticket.id)"
|
|
>
|
|
<div class="min-w-0 flex-1">
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
<span class="text-xs font-bold text-primary-500">CT-{{ String(ticket.number).padStart(3, '0') }}</span>
|
|
<span
|
|
class="rounded-full px-2 py-0.5 text-xs font-semibold text-white"
|
|
:class="typeBadgeClass(ticket.type)"
|
|
>
|
|
{{ $t(`clientTicket.type.${ticket.type}`) }}
|
|
</span>
|
|
<span
|
|
class="rounded-full px-2 py-0.5 text-xs font-semibold"
|
|
:class="statusBadgeClass(ticket.status)"
|
|
>
|
|
{{ $t(`clientTicket.status.${ticket.status}`) }}
|
|
</span>
|
|
</div>
|
|
<p class="mt-1 text-sm font-semibold text-neutral-900">{{ ticket.title }}</p>
|
|
<p class="mt-0.5 text-xs text-neutral-400">{{ formatDate(ticket.createdAt) }}</p>
|
|
</div>
|
|
<div class="flex items-center gap-1">
|
|
<MalioButtonIcon
|
|
icon="mdi:swap-horizontal"
|
|
:aria-label="$t('clientTicket.changeStatus')"
|
|
variant="ghost"
|
|
icon-size="18"
|
|
@click.stop="openStatusChange(ticket)"
|
|
/>
|
|
<MalioButtonIcon
|
|
icon="mdi:delete-outline"
|
|
aria-label="Supprimer"
|
|
variant="ghost"
|
|
icon-size="18"
|
|
@click.stop="onDelete(ticket)"
|
|
/>
|
|
<Icon
|
|
:name="expandedId === ticket.id ? 'mdi:chevron-up' : 'mdi:chevron-down'"
|
|
size="20"
|
|
class="text-neutral-400"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Expanded details -->
|
|
<div v-if="expandedId === ticket.id" class="border-t border-neutral-100 px-4 py-3">
|
|
<p class="text-sm text-neutral-600 whitespace-pre-wrap">{{ ticket.description }}</p>
|
|
<div v-if="ticket.url" class="mt-2">
|
|
<a
|
|
:href="ticket.url"
|
|
target="_blank"
|
|
class="text-xs text-primary-500 underline hover:text-primary-600"
|
|
>
|
|
{{ ticket.url }}
|
|
</a>
|
|
</div>
|
|
<div v-if="ticket.statusComment" class="mt-2 rounded-lg bg-neutral-50 p-2 text-xs text-neutral-500">
|
|
{{ ticket.statusComment }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Status change modal -->
|
|
<Teleport v-if="statusModalOpen" to="body">
|
|
<div class="fixed inset-0 z-[60] flex items-center justify-center p-4">
|
|
<div
|
|
class="absolute inset-0 bg-slate-900/40 backdrop-blur-sm"
|
|
@click="statusModalOpen = false"
|
|
/>
|
|
<div class="relative z-10 w-full max-w-md rounded-2xl bg-white p-6 shadow-2xl">
|
|
<h3 class="text-lg font-bold text-neutral-900">{{ $t('clientTicket.changeStatus') }}</h3>
|
|
<p v-if="statusTarget" class="mt-1 text-sm text-neutral-500">
|
|
CT-{{ String(statusTarget.number).padStart(3, '0') }} — {{ statusTarget.title }}
|
|
</p>
|
|
|
|
<div class="mt-4">
|
|
<label class="mb-1 block text-sm font-medium text-neutral-700">Nouveau statut</label>
|
|
<select
|
|
v-model="newStatus"
|
|
class="w-full rounded-lg border border-neutral-300 px-3 py-2 text-sm focus:border-primary-500 focus:outline-none focus:ring-1 focus:ring-primary-500"
|
|
>
|
|
<option :value="null" disabled>—</option>
|
|
<option
|
|
v-for="s in availableStatusTransitions"
|
|
:key="s.value"
|
|
:value="s.value"
|
|
>
|
|
{{ s.label }}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div v-if="newStatus === 'rejected'" class="mt-4">
|
|
<MalioInputTextArea
|
|
v-model="statusComment"
|
|
:label="$t('clientTicket.statusComment')"
|
|
:size="3"
|
|
/>
|
|
<p v-if="rejectionError" class="mt-1 text-xs text-red-500">
|
|
{{ $t('clientTicket.rejectionRequired') }}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="mt-6 flex justify-end gap-3">
|
|
<MalioButton
|
|
variant="tertiary"
|
|
:label="$t('common.cancel')"
|
|
button-class="w-auto px-4"
|
|
@click="statusModalOpen = false"
|
|
/>
|
|
<MalioButton
|
|
label="Confirmer"
|
|
button-class="w-auto px-6"
|
|
:disabled="isUpdatingStatus"
|
|
@click="confirmStatusChange"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Teleport>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { ClientTicket, ClientTicketStatus } from '~/services/dto/client-ticket'
|
|
import type { Project } from '~/services/dto/project'
|
|
import { useClientTicketService } from '~/services/client-tickets'
|
|
import { useProjectService } from '~/services/projects'
|
|
|
|
const route = useRoute()
|
|
const { t } = useI18n()
|
|
const projectId = computed(() => Number(route.params.id))
|
|
|
|
useHead({ title: 'Tickets client' })
|
|
|
|
const clientTicketService = useClientTicketService()
|
|
const projectService = useProjectService()
|
|
const { typeBadgeClass, statusBadgeClass, formatDate, getAvailableStatusTransitions } = useClientTicketHelpers()
|
|
|
|
const project = ref<Project | null>(null)
|
|
const tickets = ref<ClientTicket[]>([])
|
|
const isLoading = ref(true)
|
|
const filterStatus = ref<string | null>(null)
|
|
const expandedId = ref<number | null>(null)
|
|
|
|
const filteredTickets = computed(() => {
|
|
if (!filterStatus.value) return tickets.value
|
|
return tickets.value.filter(t => t.status === filterStatus.value)
|
|
})
|
|
|
|
// Status change
|
|
const statusModalOpen = ref(false)
|
|
const statusTarget = ref<ClientTicket | null>(null)
|
|
const newStatus = ref<string | null>(null)
|
|
const statusComment = ref('')
|
|
const rejectionError = ref(false)
|
|
const isUpdatingStatus = ref(false)
|
|
|
|
const availableStatusTransitions = computed(() => {
|
|
if (!statusTarget.value) return []
|
|
return getAvailableStatusTransitions(statusTarget.value.status, t)
|
|
})
|
|
|
|
function toggleExpand(id: number) {
|
|
expandedId.value = expandedId.value === id ? null : id
|
|
}
|
|
|
|
function openStatusChange(ticket: ClientTicket) {
|
|
statusTarget.value = ticket
|
|
newStatus.value = null
|
|
statusComment.value = ''
|
|
rejectionError.value = false
|
|
statusModalOpen.value = true
|
|
}
|
|
|
|
async function confirmStatusChange() {
|
|
if (!statusTarget.value || !newStatus.value) return
|
|
|
|
if (newStatus.value === 'rejected' && !statusComment.value.trim()) {
|
|
rejectionError.value = true
|
|
return
|
|
}
|
|
|
|
isUpdatingStatus.value = true
|
|
try {
|
|
await clientTicketService.updateStatus(statusTarget.value.id, {
|
|
status: newStatus.value as ClientTicketStatus,
|
|
statusComment: newStatus.value === 'rejected' ? statusComment.value.trim() : null,
|
|
})
|
|
statusModalOpen.value = false
|
|
await loadTickets()
|
|
} finally {
|
|
isUpdatingStatus.value = false
|
|
}
|
|
}
|
|
|
|
async function onDelete(ticket: ClientTicket) {
|
|
await clientTicketService.remove(ticket.id)
|
|
await loadTickets()
|
|
}
|
|
|
|
async function loadTickets() {
|
|
tickets.value = await clientTicketService.getAll({ project: projectId.value })
|
|
}
|
|
|
|
async function loadData() {
|
|
isLoading.value = true
|
|
try {
|
|
const [p, t] = await Promise.all([
|
|
projectService.getById(projectId.value),
|
|
clientTicketService.getAll({ project: projectId.value }),
|
|
])
|
|
project.value = p
|
|
tickets.value = t
|
|
} finally {
|
|
isLoading.value = false
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
loadData()
|
|
})
|
|
</script>
|