feat: frontend fase 2 sessies 1-3

- Member management pagina + invite flow
- Persons module met filters, KPI tiles, detail panel
- Event horizontale tabs navigatie (EventTabsNav component)
- Route conflict opgelost
- OrganisationSwitcher verbeterd (collapsed staat WIP)
This commit is contained in:
2026-04-08 03:15:45 +02:00
parent 230e11cc8d
commit 6f69b30fb6
19 changed files with 1722 additions and 311 deletions

View File

@@ -0,0 +1,273 @@
<script setup lang="ts">
import { usePersonDetail, useUpdatePerson } from '@/composables/api/usePersons'
import type { Person, PersonStatus } from '@/types/person'
const props = defineProps<{
eventId: string
orgId: string
personId: string | null
}>()
const emit = defineEmits<{
edit: [person: Person]
}>()
const modelValue = defineModel<boolean>({ required: true })
const eventIdRef = computed(() => props.eventId)
const personIdRef = computed(() => props.personId ?? '')
const { data: person, isLoading } = usePersonDetail(eventIdRef, personIdRef)
const { mutate: updatePerson } = useUpdatePerson(eventIdRef)
const activeTab = ref('info')
const statusColor: Record<PersonStatus, string> = {
pending: 'default',
applied: 'info',
invited: 'cyan',
approved: 'success',
rejected: 'error',
no_show: 'warning',
}
const dateFormatter = new Intl.DateTimeFormat('nl-NL', {
day: '2-digit',
month: '2-digit',
year: 'numeric',
})
function formatDate(iso: string) {
return dateFormatter.format(new Date(iso))
}
function getInitials(name: string) {
return name
.split(' ')
.map(p => p[0])
.join('')
.toUpperCase()
.slice(0, 2)
}
// Admin notes inline edit
const adminNotes = ref('')
watch(() => person.value?.admin_notes, (val) => {
adminNotes.value = val ?? ''
}, { immediate: true })
function onAdminNotesBlur() {
if (!person.value) return
if (adminNotes.value === (person.value.admin_notes ?? '')) return
updatePerson({
id: person.value.id,
admin_notes: adminNotes.value || undefined,
})
}
// Blacklisted toggle
function onBlacklistToggle(val: boolean | null) {
if (!person.value) return
updatePerson({
id: person.value.id,
is_blacklisted: !!val,
})
}
</script>
<template>
<VNavigationDrawer
v-model="modelValue"
location="end"
temporary
:width="480"
>
<!-- Loading -->
<div
v-if="isLoading"
class="pa-6"
>
<VSkeletonLoader type="article" />
</div>
<template v-else-if="person">
<!-- Header -->
<div class="pa-6">
<div class="d-flex justify-space-between align-start mb-4">
<div class="d-flex align-center gap-x-4">
<VAvatar
size="56"
color="primary"
variant="tonal"
>
<span class="text-h6">{{ getInitials(person.name) }}</span>
</VAvatar>
<div>
<h5 class="text-h5 mb-1">
{{ person.name }}
</h5>
<p class="text-body-2 text-disabled mb-2">
{{ person.email }}
</p>
<div class="d-flex gap-x-2">
<VChip
:color="statusColor[person.status]"
size="small"
>
{{ person.status }}
</VChip>
<VChip
v-if="person.crowd_type"
:color="person.crowd_type.color"
size="small"
>
{{ person.crowd_type.name }}
</VChip>
</div>
</div>
</div>
<div class="d-flex gap-x-1">
<VBtn
icon="tabler-edit"
variant="text"
size="small"
title="Bewerken"
@click="emit('edit', person)"
/>
<VBtn
icon="tabler-x"
variant="text"
size="small"
title="Sluiten"
@click="modelValue = false"
/>
</div>
</div>
</div>
<VDivider />
<!-- Tabs -->
<VTabs
v-model="activeTab"
class="px-6"
>
<VTab value="info">
Informatie
</VTab>
<VTab value="shifts">
Shifts
</VTab>
<VTab value="accreditation">
Accreditatie
</VTab>
</VTabs>
<VDivider />
<VTabsWindow
v-model="activeTab"
class="pa-6"
>
<!-- Tab: Informatie -->
<VTabsWindowItem value="info">
<VList class="pa-0">
<VListItem>
<template #prepend>
<VIcon
icon="tabler-phone"
class="me-3"
/>
</template>
<VListItemTitle>Telefoonnummer</VListItemTitle>
<VListItemSubtitle>{{ person.phone ?? 'Niet opgegeven' }}</VListItemSubtitle>
</VListItem>
<VListItem>
<template #prepend>
<VIcon
icon="tabler-building"
class="me-3"
/>
</template>
<VListItemTitle>Bedrijf</VListItemTitle>
<VListItemSubtitle>{{ person.company?.name ?? 'Geen bedrijf' }}</VListItemSubtitle>
</VListItem>
<VListItem>
<template #prepend>
<VIcon
icon="tabler-calendar"
class="me-3"
/>
</template>
<VListItemTitle>Aangemaakt op</VListItemTitle>
<VListItemSubtitle>{{ formatDate(person.created_at) }}</VListItemSubtitle>
</VListItem>
</VList>
<VDivider class="my-4" />
<!-- Admin notes -->
<h6 class="text-h6 mb-2">
Admin notities
</h6>
<VTextarea
v-model="adminNotes"
variant="outlined"
rows="3"
placeholder="Notities over deze persoon..."
@blur="onAdminNotesBlur"
/>
<VDivider class="my-4" />
<!-- Blacklisted toggle -->
<VSwitch
:model-value="person.is_blacklisted"
label="Geblokkeerd"
color="error"
@update:model-value="onBlacklistToggle"
/>
</VTabsWindowItem>
<!-- Tab: Shifts (placeholder) -->
<VTabsWindowItem value="shifts">
<VCard
variant="outlined"
class="text-center pa-8"
>
<VIcon
icon="tabler-clock"
size="48"
class="mb-4 text-disabled"
/>
<p class="text-body-1 text-disabled">
Shift toewijzingen worden hier getoond zodra de shift planning module beschikbaar is.
</p>
</VCard>
</VTabsWindowItem>
<!-- Tab: Accreditatie (placeholder) -->
<VTabsWindowItem value="accreditation">
<VCard
variant="outlined"
class="text-center pa-8"
>
<VIcon
icon="tabler-id-badge-2"
size="48"
class="mb-4 text-disabled"
/>
<p class="text-body-1 text-disabled">
Accreditatie wordt hier getoond zodra de accreditatie module beschikbaar is.
</p>
</VCard>
</VTabsWindowItem>
</VTabsWindow>
</template>
</VNavigationDrawer>
</template>