mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-11-03 10:53:26 -05:00
47 lines
1.4 KiB
Vue
47 lines
1.4 KiB
Vue
<template>
|
|
<div v-if="$config.sources.enabled && Object.keys(sources).length">
|
|
<h2 class="h4">
|
|
<nuxt-link :to="`/${$config.sources.route}`">
|
|
<Icon v="books" />
|
|
<T>sources.headerLong</T><T>quotation.colon</T>
|
|
</nuxt-link>
|
|
</h2>
|
|
|
|
<section v-for="(optionSources, option) in sources" v-if="optionSources">
|
|
<h3 class="h5">
|
|
<nuxt-link :to="`/${option}`">
|
|
<span v-if="option.includes('&')">
|
|
<T>pronouns.alt.header</T>
|
|
<small>({{ option.replace(/&/g, glue) }})</small>
|
|
</span>
|
|
<span v-else-if="option && getPronoun(pronouns, option)">
|
|
{{ getPronoun(pronouns, option).description }}
|
|
<small>({{ getPronoun(pronouns, option).name(glue) }})</small>
|
|
</span>
|
|
</nuxt-link>
|
|
</h3>
|
|
|
|
<SourceList :pronoun="pronoun" :sources="optionSources" />
|
|
</section>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { pronouns } from '../src/data.js';
|
|
import { getPronoun } from '../src/buildPronoun.js';
|
|
|
|
export default {
|
|
props: {
|
|
pronoun: { },
|
|
sources: { required: true },
|
|
},
|
|
data() {
|
|
return {
|
|
pronouns,
|
|
getPronoun,
|
|
glue: ` ${this.$t('pronouns.or')} `,
|
|
};
|
|
},
|
|
};
|
|
</script>
|