feat: schema v1.7 + sections/shifts frontend
- Universeel festival/event model (parent_event_id, event_type) - event_person_activations pivot tabel - Event model: parent/children relaties + helper scopes - DevSeeder: festival structuur met sub-events - Sections & Shifts frontend (twee-kolom layout) - BACKLOG.md aangemaakt met 22 gedocumenteerde wensen
This commit is contained in:
287
apps/app/src/components/sections/CreateShiftDialog.vue
Normal file
287
apps/app/src/components/sections/CreateShiftDialog.vue
Normal file
@@ -0,0 +1,287 @@
|
||||
<script setup lang="ts">
|
||||
import { VForm } from 'vuetify/components/VForm'
|
||||
import { useCreateShift, useUpdateShift } from '@/composables/api/useShifts'
|
||||
import { useTimeSlotList } from '@/composables/api/useTimeSlots'
|
||||
import { requiredValidator } from '@core/utils/validators'
|
||||
import type { Shift, ShiftStatus } from '@/types/section'
|
||||
|
||||
const props = defineProps<{
|
||||
eventId: string
|
||||
sectionId: string
|
||||
shift?: Shift | null
|
||||
}>()
|
||||
|
||||
const modelValue = defineModel<boolean>({ required: true })
|
||||
|
||||
const eventIdRef = computed(() => props.eventId)
|
||||
const sectionIdRef = computed(() => props.sectionId)
|
||||
|
||||
const isEditing = computed(() => !!props.shift)
|
||||
|
||||
const { data: timeSlots } = useTimeSlotList(eventIdRef)
|
||||
const { mutate: createShift, isPending: isCreating } = useCreateShift(eventIdRef, sectionIdRef)
|
||||
const { mutate: updateShift, isPending: isUpdating } = useUpdateShift(eventIdRef, sectionIdRef)
|
||||
|
||||
const isPending = computed(() => isCreating.value || isUpdating.value)
|
||||
|
||||
const form = ref({
|
||||
time_slot_id: '',
|
||||
title: '',
|
||||
report_time: '',
|
||||
actual_start_time: '',
|
||||
actual_end_time: '',
|
||||
slots_total: 1,
|
||||
slots_open_for_claiming: 0,
|
||||
is_lead_role: false,
|
||||
allow_overlap: false,
|
||||
instructions: '',
|
||||
status: 'draft' as ShiftStatus,
|
||||
})
|
||||
|
||||
const errors = ref<Record<string, string>>({})
|
||||
const refVForm = ref<VForm>()
|
||||
|
||||
// Populate form when editing
|
||||
watch(
|
||||
() => props.shift,
|
||||
(shift) => {
|
||||
if (shift) {
|
||||
form.value = {
|
||||
time_slot_id: shift.time_slot_id,
|
||||
title: shift.title ?? '',
|
||||
report_time: shift.report_time ?? '',
|
||||
actual_start_time: shift.actual_start_time ?? '',
|
||||
actual_end_time: shift.actual_end_time ?? '',
|
||||
slots_total: shift.slots_total,
|
||||
slots_open_for_claiming: shift.slots_open_for_claiming,
|
||||
is_lead_role: shift.is_lead_role,
|
||||
allow_overlap: shift.allow_overlap,
|
||||
instructions: shift.instructions ?? '',
|
||||
status: shift.status,
|
||||
}
|
||||
}
|
||||
},
|
||||
{ immediate: true },
|
||||
)
|
||||
|
||||
const timeSlotItems = computed(() =>
|
||||
timeSlots.value?.map(ts => ({
|
||||
title: `${ts.name} — ${ts.date} ${ts.start_time}–${ts.end_time}`,
|
||||
value: ts.id,
|
||||
})) ?? [],
|
||||
)
|
||||
|
||||
const statusOptions = [
|
||||
{ title: 'Concept', value: 'draft' },
|
||||
{ title: 'Open', value: 'open' },
|
||||
]
|
||||
|
||||
function resetForm() {
|
||||
form.value = {
|
||||
time_slot_id: '',
|
||||
title: '',
|
||||
report_time: '',
|
||||
actual_start_time: '',
|
||||
actual_end_time: '',
|
||||
slots_total: 1,
|
||||
slots_open_for_claiming: 0,
|
||||
is_lead_role: false,
|
||||
allow_overlap: false,
|
||||
instructions: '',
|
||||
status: 'draft',
|
||||
}
|
||||
errors.value = {}
|
||||
refVForm.value?.resetValidation()
|
||||
}
|
||||
|
||||
function buildPayload() {
|
||||
return {
|
||||
time_slot_id: form.value.time_slot_id,
|
||||
slots_total: form.value.slots_total,
|
||||
slots_open_for_claiming: form.value.slots_open_for_claiming,
|
||||
is_lead_role: form.value.is_lead_role,
|
||||
allow_overlap: form.value.allow_overlap,
|
||||
status: form.value.status,
|
||||
...(form.value.title ? { title: form.value.title } : {}),
|
||||
...(form.value.report_time ? { report_time: form.value.report_time } : {}),
|
||||
...(form.value.actual_start_time ? { actual_start_time: form.value.actual_start_time } : {}),
|
||||
...(form.value.actual_end_time ? { actual_end_time: form.value.actual_end_time } : {}),
|
||||
...(form.value.instructions ? { instructions: form.value.instructions } : {}),
|
||||
}
|
||||
}
|
||||
|
||||
function onSubmit() {
|
||||
refVForm.value?.validate().then(({ valid }) => {
|
||||
if (!valid) return
|
||||
|
||||
errors.value = {}
|
||||
|
||||
const callbacks = {
|
||||
onSuccess: () => {
|
||||
modelValue.value = false
|
||||
if (!isEditing.value) resetForm()
|
||||
},
|
||||
onError: (err: any) => {
|
||||
const data = err.response?.data
|
||||
if (data?.errors) {
|
||||
errors.value = Object.fromEntries(
|
||||
Object.entries(data.errors).map(([k, v]) => [k, (v as string[])[0]]),
|
||||
)
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
if (isEditing.value && props.shift) {
|
||||
updateShift({ id: props.shift.id, ...buildPayload() }, callbacks)
|
||||
}
|
||||
else {
|
||||
createShift(buildPayload(), callbacks)
|
||||
}
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VDialog
|
||||
v-model="modelValue"
|
||||
max-width="600"
|
||||
@after-leave="!isEditing && resetForm()"
|
||||
>
|
||||
<VCard :title="isEditing ? 'Shift bewerken' : 'Shift toevoegen'">
|
||||
<VCardText>
|
||||
<VForm
|
||||
ref="refVForm"
|
||||
@submit.prevent="onSubmit"
|
||||
>
|
||||
<VRow>
|
||||
<VCol cols="12">
|
||||
<AppSelect
|
||||
v-model="form.time_slot_id"
|
||||
label="Time Slot"
|
||||
:items="timeSlotItems"
|
||||
:rules="[requiredValidator]"
|
||||
:error-messages="errors.time_slot_id"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12">
|
||||
<AppTextField
|
||||
v-model="form.title"
|
||||
label="Titel / Rol"
|
||||
placeholder="Tapper, Barhoofd, Stage Manager..."
|
||||
:error-messages="errors.title"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol
|
||||
cols="12"
|
||||
sm="4"
|
||||
>
|
||||
<AppTextField
|
||||
v-model="form.report_time"
|
||||
label="Aanwezig om (rapport tijd)"
|
||||
type="time"
|
||||
:error-messages="errors.report_time"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol
|
||||
cols="12"
|
||||
sm="4"
|
||||
>
|
||||
<AppTextField
|
||||
v-model="form.actual_start_time"
|
||||
label="Afwijkende starttijd"
|
||||
type="time"
|
||||
hint="Leeg = time slot tijd"
|
||||
persistent-hint
|
||||
:error-messages="errors.actual_start_time"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol
|
||||
cols="12"
|
||||
sm="4"
|
||||
>
|
||||
<AppTextField
|
||||
v-model="form.actual_end_time"
|
||||
label="Afwijkende eindtijd"
|
||||
type="time"
|
||||
:error-messages="errors.actual_end_time"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol
|
||||
cols="12"
|
||||
sm="6"
|
||||
>
|
||||
<AppTextField
|
||||
v-model.number="form.slots_total"
|
||||
label="Totaal slots"
|
||||
type="number"
|
||||
min="1"
|
||||
:rules="[requiredValidator]"
|
||||
:error-messages="errors.slots_total"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol
|
||||
cols="12"
|
||||
sm="6"
|
||||
>
|
||||
<AppTextField
|
||||
v-model.number="form.slots_open_for_claiming"
|
||||
label="Open voor claimen"
|
||||
type="number"
|
||||
min="0"
|
||||
:max="form.slots_total"
|
||||
:rules="[requiredValidator]"
|
||||
:error-messages="errors.slots_open_for_claiming"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12">
|
||||
<VSwitch
|
||||
v-model="form.is_lead_role"
|
||||
label="Dit is een leidinggevende rol"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12">
|
||||
<VSwitch
|
||||
v-model="form.allow_overlap"
|
||||
label="Overlap toegestaan"
|
||||
hint="Persoon mag meerdere shifts in hetzelfde tijdvak hebben"
|
||||
persistent-hint
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12">
|
||||
<AppTextarea
|
||||
v-model="form.instructions"
|
||||
label="Instructies"
|
||||
rows="3"
|
||||
:error-messages="errors.instructions"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12">
|
||||
<AppSelect
|
||||
v-model="form.status"
|
||||
label="Status"
|
||||
:items="statusOptions"
|
||||
:error-messages="errors.status"
|
||||
/>
|
||||
</VCol>
|
||||
</VRow>
|
||||
</VForm>
|
||||
</VCardText>
|
||||
<VCardActions>
|
||||
<VSpacer />
|
||||
<VBtn
|
||||
variant="text"
|
||||
@click="modelValue = false"
|
||||
>
|
||||
Annuleren
|
||||
</VBtn>
|
||||
<VBtn
|
||||
color="primary"
|
||||
:loading="isPending"
|
||||
@click="onSubmit"
|
||||
>
|
||||
{{ isEditing ? 'Opslaan' : 'Toevoegen' }}
|
||||
</VBtn>
|
||||
</VCardActions>
|
||||
</VCard>
|
||||
</VDialog>
|
||||
</template>
|
||||
Reference in New Issue
Block a user