2018-04-26 00:01:41 -05:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<mk-friends-maker v-if="src == 'home' && alone" style="margin-bottom:8px"/>
|
|
|
|
|
|
|
|
<mk-notes ref="timeline" :more="existMore ? more : null">
|
|
|
|
<div slot="empty">
|
|
|
|
%fa:R comments%
|
|
|
|
%i18n:@empty%
|
|
|
|
</div>
|
|
|
|
</mk-notes>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
const fetchLimit = 10;
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
src: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
moreFetching: false,
|
|
|
|
existMore: false,
|
|
|
|
connection: null,
|
|
|
|
connectionId: null,
|
|
|
|
unreadCount: 0,
|
|
|
|
date: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
alone(): boolean {
|
2018-05-26 23:49:09 -05:00
|
|
|
return this.$store.state.i.followingCount == 0;
|
2018-04-26 00:01:41 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
stream(): any {
|
2018-07-10 23:43:09 -05:00
|
|
|
switch (this.src) {
|
|
|
|
case 'home': return (this as any).os.stream;
|
|
|
|
case 'local': return (this as any).os.streams.localTimelineStream;
|
|
|
|
case 'hybrid': return (this as any).os.streams.hybridTimelineStream;
|
|
|
|
case 'global': return (this as any).os.streams.globalTimelineStream;
|
|
|
|
}
|
2018-04-26 00:01:41 -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';
|
|
|
|
case 'hybrid': return 'notes/hybrid-timeline';
|
|
|
|
case 'global': return 'notes/global-timeline';
|
|
|
|
}
|
2018-04-26 00:01:41 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
canFetchMore(): boolean {
|
|
|
|
return !this.moreFetching && !this.fetching && this.existMore;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.connection = this.stream.getConnection();
|
|
|
|
this.connectionId = this.stream.use();
|
|
|
|
|
|
|
|
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.off('note', this.onNote);
|
|
|
|
if (this.src == 'home') {
|
|
|
|
this.connection.off('follow', this.onChangeFollowing);
|
|
|
|
this.connection.off('unfollow', this.onChangeFollowing);
|
|
|
|
}
|
|
|
|
this.stream.dispose(this.connectionId);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
fetch() {
|
|
|
|
this.fetching = true;
|
|
|
|
|
|
|
|
(this.$refs.timeline as any).init(() => new Promise((res, rej) => {
|
|
|
|
(this as any).api(this.endpoint, {
|
|
|
|
limit: fetchLimit + 1,
|
|
|
|
untilDate: this.date ? this.date.getTime() : undefined,
|
2018-05-26 23:49:09 -05:00
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes
|
2018-04-26 00:01:41 -05:00
|
|
|
}).then(notes => {
|
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
this.existMore = true;
|
|
|
|
}
|
|
|
|
res(notes);
|
|
|
|
this.fetching = false;
|
|
|
|
this.$emit('loaded');
|
|
|
|
}, rej);
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
|
|
|
more() {
|
|
|
|
if (!this.canFetchMore) return;
|
|
|
|
|
|
|
|
this.moreFetching = true;
|
|
|
|
|
2018-05-26 09:53:22 -05:00
|
|
|
const promise = (this as any).api(this.endpoint, {
|
2018-04-26 00:01:41 -05:00
|
|
|
limit: fetchLimit + 1,
|
|
|
|
untilId: (this.$refs.timeline as any).tail().id,
|
2018-05-26 23:49:09 -05:00
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes
|
2018-05-26 09:53:22 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
promise.then(notes => {
|
2018-04-26 00:01:41 -05:00
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
} else {
|
|
|
|
this.existMore = false;
|
|
|
|
}
|
|
|
|
notes.forEach(n => (this.$refs.timeline as any).append(n));
|
|
|
|
this.moreFetching = false;
|
|
|
|
});
|
2018-05-26 09:53:22 -05:00
|
|
|
|
|
|
|
return promise;
|
2018-04-26 00:01:41 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
onNote(note) {
|
|
|
|
// Prepend a note
|
|
|
|
(this.$refs.timeline as any).prepend(note);
|
|
|
|
},
|
|
|
|
|
|
|
|
onChangeFollowing() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
(this.$refs.timeline as any).focus();
|
|
|
|
},
|
|
|
|
|
|
|
|
warp(date) {
|
|
|
|
this.date = date;
|
|
|
|
this.fetch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|