Sharkey/src/client/app/mobile/views/components/user-timeline.vue

80 lines
1.6 KiB
Vue
Raw Normal View History

2018-02-16 13:53:15 +02:00
<template>
<div class="mk-user-timeline">
2018-04-26 05:46:42 +03:00
<mk-notes ref="timeline" :more="existMore ? more : null">
<div slot="empty">
2018-02-16 13:53:15 +02:00
%fa:R comments%
2018-05-20 14:26:38 +03:00
{{ withMedia ? '%i18n:@no-notes-with-media%' : '%i18n:@no-notes%' }}
2018-02-16 13:53:15 +02:00
</div>
2018-04-07 20:30:37 +03:00
</mk-notes>
2018-02-16 13:53:15 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-23 01:07:30 +02:00
2018-04-26 05:46:42 +03:00
const fetchLimit = 10;
2018-02-23 01:07:30 +02:00
2018-02-16 13:53:15 +02:00
export default Vue.extend({
props: ['user', 'withMedia'],
2018-05-03 17:32:46 +03:00
2018-02-16 13:53:15 +02:00
data() {
return {
fetching: true,
2018-02-23 01:07:30 +02:00
existMore: false,
moreFetching: false
2018-02-16 13:53:15 +02:00
};
},
2018-05-03 17:32:46 +03:00
computed: {
canFetchMore(): boolean {
return !this.moreFetching && !this.fetching && this.existMore;
}
},
2018-02-16 13:53:15 +02:00
mounted() {
2018-04-26 05:46:42 +03:00
this.fetch();
2018-02-23 01:07:30 +02:00
},
2018-05-03 17:32:46 +03:00
2018-02-23 01:07:30 +02:00
methods: {
2018-04-26 05:46:42 +03:00
fetch() {
this.fetching = true;
(this.$refs.timeline as any).init(() => new Promise((res, rej) => {
(this as any).api('users/notes', {
userId: this.user.id,
withMedia: this.withMedia,
limit: fetchLimit + 1
}).then(notes => {
if (notes.length == fetchLimit + 1) {
notes.pop();
this.existMore = true;
}
res(notes);
this.fetching = false;
this.$emit('loaded');
}, rej);
}));
},
2018-05-03 17:32:46 +03:00
2018-02-23 01:07:30 +02:00
more() {
2018-05-03 17:32:46 +03:00
if (!this.canFetchMore) return;
2018-02-23 01:07:30 +02:00
this.moreFetching = true;
2018-04-07 20:30:37 +03:00
(this as any).api('users/notes', {
2018-03-29 08:48:47 +03:00
userId: this.user.id,
withMedia: this.withMedia,
2018-04-26 05:46:42 +03:00
limit: fetchLimit + 1,
untilId: (this.$refs.timeline as any).tail().id
2018-04-07 20:30:37 +03:00
}).then(notes => {
2018-04-26 05:46:42 +03:00
if (notes.length == fetchLimit + 1) {
2018-04-07 20:30:37 +03:00
notes.pop();
2018-02-23 01:07:30 +02:00
} else {
this.existMore = false;
}
2018-04-26 05:46:42 +03:00
notes.forEach(n => (this.$refs.timeline as any).append(n));
2018-02-23 01:07:30 +02:00
this.moreFetching = false;
});
}
2018-02-16 13:53:15 +02:00
}
});
</script>