Sharkey/src/client/app/mobile/views/pages/home.vue

207 lines
4.7 KiB
Vue
Raw Normal View History

2018-02-15 10:50:19 +02:00
<template>
2018-02-23 19:46:09 +02:00
<mk-ui>
2018-04-26 08:01:41 +03:00
<span slot="header" @click="showNav = true">
<span>
2018-05-25 14:44:06 +03:00
<span v-if="src == 'home'">%fa:home%%i18n:@home%</span>
<span v-if="src == 'local'">%fa:R comments%%i18n:@local%</span>
2018-07-11 07:43:09 +03:00
<span v-if="src == 'hybrid'">%fa:share-alt%%i18n:@hybrid%</span>
2018-05-25 14:44:06 +03:00
<span v-if="src == 'global'">%fa:globe%%i18n:@global%</span>
<span v-if="src == 'mentions'">%fa:at%%i18n:@mentions%</span>
2018-05-26 18:18:44 +03:00
<span v-if="src == 'list'">%fa:list%{{ list.title }}</span>
2018-04-26 08:01:41 +03:00
</span>
2018-02-23 19:46:09 +02:00
<span style="margin-left:8px">
2018-04-26 08:01:41 +03:00
<template v-if="!showNav">%fa:angle-down%</template>
2018-02-23 19:46:09 +02:00
<template v-else>%fa:angle-up%</template>
</span>
</span>
2018-04-26 08:01:41 +03:00
2018-02-23 19:46:09 +02:00
<template slot="func">
2018-04-26 08:01:41 +03:00
<button @click="fn">%fa:pencil-alt%</button>
2018-02-23 19:46:09 +02:00
</template>
2018-04-26 08:01:41 +03:00
2018-05-23 23:28:46 +03:00
<main :data-darkmode="$store.state.device.darkmode">
2018-04-26 08:01:41 +03:00
<div class="nav" v-if="showNav">
<div class="bg" @click="showNav = false"></div>
<div class="body">
2018-04-26 08:38:37 +03:00
<div>
2018-05-25 14:44:06 +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-25 14:44:06 +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>
2018-04-26 08:38:37 +03:00
<template v-if="lists">
2018-05-26 18:18:44 +03:00
<span v-for="l in lists" :data-active="src == 'list' && list == l" @click="src = 'list'; list = l" :key="l.id">%fa:list% {{ l.title }}</span>
2018-04-26 08:38:37 +03:00
</template>
</div>
2018-04-26 08:01:41 +03:00
</div>
2018-02-23 19:46:09 +02:00
</div>
2018-04-26 08:01:41 +03:00
<div class="tl">
2018-05-26 18:18:44 +03:00
<x-tl v-if="src == 'home'" ref="tl" key="home" src="home"/>
2018-04-26 08:01:41 +03:00
<x-tl v-if="src == 'local'" ref="tl" key="local" src="local"/>
2018-07-11 07:43:09 +03:00
<x-tl v-if="src == 'hybrid'" ref="tl" key="hybrid" src="hybrid"/>
2018-04-26 08:01:41 +03:00
<x-tl v-if="src == 'global'" ref="tl" key="global" src="global"/>
<x-tl v-if="src == 'mentions'" ref="tl" key="mentions" src="mentions"/>
2018-05-26 18:18:44 +03:00
<mk-user-list-timeline v-if="src == 'list'" ref="tl" :key="list.id" :list="list"/>
2018-02-23 19:46:09 +02:00
</div>
</main>
2018-02-15 10:50:19 +02:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import Progress from '../../../common/scripts/loading';
2018-04-26 08:01:41 +03:00
import XTl from './home.timeline.vue';
2018-02-15 10:50:19 +02:00
export default Vue.extend({
2018-02-23 19:46:09 +02:00
components: {
2018-04-26 08:01:41 +03:00
XTl
2018-02-23 19:46:09 +02:00
},
2018-04-26 08:01:41 +03:00
2018-02-15 10:50:19 +02:00
data() {
return {
2018-04-26 08:01:41 +03:00
src: 'home',
list: null,
2018-04-26 08:38:37 +03:00
lists: null,
2018-09-11 20:48:19 +03:00
showNav: false,
enableLocalTimeline: false
2018-02-15 10:50:19 +02:00
};
},
2018-02-23 20:03:26 +02:00
2018-04-26 08:38:37 +03:00
watch: {
src() {
this.showNav = false;
2018-05-26 20:56:54 +03:00
this.saveSrc();
2018-05-26 18:18:44 +03:00
},
list() {
this.showNav = false;
2018-05-26 20:56:54 +03:00
this.saveSrc();
2018-04-26 08:38:37 +03:00
},
showNav(v) {
if (v && this.lists === null) {
(this as any).api('users/lists/list').then(lists => {
this.lists = lists;
});
}
}
},
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;
}
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-15 10:50:19 +02:00
mounted() {
2018-08-19 15:07:18 +03:00
document.title = (this as any).os.instanceName;
2018-02-15 10:50:19 +02:00
Progress.start();
2018-05-26 18:18:44 +03:00
(this.$refs.tl as any).$once('loaded', () => {
Progress.done();
});
2018-02-15 10:50:19 +02:00
},
2018-04-26 08:01:41 +03:00
2018-02-15 10:50:19 +02:00
methods: {
fn() {
2018-09-01 14:47:49 +03:00
(this as any).apis.post();
2018-02-15 10:50:19 +02:00
},
2018-04-26 08:01:41 +03:00
2018-05-26 20:56:54 +03:00
saveSrc() {
this.$store.commit('device/setTl', {
src: this.src,
arg: this.list
});
},
2018-02-23 19:46:09 +02:00
warp() {
2018-02-15 10:50:19 +02:00
}
}
});
</script>
2018-02-23 19:46:09 +02:00
<style lang="stylus" scoped>
2018-04-26 08:38:37 +03:00
@import '~const.styl'
2018-04-28 04:59:37 +03:00
root(isDark)
2018-04-26 08:01:41 +03:00
> .nav
> .bg
position fixed
z-index 10000
top 0
left 0
width 100%
height 100%
background rgba(#000, 0.5)
> .body
position fixed
z-index 10001
2018-04-26 08:38:37 +03:00
top 56px
2018-04-26 08:01:41 +03:00
left 0
2018-04-26 08:38:37 +03:00
right 0
width 300px
margin 0 auto
2018-04-28 04:59:37 +03:00
background isDark ? #272f3a : #fff
2018-04-26 08:01:41 +03:00
border-radius 8px
2018-04-29 02:51:17 +03:00
box-shadow 0 0 16px rgba(#000, 0.1)
2018-04-26 08:38:37 +03:00
$balloon-size = 16px
&:after
content ""
display block
position absolute
top -($balloon-size * 2) + 1.5px
left s('calc(50% - %s)', $balloon-size)
border-top solid $balloon-size transparent
border-left solid $balloon-size transparent
border-right solid $balloon-size transparent
2018-04-28 04:59:37 +03:00
border-bottom solid $balloon-size isDark ? #272f3a : #fff
2018-04-26 08:38:37 +03:00
> div
padding 8px 0
> *
display block
padding 8px 16px
2018-04-28 04:59:37 +03:00
color isDark ? #cdd0d8 : #666
2018-04-26 08:38:37 +03:00
&[data-active]
color $theme-color-foreground
background $theme-color
&:not([data-active]):hover
2018-04-28 04:59:37 +03:00
background isDark ? #353e4a : #eee
2018-02-23 19:46:09 +02:00
> .tl
2018-04-27 15:06:28 +03:00
max-width 680px
2018-02-23 19:46:09 +02:00
margin 0 auto
2018-04-26 08:01:41 +03:00
padding 8px
2018-02-23 19:46:09 +02:00
2018-02-23 20:30:13 +02:00
@media (min-width 500px)
2018-04-26 08:01:41 +03:00
padding 16px
2018-02-23 19:46:09 +02:00
2018-04-27 15:06:28 +03:00
@media (min-width 600px)
padding 32px
2018-04-28 04:59:37 +03:00
main[data-darkmode]
root(true)
main:not([data-darkmode])
root(false)
2018-02-23 19:46:09 +02:00
</style>