2018-06-05 15:54:03 +02:00
|
|
|
<template>
|
2018-06-08 00:43:12 +02:00
|
|
|
<x-column :menu="menu" :name="name" :column="column" :is-stacked="isStacked">
|
2018-06-07 21:21:06 +02:00
|
|
|
<span slot="header">
|
2018-11-15 21:53:17 +01:00
|
|
|
<fa v-if="column.type == 'home'" icon="home"/>
|
|
|
|
<fa v-if="column.type == 'local'" :icon="['far', 'comments']"/>
|
|
|
|
<fa v-if="column.type == 'hybrid'" icon="share-alt"/>
|
|
|
|
<fa v-if="column.type == 'global'" icon="globe"/>
|
|
|
|
<fa v-if="column.type == 'list'" icon="list"/>
|
|
|
|
<fa v-if="column.type == 'hashtag'" icon="hashtag"/>
|
2018-06-07 21:21:06 +02:00
|
|
|
<span>{{ name }}</span>
|
|
|
|
</span>
|
2018-06-05 22:18:08 +02:00
|
|
|
|
2018-11-28 21:02:35 +01:00
|
|
|
<div class="editor" style="padding:12px" v-if="edit">
|
2018-11-08 19:44:35 +01:00
|
|
|
<ui-switch v-model="column.isMediaOnly" @change="onChangeSettings">{{ $t('is-media-only') }}</ui-switch>
|
|
|
|
<ui-switch v-model="column.isMediaView" @change="onChangeSettings">{{ $t('is-media-view') }}</ui-switch>
|
2018-06-07 21:21:06 +02:00
|
|
|
</div>
|
2018-10-19 08:03:23 +02:00
|
|
|
|
|
|
|
<x-list-tl v-if="column.type == 'list'"
|
|
|
|
:list="column.list"
|
|
|
|
:media-only="column.isMediaOnly"
|
|
|
|
:media-view="column.isMediaView"
|
|
|
|
ref="tl"
|
|
|
|
/>
|
|
|
|
<x-hashtag-tl v-else-if="column.type == 'hashtag'"
|
|
|
|
:tag-tl="$store.state.settings.tagTimelines.find(x => x.id == column.tagTlId)"
|
|
|
|
:media-only="column.isMediaOnly"
|
|
|
|
:media-view="column.isMediaView"
|
|
|
|
ref="tl"
|
|
|
|
/>
|
|
|
|
<x-tl v-else
|
|
|
|
:src="column.type"
|
|
|
|
:media-only="column.isMediaOnly"
|
|
|
|
:media-view="column.isMediaView"
|
|
|
|
ref="tl"
|
|
|
|
/>
|
2018-06-07 21:21:06 +02:00
|
|
|
</x-column>
|
2018-06-05 15:54:03 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../../i18n';
|
2018-06-05 15:54:03 +02:00
|
|
|
import XColumn from './deck.column.vue';
|
|
|
|
import XTl from './deck.tl.vue';
|
2018-06-05 22:18:08 +02:00
|
|
|
import XListTl from './deck.list-tl.vue';
|
2018-09-17 02:00:20 +02:00
|
|
|
import XHashtagTl from './deck.hashtag-tl.vue';
|
2018-06-05 15:54:03 +02:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('deck/deck.tl-column.vue'),
|
2018-06-05 15:54:03 +02:00
|
|
|
components: {
|
|
|
|
XColumn,
|
2018-06-05 22:18:08 +02:00
|
|
|
XTl,
|
2018-09-17 02:00:20 +02:00
|
|
|
XListTl,
|
|
|
|
XHashtagTl
|
2018-06-05 15:54:03 +02:00
|
|
|
},
|
|
|
|
|
2018-06-07 22:48:27 +02:00
|
|
|
props: {
|
|
|
|
column: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
isStacked: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2018-06-06 23:13:57 +02:00
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
edit: false,
|
|
|
|
menu: [{
|
2018-11-05 17:40:11 +01:00
|
|
|
icon: 'cog',
|
2018-11-08 19:44:35 +01:00
|
|
|
text: this.$t('edit'),
|
2018-06-08 04:46:45 +02:00
|
|
|
action: () => {
|
2018-06-06 23:13:57 +02:00
|
|
|
this.edit = !this.edit;
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
name(): string {
|
|
|
|
if (this.column.name) return this.column.name;
|
|
|
|
|
|
|
|
switch (this.column.type) {
|
2018-11-08 19:44:35 +01:00
|
|
|
case 'home': return this.$t('@deck.home');
|
|
|
|
case 'local': return this.$t('@deck.local');
|
|
|
|
case 'hybrid': return this.$t('@deck.hybrid');
|
|
|
|
case 'global': return this.$t('@deck.global');
|
2018-06-06 23:13:57 +02:00
|
|
|
case 'list': return this.column.list.title;
|
2018-09-17 02:00:20 +02:00
|
|
|
case 'hashtag': return this.$store.state.settings.tagTimelines.find(x => x.id == this.column.tagTlId).title;
|
2018-06-06 23:13:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
onChangeSettings(v) {
|
|
|
|
this.$store.dispatch('settings/saveDeck');
|
2018-10-19 08:03:23 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
this.$refs.tl.focus();
|
2018-10-21 09:18:02 +02:00
|
|
|
}
|
2018-06-05 22:18:08 +02:00
|
|
|
}
|
2018-06-05 15:54:03 +02:00
|
|
|
});
|
|
|
|
</script>
|