2018-02-11 08:52:37 +01:00
|
|
|
<template>
|
2018-02-13 00:31:03 +01:00
|
|
|
<div class="mk-timeline">
|
2018-04-17 07:52:28 +02:00
|
|
|
<header>
|
2018-05-16 01:22:07 +02:00
|
|
|
<span :data-active="src == 'home'" @click="src = 'home'">%fa:home% %i18n:@home%</span>
|
2018-09-11 19:48:19 +02:00
|
|
|
<span :data-active="src == 'local'" @click="src = 'local'" v-if="enableLocalTimeline">%fa:R comments% %i18n:@local%</span>
|
|
|
|
<span :data-active="src == 'hybrid'" @click="src = 'hybrid'" v-if="enableLocalTimeline">%fa:share-alt% %i18n:@hybrid%</span>
|
2018-05-16 01:22:07 +02:00
|
|
|
<span :data-active="src == 'global'" @click="src = 'global'">%fa:globe% %i18n:@global%</span>
|
2018-09-16 15:48:57 +02:00
|
|
|
<span :data-active="src == 'mentions'" @click="src = 'mentions'">%fa:at% %i18n:@mentions%</span>
|
2018-09-17 02:00:20 +02:00
|
|
|
<span :data-active="src == 'tag'" @click="src = 'tag'" v-if="tagTl">%fa:hashtag% {{ tagTl.title }}</span>
|
2018-04-26 07:38:37 +02:00
|
|
|
<span :data-active="src == 'list'" @click="src = 'list'" v-if="list">%fa:list% {{ list.title }}</span>
|
2018-09-17 02:00:20 +02:00
|
|
|
<div class="buttons">
|
|
|
|
<button @click="chooseTag" title="%i18n:@hashtag%" ref="tagButton">%fa:hashtag%</button>
|
|
|
|
<button @click="chooseList" title="%i18n:@list%" ref="listButton">%fa:list%</button>
|
|
|
|
</div>
|
2018-04-17 07:52:28 +02: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-11 06:43:09 +02:00
|
|
|
<x-core v-if="src == 'hybrid'" ref="tl" key="hybrid" src="hybrid"/>
|
2018-04-17 07:52:28 +02:00
|
|
|
<x-core v-if="src == 'global'" ref="tl" key="global" src="global"/>
|
2018-09-16 15:48:57 +02:00
|
|
|
<x-core v-if="src == 'mentions'" ref="tl" key="mentions" src="mentions"/>
|
2018-09-17 02:00:20 +02:00
|
|
|
<x-core v-if="src == 'tag'" ref="tl" key="tag" src="tag" :tag-tl="tagTl"/>
|
2018-04-26 11:24:14 +02:00
|
|
|
<mk-user-list-timeline v-if="src == 'list'" ref="tl" :key="list.id" :list="list"/>
|
2018-02-11 15:26:35 +01:00
|
|
|
</div>
|
2018-02-11 08:52:37 +01:00
|
|
|
</template>
|
|
|
|
|
2018-02-11 09:04:03 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-04-17 07:52:28 +02:00
|
|
|
import XCore from './timeline.core.vue';
|
2018-09-17 02:00:20 +02:00
|
|
|
import Menu from '../../../common/views/components/menu.vue';
|
|
|
|
import MkSettingsWindow from './settings-window.vue';
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-11 09:04:03 +01:00
|
|
|
export default Vue.extend({
|
2018-04-17 07:52:28 +02:00
|
|
|
components: {
|
|
|
|
XCore
|
|
|
|
},
|
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2018-04-25 16:08:40 +02:00
|
|
|
src: 'home',
|
2018-09-11 19:48:19 +02:00
|
|
|
list: null,
|
2018-09-17 02:00:20 +02:00
|
|
|
tagTl: null,
|
2018-09-11 19:48:19 +02:00
|
|
|
enableLocalTimeline: false
|
2018-02-13 01:12:54 +01:00
|
|
|
};
|
|
|
|
},
|
2018-04-17 00:40:19 +02:00
|
|
|
|
2018-05-26 17:18:44 +02:00
|
|
|
watch: {
|
|
|
|
src() {
|
2018-05-26 19:56:54 +02:00
|
|
|
this.saveSrc();
|
2018-05-26 17:18:44 +02:00
|
|
|
},
|
|
|
|
|
2018-09-17 02:00:20 +02:00
|
|
|
list(x) {
|
2018-05-26 19:56:54 +02:00
|
|
|
this.saveSrc();
|
2018-09-17 02:00:20 +02:00
|
|
|
if (x != null) this.tagTl = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
tagTl(x) {
|
|
|
|
this.saveSrc();
|
|
|
|
if (x != null) this.list = null;
|
2018-05-26 17:18:44 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-05-06 07:35:28 +02:00
|
|
|
created() {
|
2018-09-11 19:48:19 +02:00
|
|
|
(this as any).os.getMeta().then(meta => {
|
|
|
|
this.enableLocalTimeline = !meta.disableLocalTimeline;
|
|
|
|
});
|
|
|
|
|
2018-05-26 17:18:44 +02: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-17 02:00:20 +02:00
|
|
|
} else if (this.src == 'tag') {
|
|
|
|
this.tagTl = this.$store.state.device.tl.arg;
|
2018-05-26 17:18:44 +02:00
|
|
|
}
|
2018-05-27 06:49:09 +02:00
|
|
|
} else if (this.$store.state.i.followingCount == 0) {
|
2018-07-14 04:58:21 +02:00
|
|
|
this.src = 'hybrid';
|
2018-05-06 07:35:28 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
mounted() {
|
2018-04-17 07:52:28 +02:00
|
|
|
(this.$refs.tl as any).$once('loaded', () => {
|
|
|
|
this.$emit('loaded');
|
|
|
|
});
|
2018-02-13 01:12:54 +01:00
|
|
|
},
|
2018-04-17 00:40:19 +02:00
|
|
|
|
2018-02-11 09:04:03 +01:00
|
|
|
methods: {
|
2018-05-26 19:56:54 +02:00
|
|
|
saveSrc() {
|
|
|
|
this.$store.commit('device/setTl', {
|
|
|
|
src: this.src,
|
2018-09-17 02:00:20 +02:00
|
|
|
arg: this.src == 'list' ? this.list : this.tagTl
|
2018-05-26 19:56:54 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-19 10:26:20 +01:00
|
|
|
warp(date) {
|
2018-04-17 07:52:28 +02:00
|
|
|
(this.$refs.tl as any).warp(date);
|
2018-04-25 15:50:05 +02:00
|
|
|
},
|
|
|
|
|
2018-09-17 02:00:20 +02:00
|
|
|
async chooseList() {
|
|
|
|
const lists = await (this as any).api('users/lists/list');
|
|
|
|
|
|
|
|
let menu = [{
|
|
|
|
icon: '%fa:plus%',
|
|
|
|
text: '%i18n:@add-list%',
|
|
|
|
action: () => {
|
|
|
|
(this as any).apis.input({
|
|
|
|
title: '%i18n:@list-name%',
|
|
|
|
}).then(async title => {
|
|
|
|
const list = await (this as any).api('users/lists/create', {
|
|
|
|
title
|
|
|
|
});
|
|
|
|
|
|
|
|
this.list = list;
|
|
|
|
this.src = 'list';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
|
|
|
|
if (lists.length > 0) {
|
|
|
|
menu.push(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
menu = menu.concat(lists.map(list => ({
|
|
|
|
icon: '%fa:list%',
|
|
|
|
text: list.title,
|
|
|
|
action: () => {
|
|
|
|
this.list = list;
|
|
|
|
this.src = 'list';
|
|
|
|
}
|
|
|
|
})));
|
|
|
|
|
|
|
|
this.os.new(Menu, {
|
|
|
|
source: this.$refs.listButton,
|
|
|
|
compact: false,
|
|
|
|
items: menu
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
chooseTag() {
|
|
|
|
let menu = [{
|
|
|
|
icon: '%fa:plus%',
|
|
|
|
text: '%i18n:@add-tag-timeline%',
|
|
|
|
action: () => {
|
|
|
|
(this as any).os.new(MkSettingsWindow, {
|
|
|
|
initialPage: 'hashtags'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
|
|
|
|
if (this.$store.state.settings.tagTimelines.length > 0) {
|
|
|
|
menu.push(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
menu = menu.concat(this.$store.state.settings.tagTimelines.map(t => ({
|
|
|
|
icon: '%fa:hashtag%',
|
|
|
|
text: t.title,
|
|
|
|
action: () => {
|
|
|
|
this.tagTl = t;
|
|
|
|
this.src = 'tag';
|
|
|
|
}
|
|
|
|
})));
|
|
|
|
|
|
|
|
this.os.new(Menu, {
|
|
|
|
source: this.$refs.tagButton,
|
|
|
|
compact: false,
|
|
|
|
items: menu
|
2018-04-25 16:08:40 +02:00
|
|
|
});
|
2018-02-11 09:04:03 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-11 08:52:37 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-04-17 07:52:28 +02:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-19 20:41:24 +02:00
|
|
|
root(isDark)
|
|
|
|
background isDark ? #282C37 : #fff
|
2018-04-29 01:51:17 +02:00
|
|
|
border solid 1px rgba(#000, 0.075)
|
2018-02-13 01:12:54 +01:00
|
|
|
border-radius 6px
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-04-17 07:52:28 +02:00
|
|
|
> header
|
2018-04-17 12:32:18 +02:00
|
|
|
padding 0 8px
|
2018-04-17 13:17:00 +02:00
|
|
|
z-index 10
|
2018-04-19 20:41:24 +02:00
|
|
|
background isDark ? #313543 : #fff
|
|
|
|
border-radius 6px 6px 0 0
|
2018-04-27 17:47:52 +02:00
|
|
|
box-shadow 0 1px isDark ? rgba(#000, 0.15) : rgba(#000, 0.08)
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-09-17 02:00:20 +02:00
|
|
|
> .buttons
|
2018-04-25 15:50:05 +02:00
|
|
|
position absolute
|
|
|
|
z-index 2
|
|
|
|
top 0
|
|
|
|
right 0
|
2018-09-17 02:05:51 +02:00
|
|
|
padding-right 8px
|
2018-04-25 15:50:05 +02:00
|
|
|
|
2018-09-17 02:00:20 +02:00
|
|
|
> button
|
2018-09-17 02:05:51 +02:00
|
|
|
padding 0 8px
|
2018-09-17 02:00:20 +02:00
|
|
|
font-size 0.9em
|
|
|
|
line-height 42px
|
|
|
|
color isDark ? #9baec8 : #ccc
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
color isDark ? #b2c1d5 : #aaa
|
2018-04-25 15:50:05 +02:00
|
|
|
|
2018-09-17 02:00:20 +02:00
|
|
|
&:active
|
|
|
|
color isDark ? #b2c1d5 : #999
|
2018-04-25 15:50:05 +02:00
|
|
|
|
2018-04-17 07:52:28 +02:00
|
|
|
> span
|
2018-04-17 12:32:18 +02:00
|
|
|
display inline-block
|
|
|
|
padding 0 10px
|
|
|
|
line-height 42px
|
|
|
|
font-size 12px
|
|
|
|
user-select none
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-04-26 07:38:37 +02:00
|
|
|
&[data-active]
|
2018-04-17 07:52:28 +02:00
|
|
|
color $theme-color
|
2018-04-17 12:32:18 +02:00
|
|
|
cursor default
|
2018-04-17 12:33:43 +02:00
|
|
|
font-weight bold
|
2018-04-17 12:32:18 +02:00
|
|
|
|
|
|
|
&:before
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
bottom 0
|
|
|
|
left -8px
|
|
|
|
width calc(100% + 16px)
|
|
|
|
height 2px
|
|
|
|
background $theme-color
|
|
|
|
|
2018-04-26 07:38:37 +02:00
|
|
|
&:not([data-active])
|
2018-04-19 20:41:24 +02:00
|
|
|
color isDark ? #9aa2a7 : #6f7477
|
2018-04-17 07:52:28 +02:00
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
&:hover
|
2018-04-19 20:41:24 +02:00
|
|
|
color isDark ? #d9dcde : #525a5f
|
|
|
|
|
|
|
|
.mk-timeline[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-timeline:not([data-darkmode])
|
|
|
|
root(false)
|
2018-02-11 08:52:37 +01:00
|
|
|
|
|
|
|
</style>
|