167 lines
5.7 KiB
Vue
167 lines
5.7 KiB
Vue
<template>
|
||
<div class="container">
|
||
<Homepage/>
|
||
<h1>
|
||
<Icon v="books"/>
|
||
Niebinarna polszczyzna w tekstach kultury
|
||
</h1>
|
||
|
||
<LiteratureMenu all/>
|
||
|
||
<section>
|
||
<ul class="list-unstyled">
|
||
<li v-for="template in templates" v-if="template.sources.length" :class="separators.includes(template.name()) ? 'mt-3 mb-1' : 'my-1'">
|
||
<a :href="'#' + toId(template.name())">
|
||
<strong>{{ template.name() }}</strong>
|
||
–
|
||
<small>{{ template.description }}</small>
|
||
</a>
|
||
</li>
|
||
<li v-for="(sources, multiple) in sourcesForMultipleForms" :class="separators.includes(multiple) ? 'mt-3 mb-1' : 'my-1'">
|
||
<a :href="'#' + toId(multiple)">
|
||
<strong>{{ multiple.replace(/&/g, ' lub ') }}</strong>
|
||
–
|
||
<small>Formy wymienne</small>
|
||
</a>
|
||
</li>
|
||
<li class="mt-3 mb-1">
|
||
<a href="#inne">
|
||
Inne formy
|
||
</a>
|
||
</li>
|
||
</ul>
|
||
</section>
|
||
|
||
<section>
|
||
<Share title="Niebinarna polszczyzna w tekstach kultury"/>
|
||
</section>
|
||
|
||
<section>
|
||
<span class="mr-2 mb-3">
|
||
<Icon v="filter"/>
|
||
Filtruj:
|
||
</span>
|
||
<div class="d-inline-block d-md-none">
|
||
<div class="btn-group-vertical">
|
||
<button v-for="(config, type) in sourceTypes"
|
||
:class="['btn', type === filter ? 'btn-primary' : 'btn-outline-primary']"
|
||
@click="filter = type"
|
||
>
|
||
<Icon :v="config.icon"/>
|
||
{{ config.text }}
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<div class="d-none d-md-inline-block">
|
||
<div class="btn-group">
|
||
<button v-for="(config, type) in sourceTypes"
|
||
:class="['btn', type === filter ? 'btn-primary' : 'btn-outline-primary']"
|
||
@click="filter = type"
|
||
>
|
||
<Icon :v="config.icon"/>
|
||
{{ config.text }}
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section v-for="template in templates" v-if="template.sources.length">
|
||
<h2 class="h4" :id="toId(template.name())">
|
||
<nuxt-link :to="'/' + template.pronoun()">
|
||
{{ template.description }}
|
||
<small>({{ template.name() }})</small>
|
||
</nuxt-link>
|
||
</h2>
|
||
|
||
<ul class="list-unstyled">
|
||
<li v-for="source in template.sources">
|
||
<Source :name="source" :filter="filter"/>
|
||
</li>
|
||
</ul>
|
||
</section>
|
||
|
||
<section v-for="(sources, multiple) in sourcesForMultipleForms">
|
||
<h2 class="h4" :id="toId(multiple)">
|
||
<nuxt-link :to="'/' + multiple">
|
||
Formy wymienne
|
||
<small>({{ multiple.replace(/&/g, ' lub ') }})</small>
|
||
</nuxt-link>
|
||
</h2>
|
||
|
||
<ul class="list-unstyled">
|
||
<li v-for="source in sources">
|
||
<Source :name="source" :filter="filter"/>
|
||
</li>
|
||
</ul>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="h4" id="inne">
|
||
Inne formy
|
||
</h2>
|
||
|
||
<ul class="list-unstyled">
|
||
<li v-for="source in otherSources">
|
||
<Source :name="source" :filter="filter"/>
|
||
</li>
|
||
</ul>
|
||
</section>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { templates, sources, sourcesForMultipleForms, separators } from '../src/data'
|
||
import { Source } from "../src/classes";
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
templates: templates,
|
||
sourcesForMultipleForms: sourcesForMultipleForms,
|
||
sourceTypes: Source.TYPES,
|
||
filter: '',
|
||
separators: separators,
|
||
};
|
||
},
|
||
mounted() {
|
||
if (process.client && window.location.hash) {
|
||
const $hashEl = this.$el.querySelector(window.location.hash);
|
||
if ($hashEl) {
|
||
$hashEl.scrollIntoView();
|
||
}
|
||
}
|
||
},
|
||
head() {
|
||
const title = 'Niebinarna polszczyzna w tekstach kultury';
|
||
return {
|
||
title: title,
|
||
meta: [
|
||
{ hid: 'og:title', property: 'og:title', content: title },
|
||
{ hid: 'twitter:title', property: 'twitter:title', content: title },
|
||
],
|
||
}
|
||
},
|
||
computed: {
|
||
otherSources() {
|
||
const other = new Set(Object.keys(sources));
|
||
for (let template of Object.values(this.templates)) {
|
||
for (let source of template.sources) {
|
||
other.delete(source);
|
||
}
|
||
}
|
||
for (let sources of Object.values(this.sourcesForMultipleForms)) {
|
||
for (let source of sources) {
|
||
other.delete(source);
|
||
}
|
||
}
|
||
return other;
|
||
},
|
||
},
|
||
methods: {
|
||
toId(str) {
|
||
return str.replace(/\//g, '-').replace(/&/g, '_');
|
||
}
|
||
},
|
||
}
|
||
</script>
|