summaryrefslogtreecommitdiff
path: root/packages/client/src/ui/deck/tl-column.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/ui/deck/tl-column.vue')
-rw-r--r--packages/client/src/ui/deck/tl-column.vue137
1 files changed, 137 insertions, 0 deletions
diff --git a/packages/client/src/ui/deck/tl-column.vue b/packages/client/src/ui/deck/tl-column.vue
new file mode 100644
index 0000000000..faf692c447
--- /dev/null
+++ b/packages/client/src/ui/deck/tl-column.vue
@@ -0,0 +1,137 @@
+<template>
+<XColumn :func="{ handler: setType, title: $ts.timeline }" :column="column" :is-stacked="isStacked" :indicated="indicated" @change-active-state="onChangeActiveState">
+ <template #header>
+ <i v-if="column.tl === 'home'" class="fas fa-home"></i>
+ <i v-else-if="column.tl === 'local'" class="fas fa-comments"></i>
+ <i v-else-if="column.tl === 'social'" class="fas fa-share-alt"></i>
+ <i v-else-if="column.tl === 'global'" class="fas fa-globe"></i>
+ <span style="margin-left: 8px;">{{ column.name }}</span>
+ </template>
+
+ <div class="iwaalbte" v-if="disabled">
+ <p>
+ <i class="fas fa-minus-circle"></i>
+ {{ $t('disabled-timeline.title') }}
+ </p>
+ <p class="desc">{{ $t('disabled-timeline.description') }}</p>
+ </div>
+ <XTimeline v-else-if="column.tl" ref="timeline" :src="column.tl" @after="() => $emit('loaded')" @queue="queueUpdated" @note="onNote" :key="column.tl"/>
+</XColumn>
+</template>
+
+<script lang="ts">
+import { defineComponent } from 'vue';
+import XColumn from './column.vue';
+import XTimeline from '@/components/timeline.vue';
+import * as os from '@/os';
+import { removeColumn, updateColumn } from './deck-store';
+
+export default defineComponent({
+ components: {
+ XColumn,
+ XTimeline,
+ },
+
+ props: {
+ column: {
+ type: Object,
+ required: true
+ },
+ isStacked: {
+ type: Boolean,
+ required: true
+ }
+ },
+
+ data() {
+ return {
+ disabled: false,
+ indicated: false,
+ columnActive: true,
+ };
+ },
+
+ watch: {
+ mediaOnly() {
+ (this.$refs.timeline as any).reload();
+ }
+ },
+
+ mounted() {
+ if (this.column.tl == null) {
+ this.setType();
+ } else {
+ this.disabled = !this.$i.isModerator && !this.$i.isAdmin && (
+ this.$instance.disableLocalTimeline && ['local', 'social'].includes(this.column.tl) ||
+ this.$instance.disableGlobalTimeline && ['global'].includes(this.column.tl));
+ }
+ },
+
+ methods: {
+ async setType() {
+ const { canceled, result: src } = await os.dialog({
+ title: this.$ts.timeline,
+ type: null,
+ select: {
+ items: [{
+ value: 'home', text: this.$ts._timelines.home
+ }, {
+ value: 'local', text: this.$ts._timelines.local
+ }, {
+ value: 'social', text: this.$ts._timelines.social
+ }, {
+ value: 'global', text: this.$ts._timelines.global
+ }]
+ },
+ });
+ if (canceled) {
+ if (this.column.tl == null) {
+ removeColumn(this.column.id);
+ }
+ return;
+ }
+ updateColumn(this.column.id, {
+ tl: src
+ });
+ },
+
+ queueUpdated(q) {
+ if (this.columnActive) {
+ this.indicated = q !== 0;
+ }
+ },
+
+ onNote() {
+ if (!this.columnActive) {
+ this.indicated = true;
+ }
+ },
+
+ onChangeActiveState(state) {
+ this.columnActive = state;
+
+ if (this.columnActive) {
+ this.indicated = false;
+ }
+ },
+
+ focus() {
+ (this.$refs.timeline as any).focus();
+ }
+ }
+});
+</script>
+
+<style lang="scss" scoped>
+.iwaalbte {
+ text-align: center;
+
+ > p {
+ margin: 16px;
+
+ &.desc {
+ font-size: 14px;
+ }
+ }
+}
+</style>