owltide/components/DiffScheduleEventSlot.vue

46 lines
1 KiB
Vue
Raw Permalink Normal View History

<!--
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
SPDX-License-Identifier: AGPL-3.0-or-later
-->
<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="Locations"
:before="slot.serverLocationIds"
:after="slot.locationIds"
:entities="schedule.locations"
:state
/>
<DiffFieldSetEntityId
title="Assigned"
:before="slot.serverAssigned"
:after="slot.assigned"
:entities="usersStore.users"
:state
/>
</div>
</template>
<script lang="ts" setup>
defineProps<{
schedule: ClientSchedule,
slot: ClientScheduleEventSlot,
state: "deleted" | "created" | "modified",
}>();
const usersStore = useUsersStore();
</script>