This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/CalendarEvent.vue

33 lines
1.1 KiB
Vue
Raw Normal View History

2021-08-18 11:19:24 -07:00
<template>
2021-10-15 09:26:21 -07:00
<span>
<span v-if="range" class="badge bg-primary">{{ event.getRange(year) }}</span>
2021-08-18 11:19:24 -07:00
<Flag v-if="event.flag" name="" alt="" :img="`/flags/${event.flag}.png`"/>
<Icon v-else v="arrow-circle-right"/>
<T v-if="$te(`calendar.events.${eventName}`)" :params="{param: eventParam}">calendar.events.{{eventName}}</T>
<LinkedText v-else :text="eventName"/>
<a v-if="ics" :href="`/api/queer-calendar-${config.locale}-${year}-${event.getUuid()}.ics`" class="small" :aria-label="$t('crud.download') + ' .ics'" :title="$t('crud.download') + ' .ics'">
<Icon v="calendar-plus"/>
</a>
2021-10-15 09:26:21 -07:00
</span>
2021-08-18 11:19:24 -07:00
</template>
<script>
export default {
props: {
event: { required: true },
year: { 'default': () => (new Date).getFullYear() },
range: { type: Boolean },
ics: { type: Boolean },
2021-08-18 11:19:24 -07:00
},
computed: {
eventName() {
return this.event.name.split('$')[0];
},
eventParam() {
return this.event.name.split('$')[1] || null;
},
}
2021-08-18 11:19:24 -07:00
}
</script>