PronounsPage/components/ExpandableList.vue

88 lines
2.4 KiB
Vue

<template>
<ul>
<li v-for="(el, i) in values" v-if="allShown || i < showLimit" :class="itemClass">
<slot :el="el" :i="i">
{{ el }}
</slot>
</li>
<li v-show="!allShown && hiddenCount > 0" :class="[itemClass, 'small']">
<span v-if="isStatic">
<Icon v="plus-circle" />
<T :params="{ count: hiddenCount }">profile.expendableList.more</T>
</span>
<a v-else href="#" @click.prevent="allShown = true">
<Icon v="plus-circle" />
<T :params="{ count: hiddenCount }">profile.expendableList.more</T>
<template v-if="!(itemClass || '').includes('list-inline-item')">
<br>
<Icon v="spacer" />
</template>
<T>profile.expendableList.show</T>
</a>
</li>
</ul>
</template>
<script>
import { mapState } from 'vuex';
export default {
props: {
values: { required: true },
limit: { required: true },
reducedLimit: { default: 4 },
isStatic: { type: Boolean },
expand: { type: Boolean },
itemClass: {},
},
data() {
return this.calcData();
},
watch: {
expand(v) {
if (v) {
this.allShown = true;
}
},
reducedItems() {
for (const [key, value] of Object.entries(this.calcData())) {
this[key] = value;
}
},
},
mounted() {
// not sure why that's necessary, but screw it…
for (const [key, value] of Object.entries(this.calcData())) {
this[key] = value;
}
},
methods: {
calcData() {
let showLimit = this.values.length;
let hiddenCount = 0;
const limit = this.reducedItems === undefined || this.reducedItems ? this.reducedLimit : this.limit;
if (this.values.length > limit) {
showLimit = limit;
hiddenCount = this.values.length - limit;
}
if (hiddenCount === 1) {
showLimit--;
hiddenCount++;
}
return {
allShown: this.expand,
showLimit,
hiddenCount,
};
},
},
computed: {
...mapState([
'reducedItems',
]),
},
};
</script>