owltide/components/DiffScheduleShiftSlot.vue
Hornwitser 1d2edf7535 Add dialog showing diff of changes to save
Add a save dialog at the bottom of the screen that is present whenever
there are unsaved changes.  This dialog provides a diff between the
client and server state so that the user can easily confirm the changes
they are about to make are the correct changes before applying them to
the server.
2025-06-30 15:43:15 +02:00

34 lines
779 B
Vue

<template>
<div>
<h5>{{ state }} slot at {{ slot.start.toFormat("yyyy-LL-dd HH:mm") }}</h5>
<DiffFieldString
title="Start"
:before='slot.serverStart.toFormat("yyyy-LL-dd HH:mm")'
:after='slot.start.toFormat("yyyy-LL-dd HH:mm")'
:state
/>
<DiffFieldString
title="End"
:before='slot.serverEnd.toFormat("yyyy-LL-dd HH:mm")'
:after='slot.end.toFormat("yyyy-LL-dd HH:mm")'
:state
/>
<DiffFieldSetEntityId
title="Assigned"
:before="slot.serverAssigned"
:after="slot.assigned"
:entities="usersStore.users"
:state
/>
</div>
</template>
<script lang="ts" setup>
defineProps<{
schedule: ClientSchedule,
slot: ClientScheduleShiftSlot,
state: "deleted" | "created" | "modified",
}>();
const usersStore = useUsersStore();
</script>