Sharkey/src/client/app/desktop/views/components/timeline.vue

241 lines
5.3 KiB
Vue
Raw Normal View History

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