2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-home" v-hotkey.global="keymap">
|
2020-02-01 01:12:04 +01:00
|
|
|
<portal to="header" v-if="showTitle">
|
2020-01-29 20:37:25 +01:00
|
|
|
<button @click="choose" class="_button _kjvfvyph_">
|
|
|
|
<i><fa v-if="$store.state.i.hasUnreadAntenna" :icon="faCircle"/></i>
|
|
|
|
<fa v-if="src === 'home'" :icon="faHome"/>
|
|
|
|
<fa v-if="src === 'local'" :icon="faComments"/>
|
|
|
|
<fa v-if="src === 'social'" :icon="faShareAlt"/>
|
|
|
|
<fa v-if="src === 'global'" :icon="faGlobe"/>
|
|
|
|
<fa v-if="src === 'list'" :icon="faListUl"/>
|
|
|
|
<fa v-if="src === 'antenna'" :icon="faSatellite"/>
|
|
|
|
<span style="margin-left: 8px;">{{ src === 'list' ? list.name : src === 'antenna' ? antenna.name : $t('_timelines.' + src) }}</span>
|
|
|
|
<fa :icon="menuOpened ? faAngleUp : faAngleDown" style="margin-left: 8px;"/>
|
|
|
|
</button>
|
|
|
|
</portal>
|
2020-02-09 13:31:17 +01:00
|
|
|
|
2020-07-24 18:56:52 +02:00
|
|
|
<div class="new" v-if="queue > 0" :style="{ width: width + 'px' }"><button class="_buttonPrimary" @click="top()">{{ $t('newNoteRecived') }}</button></div>
|
2020-02-18 20:08:35 +01:00
|
|
|
|
2020-02-09 14:25:32 +01:00
|
|
|
<x-tutorial class="tutorial" v-if="$store.state.settings.tutorial != -1"/>
|
2020-02-09 13:31:17 +01:00
|
|
|
|
2020-02-18 19:16:10 +01:00
|
|
|
<x-post-form class="post-form _panel" fixed v-if="$store.state.device.showFixedPostForm"/>
|
2020-07-11 03:13:11 +02:00
|
|
|
<x-timeline ref="tl" :key="src === 'list' ? `list:${list.id}` : src === 'antenna' ? `antenna:${antenna.id}` : src" :src="src" :list="list ? list.id : null" :antenna="antenna ? antenna.id : null" :sound="true" @before="before()" @after="after()" @queue="queueUpdated"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-02-09 14:25:32 +01:00
|
|
|
import { faAngleDown, faAngleUp, faHome, faShareAlt, faGlobe, faListUl, faSatellite, faCircle } from '@fortawesome/free-solid-svg-icons';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { faComments } from '@fortawesome/free-regular-svg-icons';
|
|
|
|
import Progress from '../scripts/loading';
|
|
|
|
import XTimeline from '../components/timeline.vue';
|
2020-02-18 19:11:09 +01:00
|
|
|
import XPostForm from '../components/post-form.vue';
|
2020-07-12 09:14:49 +02:00
|
|
|
import { scroll } from '../scripts/scroll';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
metaInfo() {
|
|
|
|
return {
|
|
|
|
title: this.$t('timeline') as string
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
components: {
|
2020-02-09 13:31:17 +01:00
|
|
|
XTimeline,
|
2020-04-22 12:36:28 +02:00
|
|
|
XTutorial: () => import('./index.home.tutorial.vue').then(m => m.default),
|
2020-02-18 19:11:09 +01:00
|
|
|
XPostForm,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
2020-02-01 01:12:04 +01:00
|
|
|
props: {
|
|
|
|
showTitle: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
src: 'home',
|
|
|
|
list: null,
|
|
|
|
antenna: null,
|
|
|
|
menuOpened: false,
|
2020-02-18 20:08:35 +01:00
|
|
|
queue: 0,
|
|
|
|
width: 0,
|
2020-02-09 14:25:32 +01:00
|
|
|
faAngleDown, faAngleUp, faHome, faShareAlt, faGlobe, faComments, faListUl, faSatellite, faCircle
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
keymap(): any {
|
|
|
|
return {
|
|
|
|
't': this.focus
|
|
|
|
};
|
2020-02-09 13:31:17 +01:00
|
|
|
},
|
2020-02-20 15:02:55 +01:00
|
|
|
|
|
|
|
meta() {
|
|
|
|
return this.$store.state.instance.meta;
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
src() {
|
|
|
|
this.showNav = false;
|
|
|
|
this.saveSrc();
|
|
|
|
},
|
|
|
|
list(x) {
|
|
|
|
this.showNav = false;
|
|
|
|
this.saveSrc();
|
|
|
|
if (x != null) this.antenna = null;
|
|
|
|
},
|
|
|
|
antenna(x) {
|
|
|
|
this.showNav = false;
|
|
|
|
this.saveSrc();
|
|
|
|
if (x != null) this.list = null;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2020-02-09 23:23:43 +01:00
|
|
|
this.src = this.$store.state.deviceUser.tl.src;
|
|
|
|
if (this.src === 'list') {
|
|
|
|
this.list = this.$store.state.deviceUser.tl.arg;
|
|
|
|
} else if (this.src === 'antenna') {
|
|
|
|
this.antenna = this.$store.state.deviceUser.tl.arg;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-02-19 09:55:55 +01:00
|
|
|
mounted() {
|
2020-02-19 09:59:28 +01:00
|
|
|
this.width = this.$el.offsetWidth;
|
2020-02-19 09:55:55 +01:00
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
methods: {
|
|
|
|
before() {
|
|
|
|
Progress.start();
|
|
|
|
},
|
|
|
|
|
|
|
|
after() {
|
|
|
|
Progress.done();
|
|
|
|
},
|
|
|
|
|
2020-02-18 20:08:35 +01:00
|
|
|
queueUpdated(q) {
|
2020-02-19 09:55:55 +01:00
|
|
|
if (this.$el.offsetWidth !== 0) this.width = this.$el.offsetWidth;
|
2020-02-18 20:08:35 +01:00
|
|
|
this.queue = q;
|
|
|
|
},
|
|
|
|
|
|
|
|
top() {
|
2020-07-12 09:14:49 +02:00
|
|
|
scroll(this.$el, 0);
|
2020-02-18 20:08:35 +01:00
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
async choose(ev) {
|
2020-02-20 15:02:55 +01:00
|
|
|
if (this.meta == null) return;
|
2020-01-29 20:37:25 +01:00
|
|
|
this.menuOpened = true;
|
|
|
|
const [antennas, lists] = await Promise.all([
|
|
|
|
this.$root.api('antennas/list'),
|
|
|
|
this.$root.api('users/lists/list')
|
|
|
|
]);
|
|
|
|
const antennaItems = antennas.map(antenna => ({
|
|
|
|
text: antenna.name,
|
|
|
|
icon: faSatellite,
|
|
|
|
indicate: antenna.hasUnreadNote,
|
|
|
|
action: () => {
|
|
|
|
this.antenna = antenna;
|
|
|
|
this.setSrc('antenna');
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
const listItems = lists.map(list => ({
|
|
|
|
text: list.name,
|
|
|
|
icon: faListUl,
|
|
|
|
action: () => {
|
|
|
|
this.list = list;
|
|
|
|
this.setSrc('list');
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
this.$root.menu({
|
|
|
|
items: [{
|
|
|
|
text: this.$t('_timelines.home'),
|
|
|
|
icon: faHome,
|
|
|
|
action: () => { this.setSrc('home') }
|
2020-02-20 15:11:09 +01:00
|
|
|
}, this.meta.disableLocalTimeline && !this.$store.state.i.isModerator && !this.$store.state.i.isAdmin ? undefined : {
|
2020-01-29 20:37:25 +01:00
|
|
|
text: this.$t('_timelines.local'),
|
|
|
|
icon: faComments,
|
|
|
|
action: () => { this.setSrc('local') }
|
2020-02-20 15:11:09 +01:00
|
|
|
}, this.meta.disableLocalTimeline && !this.$store.state.i.isModerator && !this.$store.state.i.isAdmin ? undefined : {
|
2020-01-29 20:37:25 +01:00
|
|
|
text: this.$t('_timelines.social'),
|
|
|
|
icon: faShareAlt,
|
|
|
|
action: () => { this.setSrc('social') }
|
2020-02-20 15:11:09 +01:00
|
|
|
}, this.meta.disableGlobalTimeline && !this.$store.state.i.isModerator && !this.$store.state.i.isAdmin ? undefined : {
|
2020-01-29 20:37:25 +01:00
|
|
|
text: this.$t('_timelines.global'),
|
|
|
|
icon: faGlobe,
|
|
|
|
action: () => { this.setSrc('global') }
|
|
|
|
}, antennaItems.length > 0 ? null : undefined, ...antennaItems, listItems.length > 0 ? null : undefined, ...listItems],
|
|
|
|
fixed: true,
|
|
|
|
noCenter: true,
|
|
|
|
source: ev.currentTarget || ev.target
|
|
|
|
}).then(() => {
|
|
|
|
this.menuOpened = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
setSrc(src) {
|
|
|
|
this.src = src;
|
|
|
|
},
|
|
|
|
|
|
|
|
saveSrc() {
|
2020-02-09 23:23:43 +01:00
|
|
|
this.$store.commit('deviceUser/setTl', {
|
2020-01-29 20:37:25 +01:00
|
|
|
src: this.src,
|
|
|
|
arg: this.src == 'list' ? this.list : this.antenna
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
(this.$refs.tl as any).focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-02-09 13:31:17 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-home {
|
2020-02-18 20:08:35 +01:00
|
|
|
> .new {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
|
|
> button {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
2020-02-19 22:08:54 +01:00
|
|
|
padding: 8px 16px;
|
2020-02-18 20:08:35 +01:00
|
|
|
border-radius: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-09 14:25:32 +01:00
|
|
|
> .tutorial {
|
2020-02-09 13:31:17 +01:00
|
|
|
margin-bottom: var(--margin);
|
|
|
|
}
|
|
|
|
|
2020-02-18 19:16:10 +01:00
|
|
|
> .post-form {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: var(--margin);
|
|
|
|
}
|
2020-02-18 19:11:09 +01:00
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
._kjvfvyph_ {
|
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
> i {
|
|
|
|
position: absolute;
|
2020-07-12 10:43:35 +02:00
|
|
|
top: initial;
|
2020-01-29 20:37:25 +01:00
|
|
|
right: 8px;
|
2020-02-16 23:14:03 +01:00
|
|
|
color: var(--indicator);
|
2020-01-29 20:37:25 +01:00
|
|
|
font-size: 12px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|