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

46 lines
1.1 KiB
Vue
Raw Normal View History

<template>
2020-12-18 09:22:35 -08:00
<a v-if="link" :href="`/${config.nouns.route}#${config.nouns.terms.hashNamespace}/${link}`" :title="alt">
<img :src="img" alt=""/>
{{ name }}
</a>
<span v-else :title="alt">
<img :src="img" alt=""/>
{{ name }}
</span>
</template>
<script>
export default {
props: {
name: { required: true },
alt: { required: true },
img: { required: true },
2020-12-18 09:22:35 -08:00
terms: { 'default': [] },
},
computed: {
link() {
if (!this.config.nouns.terms.enabled) {
return null;
}
for (let term of this.terms) {
if (term.term.toLowerCase().includes(this.name.toLowerCase())) {
return this.name;
}
if (term.original.toLowerCase().includes(this.alt.toLowerCase())) {
return this.alt;
}
}
return null;
},
2020-12-08 14:14:40 -08:00
},
}
</script>
<style lang="scss" scoped>
img {
height: 1rem;
}
</style>