2018-02-11 01:52:37 -06:00
|
|
|
<template>
|
2018-02-12 17:31:03 -06:00
|
|
|
<div class="mk-timeline">
|
2018-04-17 00:52:28 -05:00
|
|
|
<header>
|
2018-11-08 12:44:35 -06:00
|
|
|
<span :data-active="src == 'home'" @click="src = 'home'"><fa icon="home"/> {{ $t('home') }}</span>
|
|
|
|
<span :data-active="src == 'local'" @click="src = 'local'" v-if="enableLocalTimeline"><fa :icon="['far', 'comments']"/> {{ $t('local') }}</span>
|
|
|
|
<span :data-active="src == 'hybrid'" @click="src = 'hybrid'" v-if="enableLocalTimeline"><fa icon="share-alt"/> {{ $t('hybrid') }}</span>
|
|
|
|
<span :data-active="src == 'global'" @click="src = 'global'"><fa icon="globe"/> {{ $t('global') }}</span>
|
2018-11-05 10:40:11 -06:00
|
|
|
<span :data-active="src == 'tag'" @click="src = 'tag'" v-if="tagTl"><fa icon="hashtag"/> {{ tagTl.title }}</span>
|
|
|
|
<span :data-active="src == 'list'" @click="src = 'list'" v-if="list"><fa icon="list"/> {{ list.title }}</span>
|
2018-09-16 19:00:20 -05:00
|
|
|
<div class="buttons">
|
2018-11-08 12:44:35 -06:00
|
|
|
<button :data-active="src == 'mentions'" @click="src = 'mentions'" :title="$t('mentions')"><fa icon="at"/><i class="badge" v-if="$store.state.i.hasUnreadMentions"><fa icon="circle"/></i></button>
|
|
|
|
<button :data-active="src == 'messages'" @click="src = 'messages'" :title="$t('messages')"><fa :icon="['far', 'envelope']"/><i class="badge" v-if="$store.state.i.hasUnreadSpecifiedNotes"><fa icon="circle"/></i></button>
|
|
|
|
<button @click="chooseTag" :title="$t('hashtag')" ref="tagButton"><fa icon="hashtag"/></button>
|
|
|
|
<button @click="chooseList" :title="$t('list')" ref="listButton"><fa icon="list"/></button>
|
2018-09-16 19:00:20 -05:00
|
|
|
</div>
|
2018-04-17 00:52:28 -05:00
|
|
|
</header>
|
|
|
|
<x-core v-if="src == 'home'" ref="tl" key="home" src="home"/>
|
|
|
|
<x-core v-if="src == 'local'" ref="tl" key="local" src="local"/>
|
2018-07-10 23:43:09 -05:00
|
|
|
<x-core v-if="src == 'hybrid'" ref="tl" key="hybrid" src="hybrid"/>
|
2018-04-17 00:52:28 -05:00
|
|
|
<x-core v-if="src == 'global'" ref="tl" key="global" src="global"/>
|
2018-09-16 08:48:57 -05:00
|
|
|
<x-core v-if="src == 'mentions'" ref="tl" key="mentions" src="mentions"/>
|
2018-09-17 12:14:12 -05:00
|
|
|
<x-core v-if="src == 'messages'" ref="tl" key="messages" src="messages"/>
|
2018-09-16 19:00:20 -05:00
|
|
|
<x-core v-if="src == 'tag'" ref="tl" key="tag" src="tag" :tag-tl="tagTl"/>
|
2018-04-26 04:24:14 -05:00
|
|
|
<mk-user-list-timeline v-if="src == 'list'" ref="tl" :key="list.id" :list="list"/>
|
2018-02-11 08:26:35 -06:00
|
|
|
</div>
|
2018-02-11 01:52:37 -06:00
|
|
|
</template>
|
|
|
|
|
2018-02-11 02:04:03 -06:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 12:44:35 -06:00
|
|
|
import i18n from '../../../i18n';
|
2018-04-17 00:52:28 -05:00
|
|
|
import XCore from './timeline.core.vue';
|
2018-09-16 19:00:20 -05:00
|
|
|
import Menu from '../../../common/views/components/menu.vue';
|
|
|
|
import MkSettingsWindow from './settings-window.vue';
|
2018-02-11 01:52:37 -06:00
|
|
|
|
2018-02-11 02:04:03 -06:00
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('desktop/views/components/timeline.vue'),
|
2018-04-17 00:52:28 -05:00
|
|
|
components: {
|
|
|
|
XCore
|
|
|
|
},
|
|
|
|
|
2018-02-12 18:12:54 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2018-04-25 09:08:40 -05:00
|
|
|
src: 'home',
|
2018-09-11 12:48:19 -05:00
|
|
|
list: null,
|
2018-09-16 19:00:20 -05:00
|
|
|
tagTl: null,
|
2018-09-11 12:48:19 -05:00
|
|
|
enableLocalTimeline: false
|
2018-02-12 18:12:54 -06:00
|
|
|
};
|
|
|
|
},
|
2018-04-16 17:40:19 -05:00
|
|
|
|
2018-05-26 10:18:44 -05:00
|
|
|
watch: {
|
|
|
|
src() {
|
2018-05-26 12:56:54 -05:00
|
|
|
this.saveSrc();
|
2018-05-26 10:18:44 -05:00
|
|
|
},
|
|
|
|
|
2018-09-16 19:00:20 -05:00
|
|
|
list(x) {
|
2018-05-26 12:56:54 -05:00
|
|
|
this.saveSrc();
|
2018-09-16 19:00:20 -05:00
|
|
|
if (x != null) this.tagTl = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
tagTl(x) {
|
|
|
|
this.saveSrc();
|
|
|
|
if (x != null) this.list = null;
|
2018-05-26 10:18:44 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-05-06 00:35:28 -05:00
|
|
|
created() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.getMeta().then(meta => {
|
2018-09-11 12:48:19 -05:00
|
|
|
this.enableLocalTimeline = !meta.disableLocalTimeline;
|
|
|
|
});
|
|
|
|
|
2018-05-26 10:18:44 -05:00
|
|
|
if (this.$store.state.device.tl) {
|
|
|
|
this.src = this.$store.state.device.tl.src;
|
|
|
|
if (this.src == 'list') {
|
|
|
|
this.list = this.$store.state.device.tl.arg;
|
2018-09-16 19:00:20 -05:00
|
|
|
} else if (this.src == 'tag') {
|
|
|
|
this.tagTl = this.$store.state.device.tl.arg;
|
2018-05-26 10:18:44 -05:00
|
|
|
}
|
2018-05-26 23:49:09 -05:00
|
|
|
} else if (this.$store.state.i.followingCount == 0) {
|
2018-07-13 21:58:21 -05:00
|
|
|
this.src = 'hybrid';
|
2018-05-06 00:35:28 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-12 18:12:54 -06:00
|
|
|
mounted() {
|
2018-04-17 00:52:28 -05:00
|
|
|
(this.$refs.tl as any).$once('loaded', () => {
|
|
|
|
this.$emit('loaded');
|
|
|
|
});
|
2018-02-12 18:12:54 -06:00
|
|
|
},
|
2018-04-16 17:40:19 -05:00
|
|
|
|
2018-02-11 02:04:03 -06:00
|
|
|
methods: {
|
2018-05-26 12:56:54 -05:00
|
|
|
saveSrc() {
|
|
|
|
this.$store.commit('device/setTl', {
|
|
|
|
src: this.src,
|
2018-09-16 19:00:20 -05:00
|
|
|
arg: this.src == 'list' ? this.list : this.tagTl
|
2018-05-26 12:56:54 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-09-17 15:35:06 -05:00
|
|
|
focus() {
|
|
|
|
(this.$refs.tl as any).focus();
|
|
|
|
},
|
|
|
|
|
2018-02-19 03:26:20 -06:00
|
|
|
warp(date) {
|
2018-04-17 00:52:28 -05:00
|
|
|
(this.$refs.tl as any).warp(date);
|
2018-04-25 08:50:05 -05:00
|
|
|
},
|
|
|
|
|
2018-09-16 19:00:20 -05:00
|
|
|
async chooseList() {
|
2018-11-08 17:13:34 -06:00
|
|
|
const lists = await this.$root.api('users/lists/list');
|
2018-09-16 19:00:20 -05:00
|
|
|
|
|
|
|
let menu = [{
|
2018-11-05 10:40:11 -06:00
|
|
|
icon: 'plus',
|
2018-11-08 12:44:35 -06:00
|
|
|
text: this.$t('add-list'),
|
2018-09-16 19:00:20 -05:00
|
|
|
action: () => {
|
2018-12-02 05:10:53 -06:00
|
|
|
this.$root.dialog({
|
2018-11-08 12:44:35 -06:00
|
|
|
title: this.$t('list-name'),
|
2018-12-02 05:10:53 -06:00
|
|
|
input: true
|
|
|
|
}).then(async ({ canceled, result: title }) => {
|
|
|
|
if (canceled) return;
|
2018-11-08 17:13:34 -06:00
|
|
|
const list = await this.$root.api('users/lists/create', {
|
2018-09-16 19:00:20 -05:00
|
|
|
title
|
|
|
|
});
|
|
|
|
|
|
|
|
this.list = list;
|
|
|
|
this.src = 'list';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
|
|
|
|
if (lists.length > 0) {
|
|
|
|
menu.push(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
menu = menu.concat(lists.map(list => ({
|
2018-11-05 10:40:11 -06:00
|
|
|
icon: 'list',
|
2018-09-16 19:00:20 -05:00
|
|
|
text: list.title,
|
|
|
|
action: () => {
|
|
|
|
this.list = list;
|
|
|
|
this.src = 'list';
|
|
|
|
}
|
|
|
|
})));
|
|
|
|
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.new(Menu, {
|
2018-09-16 19:00:20 -05:00
|
|
|
source: this.$refs.listButton,
|
|
|
|
items: menu
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
chooseTag() {
|
|
|
|
let menu = [{
|
2018-11-05 10:40:11 -06:00
|
|
|
icon: 'plus',
|
2018-11-08 12:44:35 -06:00
|
|
|
text: this.$t('add-tag-timeline'),
|
2018-09-16 19:00:20 -05:00
|
|
|
action: () => {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.new(MkSettingsWindow, {
|
2018-09-16 19:00:20 -05:00
|
|
|
initialPage: 'hashtags'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
|
|
|
|
if (this.$store.state.settings.tagTimelines.length > 0) {
|
|
|
|
menu.push(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
menu = menu.concat(this.$store.state.settings.tagTimelines.map(t => ({
|
2018-11-05 10:40:11 -06:00
|
|
|
icon: 'hashtag',
|
2018-09-16 19:00:20 -05:00
|
|
|
text: t.title,
|
|
|
|
action: () => {
|
|
|
|
this.tagTl = t;
|
|
|
|
this.src = 'tag';
|
|
|
|
}
|
|
|
|
})));
|
|
|
|
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.new(Menu, {
|
2018-09-16 19:00:20 -05:00
|
|
|
source: this.$refs.tagButton,
|
|
|
|
items: menu
|
2018-04-25 09:08:40 -05:00
|
|
|
});
|
2018-02-11 02:04:03 -06:00
|
|
|
}
|
|
|
|
}
|
2018-02-11 01:52:37 -06:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-27 00:32:48 -05:00
|
|
|
.mk-timeline
|
2018-09-26 06:28:13 -05:00
|
|
|
background var(--face)
|
2018-09-22 06:39:12 -05:00
|
|
|
box-shadow var(--shadow)
|
|
|
|
border-radius var(--round)
|
|
|
|
overflow hidden
|
2018-02-11 01:52:37 -06:00
|
|
|
|
2018-04-17 00:52:28 -05:00
|
|
|
> header
|
2018-04-17 05:32:18 -05:00
|
|
|
padding 0 8px
|
2018-04-17 06:17:00 -05:00
|
|
|
z-index 10
|
2018-09-26 06:28:13 -05:00
|
|
|
background var(--faceHeader)
|
2018-12-29 23:00:57 -06:00
|
|
|
box-shadow 0 var(--lineWidth) var(--desktopTimelineHeaderShadow)
|
2018-02-11 01:52:37 -06:00
|
|
|
|
2018-09-16 19:00:20 -05:00
|
|
|
> .buttons
|
2018-04-25 08:50:05 -05:00
|
|
|
position absolute
|
|
|
|
z-index 2
|
|
|
|
top 0
|
|
|
|
right 0
|
2018-09-16 19:05:51 -05:00
|
|
|
padding-right 8px
|
2018-04-25 08:50:05 -05:00
|
|
|
|
2018-09-16 19:00:20 -05:00
|
|
|
> button
|
2018-09-16 19:05:51 -05:00
|
|
|
padding 0 8px
|
2018-09-16 19:00:20 -05:00
|
|
|
font-size 0.9em
|
|
|
|
line-height 42px
|
2018-09-27 00:32:48 -05:00
|
|
|
color var(--faceTextButton)
|
2018-09-16 19:00:20 -05:00
|
|
|
|
2018-09-19 00:18:34 -05:00
|
|
|
> .badge
|
|
|
|
position absolute
|
|
|
|
top -4px
|
|
|
|
right 4px
|
|
|
|
font-size 10px
|
2018-09-26 06:19:35 -05:00
|
|
|
color var(--primary)
|
2018-09-19 00:18:34 -05:00
|
|
|
|
2018-09-16 19:00:20 -05:00
|
|
|
&:hover
|
2018-09-27 00:32:48 -05:00
|
|
|
color var(--faceTextButtonHover)
|
2018-04-25 08:50:05 -05:00
|
|
|
|
2018-09-17 12:14:12 -05:00
|
|
|
&[data-active]
|
2018-09-26 06:19:35 -05:00
|
|
|
color var(--primary)
|
2018-09-17 12:14:12 -05:00
|
|
|
cursor default
|
|
|
|
|
|
|
|
&:before
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
bottom 0
|
|
|
|
left 0
|
|
|
|
width 100%
|
|
|
|
height 2px
|
2018-09-26 06:19:35 -05:00
|
|
|
background var(--primary)
|
2018-09-17 12:14:12 -05:00
|
|
|
|
2018-04-17 00:52:28 -05:00
|
|
|
> span
|
2018-04-17 05:32:18 -05:00
|
|
|
display inline-block
|
|
|
|
padding 0 10px
|
|
|
|
line-height 42px
|
|
|
|
font-size 12px
|
|
|
|
user-select none
|
2018-04-17 00:52:28 -05:00
|
|
|
|
2018-04-26 00:38:37 -05:00
|
|
|
&[data-active]
|
2018-09-26 06:19:35 -05:00
|
|
|
color var(--primary)
|
2018-04-17 05:32:18 -05:00
|
|
|
cursor default
|
2018-04-17 05:33:43 -05:00
|
|
|
font-weight bold
|
2018-04-17 05:32:18 -05:00
|
|
|
|
|
|
|
&:before
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
bottom 0
|
|
|
|
left -8px
|
|
|
|
width calc(100% + 16px)
|
|
|
|
height 2px
|
2018-09-26 06:19:35 -05:00
|
|
|
background var(--primary)
|
2018-04-17 05:32:18 -05:00
|
|
|
|
2018-04-26 00:38:37 -05:00
|
|
|
&:not([data-active])
|
2018-09-27 00:32:48 -05:00
|
|
|
color var(--desktopTimelineSrc)
|
2018-04-17 00:52:28 -05:00
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
&:hover
|
2018-09-27 00:32:48 -05:00
|
|
|
color var(--desktopTimelineSrcHover)
|
2018-02-11 01:52:37 -06:00
|
|
|
|
|
|
|
</style>
|