Sharkey/src/client/app/desktop/views/pages/deck/deck.tl.vue

150 lines
3.2 KiB
Vue
Raw Normal View History

2018-06-05 15:36:21 +03:00
<template>
2018-10-21 10:18:02 +03:00
<x-notes ref="timeline" :more="existMore ? more : null" :media-view="mediaView"/>
2018-06-05 15:36:21 +03:00
</template>
<script lang="ts">
import Vue from 'vue';
import XNotes from './deck.notes.vue';
const fetchLimit = 10;
export default Vue.extend({
components: {
XNotes
},
props: {
src: {
type: String,
required: false,
default: 'home'
2018-06-07 00:13:57 +03:00
},
mediaOnly: {
type: Boolean,
required: false,
default: false
2018-06-09 19:01:28 +03:00
},
mediaView: {
type: Boolean,
required: false,
default: false
2018-06-05 15:36:21 +03:00
}
},
data() {
return {
fetching: true,
moreFetching: false,
existMore: false,
connection: null
2018-06-05 15:36:21 +03:00
};
},
computed: {
stream(): any {
2018-07-11 07:43:09 +03:00
switch (this.src) {
case 'home': return (this as any).os.stream.useSharedConnection('homeTimeline');
case 'local': return (this as any).os.stream.useSharedConnection('localTimeline');
case 'hybrid': return (this as any).os.stream.useSharedConnection('hybridTimeline');
case 'global': return (this as any).os.stream.useSharedConnection('globalTimeline');
2018-07-11 07:43:09 +03:00
}
2018-06-05 15:36:21 +03:00
},
endpoint(): string {
2018-07-11 07:43:09 +03:00
switch (this.src) {
case 'home': return 'notes/timeline';
case 'local': return 'notes/local-timeline';
case 'hybrid': return 'notes/hybrid-timeline';
case 'global': return 'notes/global-timeline';
}
},
},
watch: {
mediaOnly() {
this.fetch();
2018-06-05 15:36:21 +03:00
}
},
mounted() {
this.connection = this.stream;
2018-06-05 15:36:21 +03:00
this.connection.on('note', this.onNote);
if (this.src == 'home') {
this.connection.on('follow', this.onChangeFollowing);
this.connection.on('unfollow', this.onChangeFollowing);
}
this.fetch();
},
beforeDestroy() {
this.connection.dispose();
2018-06-05 15:36:21 +03:00
},
methods: {
fetch() {
this.fetching = true;
(this.$refs.timeline as any).init(() => new Promise((res, rej) => {
(this as any).api(this.endpoint, {
limit: fetchLimit + 1,
2018-09-05 13:32:46 +03:00
withFiles: this.mediaOnly,
2018-06-05 15:36:21 +03:00
includeMyRenotes: this.$store.state.settings.showMyRenotes,
2018-08-16 17:59:22 +03:00
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
2018-06-05 15:36:21 +03:00
}).then(notes => {
if (notes.length == fetchLimit + 1) {
notes.pop();
this.existMore = true;
}
res(notes);
this.fetching = false;
this.$emit('loaded');
}, rej);
}));
},
more() {
this.moreFetching = true;
const promise = (this as any).api(this.endpoint, {
limit: fetchLimit + 1,
2018-09-05 13:32:46 +03:00
withFiles: this.mediaOnly,
2018-06-05 15:36:21 +03:00
untilId: (this.$refs.timeline as any).tail().id,
includeMyRenotes: this.$store.state.settings.showMyRenotes,
2018-08-16 17:59:22 +03:00
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
2018-06-05 15:36:21 +03:00
});
promise.then(notes => {
if (notes.length == fetchLimit + 1) {
notes.pop();
} else {
this.existMore = false;
}
notes.forEach(n => (this.$refs.timeline as any).append(n));
this.moreFetching = false;
});
return promise;
},
onNote(note) {
2018-09-05 13:32:46 +03:00
if (this.mediaOnly && note.files.length == 0) return;
2018-06-07 00:13:57 +03:00
2018-06-05 15:36:21 +03:00
// Prepend a note
(this.$refs.timeline as any).prepend(note);
},
onChangeFollowing() {
this.fetch();
},
focus() {
(this.$refs.timeline as any).focus();
2018-10-21 10:18:02 +03:00
}
2018-06-05 15:36:21 +03:00
}
});
</script>