fchat-rising/site/character_page/kink.vue

61 lines
2.4 KiB
Vue
Raw Normal View History

<template>
<div class="character-kink" :class="kinkClasses" :id="kinkId" :title="kink.description" @click="toggleSubkinks" :data-custom="customId">
<i v-show="kink.hasSubkinks" class="fa" :class="{'fa-minus': !listClosed, 'fa-plus': listClosed}"></i>
<i v-show="!kink.hasSubkinks && kink.isCustom" class="fa fa-dot-circle-o custom-kink-icon"></i>
<span class="kink-name">{{ kink.name }}</span>
<template v-if="kink.hasSubkinks">
<div class="subkink-list" :class="{closed: this.listClosed}">
<kink v-for="subkink in kink.subkinks" :kink="subkink" :key="kink.id" :comparisons="comparisons"
:highlights="highlights"></kink>
</div>
</template>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import Component from 'vue-class-component';
import {Prop} from 'vue-property-decorator';
import {DisplayKink} from './interfaces';
@Component({
name: 'kink'
})
export default class KinkView extends Vue {
@Prop({required: true})
readonly kink: DisplayKink;
@Prop({required: true})
readonly highlights: {[key: number]: boolean};
@Prop({required: true})
readonly comparisons: {[key: number]: string | undefined};
listClosed = true;
toggleSubkinks(): void {
if(!this.kink.hasSubkinks)
return;
this.listClosed = !this.listClosed;
}
get kinkId(): number {
return this.kink.isCustom ? -this.kink.id : this.kink.id;
}
get kinkClasses(): {[key: string]: boolean} {
const classes: {[key: string]: boolean} = {
'stock-kink': !this.kink.isCustom,
'custom-kink': this.kink.isCustom,
highlighted: !this.kink.isCustom && this.highlights[this.kink.id],
subkink: this.kink.hasSubkinks
};
classes[`kink-id-${this.kinkId}`] = true;
classes[`kink-group-${this.kink.group}`] = true;
if(!this.kink.isCustom && typeof this.comparisons[this.kink.id] !== 'undefined')
classes[`comparison-${this.comparisons[this.kink.id]}`] = true;
return classes;
}
get customId(): number | undefined {
return this.kink.isCustom ? this.kink.id : undefined;
}
}
</script>