ovdashboard/ui/src/components/calendar/EventItem.vue

58 lines
1.4 KiB
Vue
Raw Normal View History

2022-09-14 23:04:26 +00:00
<template>
<v-list-item class="pa-0" three-line>
2022-09-14 23:14:44 +00:00
<EventDate :date="event.start" />
2022-09-14 23:04:26 +00:00
<v-list-item-content>
<v-list-item-title class="text-h6 text-md-h5 mt-0 mb-1">
{{ event.summary }}
</v-list-item-title>
<v-list-item-subtitle
v-if="event.description"
class="text-subtitle-2 text-md-subtitle-1 mt-0 mb-2"
>
{{ event.description }}
</v-list-item-subtitle>
<v-list-item-subtitle
2022-09-14 23:55:13 +00:00
class="
thw-heading-font
blue-grey--text
text--darken-1
font-weight-bold
ma-0
"
2022-09-14 23:04:26 +00:00
>
{{ data_string }}
</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
</template>
<script lang="ts">
import { Component, Prop, Vue } from "vue-property-decorator";
import { DateTime } from "luxon";
import Event from "./event";
2022-09-14 23:14:44 +00:00
import EventDate from "./EventDate.vue";
2022-09-14 23:04:26 +00:00
2022-09-14 23:14:44 +00:00
@Component({
components: {
EventDate,
},
})
2022-09-14 23:04:26 +00:00
export default class EventItem extends Vue {
@Prop()
private readonly event!: Event;
private get data_string(): string {
const locale_string = this.event.start
.setLocale(navigator.language)
.toLocaleString(DateTime.DATETIME_MED);
// TODO: if applicable, include days and/or minutes.
const duration_string = this.event.duration.shiftTo("hours").toHuman();
return locale_string + " (" + duration_string + ")";
}
}
</script>
<style>
</style>