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/Header.vue

415 lines
16 KiB
Vue
Raw Normal View History

2020-09-11 03:17:29 -07:00
<template>
2021-06-16 07:08:38 -07:00
<div v-if="config.header" class="mb-4">
<header>
2021-05-13 03:09:08 -07:00
<div class="d-none d-lg-flex justify-content-between align-items-center flex-row nav-custom btn-group mb-0">
<nuxt-link v-for="link in links" :key="link.link" :to="link.link" :class="`nav-item btn btn-sm ${isActiveRoute(link) ? 'active' : ''} ${link.header ? 'flex-grow-0' : ''}`">
<h1 v-if="link.header" class="text-nowrap">
2020-09-29 07:27:37 -07:00
<Icon v="tags"/>
<span class="higher"><T>title</T></span>
2021-05-13 03:09:08 -07:00
</h1>
<template v-else>
2021-05-03 07:15:48 -07:00
<Icon :v="link.icon" size="1.6"/>
<br/>
<span class="text-nowrap"><Spelling :text="link.text"/></span>
2021-05-13 03:09:08 -07:00
</template>
</nuxt-link>
<div class="nav-item flex-grow-0">
<VersionDropdown end/>
</div>
2020-09-29 07:27:37 -07:00
</div>
2021-05-13 03:09:08 -07:00
<div class="d-block d-lg-none">
<div class="text-center mb-3">
<nuxt-link to="/">
<h1 class="text-nowrap">
<Icon v="tags"/>
<span class="higher"><T>title</T></span>
</h1>
</nuxt-link>
<VersionDropdown/>
</div>
2021-01-22 14:54:24 -08:00
<div class="btn-group-vertical d-flex nav-custom mb-2">
2020-09-23 12:34:37 -07:00
<nuxt-link v-for="link in links" :key="link.link" :to="link.link" :class="`btn btn-sm ${isActiveRoute(link) ? 'active' : ''}`">
2020-09-23 11:34:35 -07:00
<Icon :v="link.icon"/>
<Spelling :text="link.textLong || link.text"/>
2020-09-23 11:34:35 -07:00
</nuxt-link>
</div>
</div>
2021-01-21 11:15:55 -08:00
<div :class="['hamburger-menu']" :style="`opacity: ${hamburgerShown ? 1 : 0}`">
<button :class="['btn btn-outline-secondary btn-hamburger', hamburgerActive ? 'active' : '']"
@click.stop="hamburgerActive = !hamburgerActive"
>
<Icon v="bars"/>
</button>
<div :class="['bg-white border p-3', hamburgerActive ? '' : 'd-none']">
2021-03-01 13:35:03 -08:00
<div class="btn-group-vertical d-flex nav-custom nav-custom-start mb-2">
2021-01-21 11:15:55 -08:00
<nuxt-link v-for="link in links" :key="link.link" :to="link.link" :class="`btn btn-sm ${isActiveRoute(link) ? 'active' : ''}`">
<Icon :v="link.icon"/>
<Spelling :text="link.textLong || link.text"/>
2021-01-21 11:15:55 -08:00
</nuxt-link>
</div>
</div>
</div>
2021-06-16 07:08:38 -07:00
</header>
2021-07-24 01:30:01 -07:00
<!-- a banner for every occasion ;)
2021-07-22 12:49:17 -07:00
<div v-if="config.locale === 'pl' && new Date() < new Date(2021, 6, 23, 20, 0, 0)" class="container">
<div class="alert alert-success mb-0 clearfix">
<Icon v="glass-cheers" size="4" class="float-start me-3"/>
<p class="h3">Pierwsze urodziny zaimków.pl i Słownika Neutratywów</p>
<p class="mb-0">
Świętuj z nami na naszym
<a href="https://www.facebook.com/events/338852937742883" target="_blank" rel="noopener">
urodzinowym live streamie!
</a>
2021-07-22 12:54:48 -07:00
<small>(piątek, 23 lipca, o 19:00)</small>
2021-07-22 12:49:17 -07:00
</p>
</div>
</div>
2021-07-24 01:30:01 -07:00
-->
2021-06-16 07:08:38 -07:00
<div v-if="locales[config.locale].published === false" class="alert alert-warning mb-0">
<Icon v="exclamation-triangle"/>
This language version is still under construction!
</div>
2021-06-16 07:08:38 -07:00
<div v-show="showCensus" class="alert alert-info mb-0">
2021-03-01 13:35:03 -08:00
<a href="#" class="float-end" @click.prevent="dismissCensus">
2021-02-01 03:12:16 -08:00
<Icon v="times"/>
</a>
2021-05-13 03:09:08 -07:00
<Icon v="user-chart" size="2" class="d-inline-block float-start me-3 mt-2"/>
2021-02-02 09:00:56 -08:00
<T silent>census.banner</T>
2021-02-01 03:12:16 -08:00
</div>
2021-06-16 07:08:38 -07:00
<div v-if="$user() && $user().bannedReason" class="alert alert-danger mb-0 container">
<p class="h4 mb-2">
<Icon v="ban"/>
<T>ban.header</T>
</p>
<p >
<T>ban.reason</T>:
{{$user().bannedReason}}
</p>
<p>
<T>ban.termsIntro</T>
</p>
<blockquote class="small">
It is forbidden to post on the Service any Content that might break the law or violate social norms,
including but not limited to:
2021-08-12 03:14:34 -07:00
<template v-for="(term, i) in forbidden"><span :class="[$user().bannedTerms.includes(term) ? 'fw-bold' : '']">{{term}}</span><template v-if="i !== forbidden.length - 1">, </template></template>.
2021-06-16 07:08:38 -07:00
</blockquote>
</div>
</div>
2020-10-28 08:22:29 -07:00
<header v-else class="mb-4">
<div class="container">
<h1 class="text-nowrap p-4">
<nuxt-link to="/">
<Icon v="tags"/>
<T>title</T>
</nuxt-link>
</h1>
</div>
2020-10-28 08:22:29 -07:00
</header>
2020-09-11 03:17:29 -07:00
</template>
<script>
import { mapState } from 'vuex'
2021-02-01 03:12:16 -08:00
import {DateTime} from "luxon";
2021-08-12 03:14:34 -07:00
import forbidden from "../src/forbidden";
2020-09-11 03:17:29 -07:00
export default {
2021-01-21 11:15:55 -08:00
data() {
return {
hamburgerActive: false,
hamburgerShown: false,
2021-02-01 03:12:16 -08:00
censusDismissed: false,
2021-08-12 03:14:34 -07:00
forbidden,
2021-01-21 11:15:55 -08:00
};
},
computed: {
...mapState([
'user',
]),
links() {
const links = [];
links.push({
2021-05-13 03:09:08 -07:00
header: true,
link: '/',
icon: 'home',
text: this.$t('home.header'),
textLong: this.$t('home.headerLong'),
});
2020-09-28 09:29:13 -07:00
2021-08-06 04:30:58 -07:00
if (this.config.pronouns.enabled) {
links.push({
link: '/' + this.config.pronouns.route,
icon: 'tags',
text: this.$t('pronouns.header'),
textLong: this.$t('pronouns.headerLong'),
extra: ['all', '/' + this.config.pronouns.any, this.config.pronouns.avoiding ? '/' + this.config.pronouns.avoiding : null],
2021-08-06 04:30:58 -07:00
});
}
if (this.config.sources.enabled) {
links.push({
link: '/' + this.config.sources.route,
icon: 'books',
text: this.$t('sources.header'),
textLong: this.$t('sources.headerLong'),
});
}
2020-09-28 09:29:13 -07:00
if (this.config.nouns.enabled) {
const extras = [];
for (let subroute of this.config.nouns.subroutes || []) {
extras.push(`/${this.config.nouns.route}/${subroute}`);
}
if (this.config.nouns.inclusive.enabled) {
extras.push(`/${this.config.nouns.route}/${this.config.nouns.inclusive.route}`);
}
if (this.config.nouns.terms.enabled) {
extras.push(`/${this.config.nouns.route}/${this.config.nouns.terms.route}`);
}
links.push({
link: '/' + this.config.nouns.route,
2020-12-18 08:32:18 -08:00
icon: 'book',
text: this.$t('nouns.header'),
textLong: this.$t('nouns.headerLong'),
extra: extras,
});
}
2020-09-28 09:29:13 -07:00
if (this.config.names.enabled) {
links.push({
link: '/' + this.config.names.route,
icon: 'signature',
text: this.$t('names.header'),
textLong: this.$t('names.headerLong'),
});
}
2020-09-29 08:59:23 -07:00
2021-05-17 16:01:33 -07:00
if (this.config.faq.enabled && !this.config.links.split) {
links.push({
link: '/' + this.config.faq.route,
icon: 'map-marker-question',
text: this.$t('faq.header'),
textLong: this.$t('faq.headerLong'),
});
}
2020-10-10 09:31:31 -07:00
if (this.config.links.enabled) {
links.push({
link: '/' + this.config.links.route,
icon: 'bookmark',
text: this.$t('links.header'),
textLong: this.$t('links.headerLong'),
2021-05-13 04:54:13 -07:00
extra: [
'/' + this.config.links.academicRoute,
'blog',
'blogEntry',
'/' + this.config.links.mediaRoute,
2021-05-17 16:01:33 -07:00
this.config.links.split ? '/' + this.config.faq.route : '',
2021-05-13 04:54:13 -07:00
'/' + this.config.people.route,
2021-08-14 01:42:49 -07:00
this.config.calendar ? '/' + this.config.calendar.route : '',
2021-05-13 04:54:13 -07:00
],
});
}
2020-09-29 10:11:46 -07:00
if (this.config.english.enabled) {
links.push({
link: '/' + this.config.english.route,
icon: 'globe-americas',
text: this.$t('english.header'),
textLong: this.$t('english.headerLong'),
});
}
2020-12-18 02:34:58 -08:00
if (this.config.census.enabled) {
links.push({
link: '/' + this.config.census.route,
icon: 'user-chart',
text: this.$t('census.header'),
textLong: this.$t('census.headerLong'),
});
}
if (this.config.contact.enabled) {
links.push({
link: '/' + this.config.contact.route,
icon: 'comment-alt-smile',
text: this.$t('contact.header'),
2021-01-12 11:06:59 -08:00
extra: ['/' + this.config.contact.team.route],
});
}
2020-09-28 09:29:13 -07:00
if (this.config.user.enabled) {
links.push({
link: '/' + this.config.user.route,
icon: 'user',
text: this.user ? '@' + this.user.username : this.$t('user.header'),
textLong: this.user ? '@' + this.user.username : this.$t('user.headerLong'),
extra: ['/editor', this.$user() ? '/@' + this.$user().username : null],
});
}
2020-10-13 12:49:08 -07:00
return links;
},
2021-02-01 03:12:16 -08:00
showCensus() {
if (!process.client) {
return false;
}
const finished = !!parseInt(window.localStorage.getItem('census-finished') || 0);
const dismissed = !!parseInt(window.localStorage.getItem('census-dismissed') || 0);
const alreadyIn = this.$route.path === '/' + this.config.census.route;
if (!this.config.census.enabled || finished || dismissed || this.censusDismissed || alreadyIn) {
return false;
}
const start = DateTime.fromISO(this.config.census.start).toLocal();
const end = DateTime.fromISO(this.config.census.end).toLocal();
const now = DateTime.utc().setZone(this.config.format.timezone);
return now >= start && now <= end;
},
2020-09-23 11:34:35 -07:00
},
methods: {
isActiveRoute(link) {
return decodeURIComponent(this.$route.path) === link.link
2020-10-24 12:50:08 -07:00
|| (link.extra || []).includes(this.$route.name)
|| (link.extra || []).includes(decodeURIComponent(this.$route.path));
2020-09-23 11:34:35 -07:00
},
2021-01-21 11:15:55 -08:00
documentClicked() {
if (this.hamburgerActive) {
this.hamburgerActive = false
}
},
updateShown() {
const st = document.body.scrollTop || document.querySelector('html').scrollTop;
this.hamburgerShown = st > 300;
},
2021-02-01 03:12:16 -08:00
dismissCensus() {
window.localStorage.setItem('census-dismissed', '1');
this.censusDismissed = true;
}
2021-01-21 11:15:55 -08:00
},
created() {
if (process.client) {
document.addEventListener('click', this.documentClicked);
this.updateShown();
window.addEventListener('scroll', this.updateShown);
}
},
destroyed() {
if (process.client) {
document.removeEventListener('click', this.documentClicked);
document.removeEventListener('scroll', this.updateShown);
}
2020-09-23 11:34:35 -07:00
},
2020-09-11 03:17:29 -07:00
}
</script>
2020-09-23 11:34:35 -07:00
<style lang="scss" scoped>
@import "assets/variables";
2020-09-23 11:34:35 -07:00
2021-05-03 07:15:48 -07:00
header {
2021-05-13 03:09:08 -07:00
padding: 0;
2021-05-03 07:15:48 -07:00
width: 100%;
}
2021-05-13 03:09:08 -07:00
@include media-breakpoint-down('lg', $grid-breakpoints) {
2020-12-23 12:47:51 -08:00
h1 {
font-size: 2rem;
}
2020-09-23 11:34:35 -07:00
.nav-custom {
.btn {
2021-03-01 13:35:03 -08:00
border-inline-start: 1px solid $gray-500;
2020-09-23 11:34:35 -07:00
border-radius: 0;
&:hover, &:focus, &.active {
2021-03-01 13:35:03 -08:00
border-inline-start: 3px solid $primary;
padding-inline-start: calc(#{$btn-padding-x-sm} - 2px);
2020-09-23 11:34:35 -07:00
color: $primary;
}
text-align: left;
}
}
2021-05-13 03:09:08 -07:00
.hamburger-menu {
position: fixed;
top: $spacer;
left: $spacer;
z-index: 1030;
transition: all .5s ease-in-out;
.btn-hamburger {
&:not(:active):not(:hover):not(:focus):not(.active) {
background-color: $white;
}
&.active {
background-color: $secondary;
}
}
}
2020-09-23 11:34:35 -07:00
}
2021-03-01 13:35:03 -08:00
.nav-custom-start {
2021-01-21 11:15:55 -08:00
.btn {
2021-03-01 13:35:03 -08:00
border-inline-start: 1px solid $gray-500;
2021-01-21 11:15:55 -08:00
border-radius: 0;
&:hover, &:focus, &.active {
2021-03-01 13:35:03 -08:00
border-inline-start: 3px solid $primary;
padding-inline-start: calc(#{$btn-padding-x-sm} - 2px);
2021-01-21 11:15:55 -08:00
color: $primary;
}
text-align: left;
}
}
2021-05-13 03:09:08 -07:00
@include media-breakpoint-up('lg', $grid-breakpoints) {
header {
position: fixed;
z-index: 9999;
top: 0;
left: 0;
backdrop-filter: blur(12px);
@supports not (backdrop-filter: blur(12px)) {
background-color: $white;
}
}
2021-03-01 13:35:03 -08:00
.nav-custom:not(.nav-custom-start) {
2021-05-13 03:09:08 -07:00
.nav-item {
2020-09-23 11:34:35 -07:00
border-bottom: 1px solid $gray-500;
border-radius: 0;
2021-05-13 03:09:08 -07:00
&.btn {
&:hover, &:focus, &.active {
border-bottom: 3px solid $primary;
padding-bottom: calc(#{$btn-padding-y-sm} - 2px);
color: $primary;
}
}
height: $header-height;
padding-top: 1.2rem;
margin-top: 3px;
&:first-child, &:last-child {
padding-left: 1rem;
padding-right: 1rem;
2020-09-23 11:34:35 -07:00
}
}
}
2021-05-13 03:09:08 -07:00
.hamburger-menu {
display: none;
2020-12-25 05:38:23 -08:00
}
}
2021-01-21 11:15:55 -08:00
2021-05-13 03:09:08 -07:00
h1 {
text-decoration: none;
.higher {
position: relative;
top: -0.1em;
2021-01-21 11:15:55 -08:00
}
}
2020-09-23 11:34:35 -07:00
</style>