2018-02-16 05:53:15 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-user-timeline">
|
2018-04-25 21:46:42 -05:00
|
|
|
<mk-notes ref="timeline" :more="existMore ? more : null">
|
|
|
|
<div slot="empty">
|
2018-11-05 10:40:11 -06:00
|
|
|
<fa :icon="['far', 'comments']"/>
|
2018-11-08 12:44:35 -06:00
|
|
|
{{ withMedia ? this.$t('no-notes-with-media') : this.$t('no-notes') }}
|
2018-02-16 05:53:15 -06:00
|
|
|
</div>
|
2018-04-07 12:30:37 -05:00
|
|
|
</mk-notes>
|
2018-02-16 05:53:15 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 12:44:35 -06:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-22 17:07:30 -06:00
|
|
|
|
2018-04-25 21:46:42 -05:00
|
|
|
const fetchLimit = 10;
|
2018-02-22 17:07:30 -06:00
|
|
|
|
2018-02-16 05:53:15 -06:00
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('mobile/views/components/user-timeline.vue'),
|
2018-02-16 05:53:15 -06:00
|
|
|
props: ['user', 'withMedia'],
|
2018-05-03 09:32:46 -05:00
|
|
|
|
2018-02-16 05:53:15 -06:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
2018-02-22 17:07:30 -06:00
|
|
|
existMore: false,
|
|
|
|
moreFetching: false
|
2018-02-16 05:53:15 -06:00
|
|
|
};
|
|
|
|
},
|
2018-05-03 09:32:46 -05:00
|
|
|
|
|
|
|
computed: {
|
|
|
|
canFetchMore(): boolean {
|
|
|
|
return !this.moreFetching && !this.fetching && this.existMore;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-16 05:53:15 -06:00
|
|
|
mounted() {
|
2018-04-25 21:46:42 -05:00
|
|
|
this.fetch();
|
2018-02-22 17:07:30 -06:00
|
|
|
},
|
2018-05-03 09:32:46 -05:00
|
|
|
|
2018-02-22 17:07:30 -06:00
|
|
|
methods: {
|
2018-04-25 21:46:42 -05:00
|
|
|
fetch() {
|
|
|
|
this.fetching = true;
|
|
|
|
(this.$refs.timeline as any).init(() => new Promise((res, rej) => {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('users/notes', {
|
2018-04-25 21:46:42 -05:00
|
|
|
userId: this.user.id,
|
2018-09-05 05:32:46 -05:00
|
|
|
withFiles: this.withMedia,
|
2018-11-12 10:17:59 -06:00
|
|
|
limit: fetchLimit + 1,
|
|
|
|
untilDate: new Date().getTime() + 1000 * 86400 * 365
|
2018-04-25 21:46:42 -05:00
|
|
|
}).then(notes => {
|
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
this.existMore = true;
|
|
|
|
}
|
|
|
|
res(notes);
|
|
|
|
this.fetching = false;
|
|
|
|
this.$emit('loaded');
|
|
|
|
}, rej);
|
|
|
|
}));
|
|
|
|
},
|
2018-05-03 09:32:46 -05:00
|
|
|
|
2018-02-22 17:07:30 -06:00
|
|
|
more() {
|
2018-05-03 09:32:46 -05:00
|
|
|
if (!this.canFetchMore) return;
|
|
|
|
|
2018-02-22 17:07:30 -06:00
|
|
|
this.moreFetching = true;
|
2018-05-26 09:53:22 -05:00
|
|
|
|
2018-11-08 17:13:34 -06:00
|
|
|
const promise = this.$root.api('users/notes', {
|
2018-03-29 00:48:47 -05:00
|
|
|
userId: this.user.id,
|
2018-09-05 05:32:46 -05:00
|
|
|
withFiles: this.withMedia,
|
2018-04-25 21:46:42 -05:00
|
|
|
limit: fetchLimit + 1,
|
2018-11-12 10:17:59 -06:00
|
|
|
untilDate: new Date((this.$refs.timeline as any).tail().createdAt).getTime()
|
2018-05-26 09:53:22 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
promise.then(notes => {
|
2018-04-25 21:46:42 -05:00
|
|
|
if (notes.length == fetchLimit + 1) {
|
2018-04-07 12:30:37 -05:00
|
|
|
notes.pop();
|
2018-02-22 17:07:30 -06:00
|
|
|
} else {
|
|
|
|
this.existMore = false;
|
|
|
|
}
|
2018-04-25 21:46:42 -05:00
|
|
|
notes.forEach(n => (this.$refs.timeline as any).append(n));
|
2018-02-22 17:07:30 -06:00
|
|
|
this.moreFetching = false;
|
|
|
|
});
|
2018-05-26 09:53:22 -05:00
|
|
|
|
|
|
|
return promise;
|
2018-02-22 17:07:30 -06:00
|
|
|
}
|
2018-02-16 05:53:15 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|