2019-10-05 19:17:18 +00:00
|
|
|
<docs>
|
|
|
|
#### Give a translated and localized text that give the starting and ending datetime for an event.
|
|
|
|
|
|
|
|
##### Start date with no ending
|
|
|
|
```vue
|
|
|
|
<EventFullDate beginsOn="2015-10-06T18:41:11.720Z" />
|
|
|
|
```
|
|
|
|
|
|
|
|
##### Start date with an ending the same day
|
|
|
|
```vue
|
|
|
|
<EventFullDate beginsOn="2015-10-06T18:41:11.720Z" endsOn="2015-10-06T20:41:11.720Z" />
|
|
|
|
```
|
|
|
|
|
|
|
|
##### Start date with an ending on a different day
|
|
|
|
```vue
|
|
|
|
<EventFullDate beginsOn="2015-10-06T18:41:11.720Z" endsOn="2032-10-06T18:41:11.720Z" />
|
|
|
|
```
|
|
|
|
</docs>
|
|
|
|
|
2019-04-03 15:29:03 +00:00
|
|
|
<template>
|
2019-09-09 07:31:08 +00:00
|
|
|
<span v-if="!endsOn">{{ beginsOn | formatDateTimeString }}</span>
|
2019-09-12 09:34:01 +00:00
|
|
|
<span v-else-if="isSameDay()">
|
2019-10-12 11:16:36 +00:00
|
|
|
{{ $t('On {date} from {startTime} to {endTime}', {date: formatDate(beginsOn), startTime: formatTime(beginsOn), endTime: formatTime(endsOn)}) }}
|
2019-09-12 09:34:01 +00:00
|
|
|
</span>
|
|
|
|
<span v-else-if="endsOn">
|
|
|
|
{{ $t('From the {startDate} at {startTime} to the {endDate} at {endTime}',
|
|
|
|
{startDate: formatDate(beginsOn), startTime: formatTime(beginsOn), endDate: formatDate(endsOn), endTime: formatTime(endsOn)}) }}
|
|
|
|
</span>
|
2019-04-03 15:29:03 +00:00
|
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Prop, Vue } from 'vue-property-decorator';
|
|
|
|
|
|
|
|
@Component
|
|
|
|
export default class EventFullDate extends Vue {
|
|
|
|
@Prop({ required: true }) beginsOn!: string;
|
|
|
|
@Prop({ required: false }) endsOn!: string;
|
|
|
|
|
|
|
|
formatDate(value) {
|
2019-09-09 07:31:08 +00:00
|
|
|
if (!this.$options.filters) return;
|
|
|
|
return this.$options.filters.formatDateString(value);
|
2019-04-03 15:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
formatTime(value) {
|
2019-09-09 07:31:08 +00:00
|
|
|
if (!this.$options.filters) return;
|
|
|
|
return this.$options.filters.formatTimeString(value);
|
2019-04-03 15:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
isSameDay() {
|
|
|
|
const sameDay = ((new Date(this.beginsOn)).toDateString()) === ((new Date(this.endsOn)).toDateString());
|
|
|
|
return this.endsOn && sameDay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|