Sharkey/src/client/app/desktop/views/pages/deck/deck.tl-column.vue

106 lines
2.6 KiB
Vue
Raw Normal View History

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