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/pages/_.vue

112 lines
3.6 KiB
Vue
Raw Normal View History

2020-07-22 13:19:23 -07:00
<template>
<NotFound v-if="!selectedTemplate"/>
<div class="container" v-else>
<Homepage/>
<h1>
<Icon v="tag"/>
Moje zaimki to:
</h1>
<section>
<div class="alert alert-primary">
<h2 class="text-center mb-0">
<strong>{{ selectedTemplate.name() }}</strong>
</h2>
<p class="h6 small text-center mb-0 mt-2" v-if="selectedTemplate.description">
<em>
({{selectedTemplate.description}})
</em>
</p>
</div>
</section>
<section>
<h2 class="h4">
<Icon v="file-signature"/>
Przykłady użycia w zdaniu:
</h2>
<ul>
<li v-for="example in examples" class="my-1">
<span v-for="part in example.parts[selectedTemplate.plural]">
<strong v-if="part.variable">{{selectedTemplate.morphemes[part.str]}}</strong>
<span v-else>{{part.str}}</span>
</span>
</li>
<li v-for="example in examplesHonorific" class="my-1">
<span v-for="part in example.parts[selectedTemplate.pluralHonorific]">
<strong v-if="part.variable">{{selectedTemplate.morphemes[part.str]}}</strong>
<span v-else>{{part.str}}</span>
</span>
</li>
2020-07-22 13:19:23 -07:00
</ul>
</section>
2020-07-24 11:21:30 -07:00
<section v-if="selectedTemplate.history">
<div class="alert alert-info">
<Icon v="info-circle"/>
<span v-html="selectedTemplate.history"></span>
</div>
</section>
2020-07-24 05:14:37 -07:00
<section>
<Share :title="'Moje zaimki to: ' + selectedTemplate.name()"/>
</section>
2020-07-24 09:50:33 -07:00
<section v-if="getTemplate(selectedTemplate.name()) && getTemplate(selectedTemplate.name()).sources.length">
<Literature :sources="getTemplate(selectedTemplate.name()).sources"/>
2020-07-22 13:19:23 -07:00
</section>
<Separator icon="info"/>
<section class="mb-0">
<h2 class="h4">
<Icon v="info-circle"/>
O co chodzi w tej stronie?
</h2>
<About/>
<Homepage align="center"/>
</section>
</div>
</template>
<script>
import { examples, examplesHonorific, templates } from "~/src/data";
2020-07-24 09:50:33 -07:00
import { buildTemplate, getTemplate } from "../src/buildTemplate";
2020-07-22 13:19:23 -07:00
export default {
data() {
return {
examples: examples,
examplesHonorific: examplesHonorific,
2020-07-22 13:19:23 -07:00
templates: templates,
2020-07-24 09:50:33 -07:00
getTemplate: getTemplate,
2020-07-22 13:19:23 -07:00
selectedTemplate: buildTemplate(this.$route.path.substr(1)),
}
},
head() {
if (!this.selectedTemplate) {
return {};
}
const title = 'Moje zaimki to: ' + this.selectedTemplate.name();
const banner = `${process.env.baseUrl}/banner${this.$route.path}.png`;
return {
title: title,
meta: [
{ hid: 'og:title', property: 'og:title', content: title },
{ hid: 'twitter:title', property: 'twitter:title', content: title },
{ hid: 'og:logo', property: 'og:logo', content: banner },
{ hid: 'twitter:image', property: 'twitter:image', content: banner },
],
}
},
}
</script>
<style lang="scss">
</style>