2018-06-05 07:36:21 -05:00
|
|
|
<template>
|
2019-02-16 10:04:21 -06:00
|
|
|
<div class="iwaalbte" v-if="disabled">
|
|
|
|
<p>
|
|
|
|
<fa :icon="faMinusCircle"/>
|
|
|
|
{{ $t('disabled-timeline.title') }}
|
|
|
|
</p>
|
|
|
|
<p class="desc">{{ $t('disabled-timeline.description') }}</p>
|
|
|
|
</div>
|
2019-02-20 09:13:46 -06:00
|
|
|
<x-notes v-else ref="timeline" :make-promise="makePromise" @inited="() => $emit('loaded')"/>
|
2018-06-05 07:36:21 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import XNotes from './deck.notes.vue';
|
2019-02-16 10:04:21 -06:00
|
|
|
import { faMinusCircle } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import i18n from '../../../i18n';
|
2018-06-05 07:36:21 -05:00
|
|
|
|
|
|
|
const fetchLimit = 10;
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2019-02-16 10:04:21 -06:00
|
|
|
i18n: i18n('deck'),
|
|
|
|
|
2018-06-05 07:36:21 -05:00
|
|
|
components: {
|
|
|
|
XNotes
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
src: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: 'home'
|
2018-06-06 16:13:57 -05:00
|
|
|
},
|
|
|
|
mediaOnly: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
2018-06-05 07:36:21 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2019-02-16 10:04:21 -06:00
|
|
|
connection: null,
|
|
|
|
disabled: false,
|
2019-02-17 18:17:55 -06:00
|
|
|
faMinusCircle,
|
|
|
|
makePromise: null
|
2018-06-05 07:36:21 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
stream(): any {
|
2018-07-10 23:43:09 -05:00
|
|
|
switch (this.src) {
|
2018-11-08 17:13:34 -06:00
|
|
|
case 'home': return this.$root.stream.useSharedConnection('homeTimeline');
|
|
|
|
case 'local': return this.$root.stream.useSharedConnection('localTimeline');
|
2019-04-08 09:05:41 -05:00
|
|
|
case 'hybrid': return this.$root.stream.useSharedConnection('hybridTimeline');
|
2018-11-08 17:13:34 -06:00
|
|
|
case 'global': return this.$root.stream.useSharedConnection('globalTimeline');
|
2018-07-10 23:43:09 -05:00
|
|
|
}
|
2018-06-05 07:36:21 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
endpoint(): string {
|
2018-07-10 23:43:09 -05:00
|
|
|
switch (this.src) {
|
|
|
|
case 'home': return 'notes/timeline';
|
|
|
|
case 'local': return 'notes/local-timeline';
|
2019-04-08 09:05:41 -05:00
|
|
|
case 'hybrid': return 'notes/hybrid-timeline';
|
2018-07-10 23:43:09 -05:00
|
|
|
case 'global': return 'notes/global-timeline';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
mediaOnly() {
|
2019-02-20 09:12:09 -06:00
|
|
|
(this.$refs.timeline as any).reload();
|
2018-06-05 07:36:21 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-02-17 18:17:55 -06:00
|
|
|
created() {
|
|
|
|
this.makePromise = cursor => this.$root.api(this.endpoint, {
|
|
|
|
limit: fetchLimit + 1,
|
|
|
|
untilId: cursor ? cursor : undefined,
|
2019-02-20 09:12:09 -06:00
|
|
|
withFiles: this.mediaOnly,
|
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
2019-02-17 18:17:55 -06:00
|
|
|
}).then(notes => {
|
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
return {
|
|
|
|
notes: notes,
|
2019-04-08 00:17:44 -05:00
|
|
|
more: true
|
2019-02-17 18:17:55 -06:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
notes: notes,
|
2019-04-08 00:17:44 -05:00
|
|
|
more: false
|
2019-02-17 18:17:55 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-06-05 07:36:21 -05:00
|
|
|
mounted() {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.connection = this.stream;
|
2018-06-05 07:36:21 -05:00
|
|
|
|
|
|
|
this.connection.on('note', this.onNote);
|
|
|
|
if (this.src == 'home') {
|
|
|
|
this.connection.on('follow', this.onChangeFollowing);
|
|
|
|
this.connection.on('unfollow', this.onChangeFollowing);
|
|
|
|
}
|
|
|
|
|
2019-02-16 10:04:21 -06:00
|
|
|
this.$root.getMeta().then(meta => {
|
|
|
|
this.disabled = !this.$store.state.i.isModerator && !this.$store.state.i.isAdmin && (
|
2019-04-08 09:05:41 -05:00
|
|
|
meta.disableLocalTimeline && ['local', 'hybrid'].includes(this.src) ||
|
2019-02-16 10:04:21 -06:00
|
|
|
meta.disableGlobalTimeline && ['global'].includes(this.src));
|
|
|
|
});
|
2018-06-05 07:36:21 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.connection.dispose();
|
2018-06-05 07:36:21 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
onNote(note) {
|
2018-09-05 05:32:46 -05:00
|
|
|
if (this.mediaOnly && note.files.length == 0) return;
|
2018-06-05 07:36:21 -05:00
|
|
|
(this.$refs.timeline as any).prepend(note);
|
|
|
|
},
|
|
|
|
|
|
|
|
onChangeFollowing() {
|
2019-02-17 18:17:55 -06:00
|
|
|
(this.$refs.timeline as any).reload();
|
2018-06-05 07:36:21 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
(this.$refs.timeline as any).focus();
|
2018-10-21 02:18:02 -05:00
|
|
|
}
|
2018-06-05 07:36:21 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2019-02-16 10:04:21 -06:00
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.iwaalbte
|
|
|
|
color var(--text)
|
|
|
|
text-align center
|
|
|
|
|
|
|
|
> p
|
|
|
|
margin 16px
|
|
|
|
|
|
|
|
&.desc
|
|
|
|
font-size 14px
|
|
|
|
|
|
|
|
</style>
|