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.
2020-10-11 05:50:33 -07:00
|
|
|
<template>
|
|
|
|
<span>
|
|
|
|
<template v-if="template">
|
|
|
|
<a href="#" @click.prevent="visible = !visible">{{ word }}</a>
|
|
|
|
<ul v-if="visible" class="list-unstyled small m-2 p-2 border">
|
|
|
|
<li v-for="(declined, c) in template.decline(word, plural)">
|
|
|
|
<strong>{{c}} <small>({{cases[c]}})</small></strong> {{ declined.join(' / ') }}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</template>
|
|
|
|
<template v-else>{{ word }}</template>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { nounDeclensionTemplates } from "../src/data";
|
2020-10-12 06:49:33 -07:00
|
|
|
import cases from "../data/nouns/cases";
|
2020-10-11 05:50:33 -07:00
|
|
|
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
word: { required: true },
|
|
|
|
plural: { type: Boolean },
|
|
|
|
singularOptions: { },
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
template: this.findTemplate(),
|
|
|
|
cases,
|
|
|
|
visible: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
findTemplate() {
|
|
|
|
let longestMatch = 0;
|
|
|
|
let templates = [];
|
|
|
|
for (let t of nounDeclensionTemplates) {
|
|
|
|
const matchLength = t.matches(this.word, this.plural);
|
|
|
|
if (matchLength === 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (matchLength > longestMatch) {
|
|
|
|
longestMatch = matchLength;
|
|
|
|
templates = [t];
|
|
|
|
} else if (matchLength === longestMatch) {
|
|
|
|
templates.push(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!templates.length) {
|
|
|
|
return null;
|
|
|
|
} else if (templates.length === 1) {
|
|
|
|
return templates[0];
|
|
|
|
} else if (this.plural && this.singularOptions) {
|
|
|
|
for (let t of templates) {
|
|
|
|
for (let s of this.singularOptions) {
|
|
|
|
if (t.matches(s)) {
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return templates[0];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|