PronounsPage/components/ExpandableList.vue
2023-02-24 17:27:48 +01:00

89 lines
2.3 KiB
Vue

<template>
<ul>
<li v-for="(el, i) in values">
<template v-if="allShown || i < showLimit">
<slot v-bind:el="el" v-bind:i="i">
{{ el }}
</slot>
</template>
</li>
<li v-if="!allShown && hiddenCount > 0" class="small">
<span v-if="static">
<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>
<br/>
<Icon v="spacer"/>
<T>profile.expendableList.show</T>
</a>
</li>
</ul>
</template>
<script>
import {mapState} from "vuex";
export default {
props: {
values: { required: true },
limit: { required: true },
static: { type: Boolean },
expand: { type: Boolean },
},
data() {
return this.calcData();
},
methods: {
calcData() {
let showLimit = this.values.length;
let hiddenCount = 0;
const limit = this.reducedItems ? 4 : 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,
}
},
},
mounted() {
// not sure why that's necessary, but screw it…
if (!process.client) { return; }
for (let [key, value] of Object.entries(this.calcData())) {
this[key] = value;
}
},
watch: {
expand(v) {
if (v) {
this.allShown = true;
}
},
reducedItems() {
for (let [key, value] of Object.entries(this.calcData())) {
this[key] = value;
}
}
},
computed: {
...mapState([
'reducedItems',
]),
}
}
</script>