2018-09-16 16:15:02 +02:00
|
|
|
<template>
|
|
|
|
<x-column :name="name" :column="column" :is-stacked="isStacked">
|
|
|
|
<span slot="header">%fa:at%{{ name }}</span>
|
|
|
|
|
2018-10-19 19:49:39 +02:00
|
|
|
<x-mentions ref="tl" @parentFocus="parentFocus"/>
|
2018-09-16 16:15:02 +02:00
|
|
|
</x-column>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import XColumn from './deck.column.vue';
|
|
|
|
import XMentions from './deck.mentions.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XColumn,
|
|
|
|
XMentions
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
column: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
isStacked: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
name(): string {
|
|
|
|
if (this.column.name) return this.column.name;
|
|
|
|
return '%i18n:common.deck.mentions%';
|
|
|
|
}
|
|
|
|
},
|
2018-10-19 19:49:39 +02:00
|
|
|
|
|
|
|
methods: {
|
|
|
|
focus() {
|
|
|
|
this.$refs.tl.focus();
|
|
|
|
},
|
|
|
|
|
|
|
|
parentFocus(direction) {
|
|
|
|
this.$emit('parentFocus', direction);
|
|
|
|
},
|
|
|
|
}
|
2018-09-16 16:15:02 +02:00
|
|
|
});
|
|
|
|
</script>
|