mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-28 23:42:58 -04:00
100 lines
3.4 KiB
Vue
100 lines
3.4 KiB
Vue
<template>
|
|
<component :is="basic ? 'div' : 'Page'" v-if="$config.calendar?.enabled">
|
|
<div v-if="year && year.eventsByDate[day.toString()] || basic" :class="basic ? 'py-5' : ''">
|
|
<CommunityNav v-if="!basic" />
|
|
|
|
<h2 class="d-flex justify-content-between">
|
|
<span>
|
|
<Icon v="calendar-star" />
|
|
<nuxt-link :to="`/${$config.calendar.route}`"><T>calendar.headerLong</T></nuxt-link>
|
|
<small class="text-muted">({{ day }})</small>
|
|
</span>
|
|
<span v-if="basic" class="h4 mt-2">
|
|
<nuxt-link :to="`/${$config.calendar.route}`">
|
|
<Logo />
|
|
<T>domain</T>/{{ $config.calendar.route }}
|
|
</nuxt-link>
|
|
</span>
|
|
</h2>
|
|
|
|
<AdPlaceholder v-if="!basic" phkey="main-0" />
|
|
|
|
<section>
|
|
<div class="d-flex justify-content-evenly flex-column-reverse flex-md-row align-items-center align-items-md-start">
|
|
<div class="calendar-month my-3">
|
|
<h3 class="text-center">
|
|
<T>calendar.months.{{ day.month }}</T>
|
|
</h3>
|
|
<Calendar :year="year" :month="day.month" :mark="day" />
|
|
</div>
|
|
<div class="calendar-events my-3">
|
|
<h3>
|
|
<DateWords :day="day" />
|
|
</h3>
|
|
<ul class="list-unstyled mb-0">
|
|
<!-- @vue-ignore -->
|
|
<li v-for="event in year.eventsByDate[day.toString()]" class="mb-2">
|
|
<CalendarEvent :key="event.name" :event="event" :year="/* @ts-ignore */ year.year" ics />
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<template v-if="!basic">
|
|
<AdPlaceholder :phkey="['content-1', 'content-mobile-1']" />
|
|
<CalendarExtra :day="day" />
|
|
|
|
<Separator icon="heart" />
|
|
<Support />
|
|
|
|
<section>
|
|
<Share :title="$t('calendar.header')" />
|
|
</section>
|
|
</template>
|
|
</div>
|
|
<NotFound v-else />
|
|
</component>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { head } from '../src/helpers.ts';
|
|
import { calendar } from '../src/calendar/calendar.ts';
|
|
import { Day } from '../src/calendar/helpers.ts';
|
|
|
|
export default Vue.extend({
|
|
layout({ route }) {
|
|
return route.query.layout === 'basic' ? 'basic' : 'default';
|
|
},
|
|
data() {
|
|
const day = new Day(
|
|
parseInt(this.$route.params.year),
|
|
parseInt(this.$route.params.month),
|
|
parseInt(this.$route.params.day),
|
|
);
|
|
|
|
return {
|
|
day,
|
|
year: calendar.getYear(day.year),
|
|
basic: this.$route.query.layout === 'basic',
|
|
};
|
|
},
|
|
head() {
|
|
return head({
|
|
title: this.$t('calendar.headerLong'),
|
|
banner: `calendar/${this.day}.png`,
|
|
}, this.$translator);
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.calendar-month {
|
|
width: min(18rem, 100%);
|
|
}
|
|
.calendar-events {
|
|
width: min(20rem, 100%);
|
|
}
|
|
</style>
|