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>
|
|
|
|
<span :data-is-active="src == 'home'" @click="src = 'home'">%fa:home% ホーム</span>
|
|
|
|
<span :data-is-active="src == 'local'" @click="src = 'local'">%fa:R comments% ローカル</span>
|
|
|
|
<span :data-is-active="src == 'global'" @click="src = 'global'">%fa:globe% グローバル</span>
|
2018-04-25 09:08:40 -05:00
|
|
|
<span :data-is-active="src == 'list'" @click="src = 'list'" v-if="list">%fa:list% {{ list.title }}</span>
|
|
|
|
<button @click="chooseList" title="リスト">%fa:list%</button>
|
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"/>
|
|
|
|
<x-core v-if="src == 'global'" ref="tl" key="global" src="global"/>
|
2018-04-25 09:08:40 -05:00
|
|
|
<mk-user-list-timeline v-if="src == 'list'" ref="tl" key="list" :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-04-17 00:52:28 -05:00
|
|
|
import XCore from './timeline.core.vue';
|
2018-04-25 09:08:40 -05:00
|
|
|
import MkUserListsWindow from './user-lists-window.vue';
|
2018-02-11 01:52:37 -06:00
|
|
|
|
2018-02-11 02:04:03 -06:00
|
|
|
export default Vue.extend({
|
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',
|
|
|
|
list: null
|
2018-02-12 18:12:54 -06:00
|
|
|
};
|
|
|
|
},
|
2018-04-16 17:40:19 -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-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-04-25 09:08:40 -05:00
|
|
|
chooseList() {
|
|
|
|
const w = (this as any).os.new(MkUserListsWindow);
|
|
|
|
w.$once('choosen', list => {
|
|
|
|
this.list = list;
|
2018-04-25 21:19:57 -05:00
|
|
|
this.src = 'list';
|
|
|
|
w.close();
|
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-04-17 00:52:28 -05:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-19 13:41:24 -05:00
|
|
|
root(isDark)
|
|
|
|
background isDark ? #282C37 : #fff
|
2018-02-12 18:12:54 -06:00
|
|
|
border solid 1px rgba(0, 0, 0, 0.075)
|
|
|
|
border-radius 6px
|
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-04-19 13:41:24 -05:00
|
|
|
background isDark ? #313543 : #fff
|
|
|
|
border-radius 6px 6px 0 0
|
2018-04-17 05:32:18 -05:00
|
|
|
box-shadow 0 1px rgba(0, 0, 0, 0.08)
|
2018-02-11 01:52:37 -06:00
|
|
|
|
2018-04-25 08:50:05 -05: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
|
|
|
|
|
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-17 05:32:18 -05:00
|
|
|
&[data-is-active]
|
2018-04-17 00:52:28 -05:00
|
|
|
color $theme-color
|
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
|
|
|
|
background $theme-color
|
|
|
|
|
|
|
|
&:not([data-is-active])
|
2018-04-19 13:41:24 -05:00
|
|
|
color isDark ? #9aa2a7 : #6f7477
|
2018-04-17 00:52:28 -05:00
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
&:hover
|
2018-04-19 13:41:24 -05:00
|
|
|
color isDark ? #d9dcde : #525a5f
|
|
|
|
|
|
|
|
.mk-timeline[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-timeline:not([data-darkmode])
|
|
|
|
root(false)
|
2018-02-11 01:52:37 -06:00
|
|
|
|
|
|
|
</style>
|