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

131 lines
2.6 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>
<span :data-active="src == 'local'" @click="src = 'local'">%fa:R comments% %i18n:@local%</span>
<span :data-active="src == 'global'" @click="src = 'global'">%fa:globe% %i18n:@global%</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>
2018-05-16 02:22:07 +03:00
<button @click="chooseList" title="%i18n:@list%">%fa:list%</button>
</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"/>
<x-core v-if="src == 'global'" ref="tl" key="global" src="global"/>
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';
2018-04-25 17:08:40 +03:00
import MkUserListsWindow from './user-lists-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',
list: null
2018-02-13 02:12:54 +02:00
};
},
2018-04-17 01:40:19 +03:00
created() {
if ((this as any).os.i.followingCount == 0) {
this.src = 'local';
}
},
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-02-19 11:26:20 +02:00
warp(date) {
(this.$refs.tl as any).warp(date);
2018-04-25 16:50:05 +03:00
},
2018-04-25 17:08:40 +03:00
chooseList() {
const w = (this as any).os.new(MkUserListsWindow);
w.$once('choosen', list => {
this.list = list;
2018-04-26 05:19:57 +03:00
this.src = 'list';
w.close();
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
2018-04-25 16:50:05 +03:00
> button
position absolute
z-index 2
top 0
right 0
padding 0
width 42px
font-size 0.9em
line-height 42px
color isDark ? #9baec8 : #ccc
&:hover
color isDark ? #b2c1d5 : #aaa
&:active
color isDark ? #b2c1d5 : #999
> 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>