mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
92 lines
2.5 KiB
JavaScript
92 lines
2.5 KiB
JavaScript
|
import moment from 'moment';
|
||
|
import {Resource} from 'ember-could-get-used-to-this';
|
||
|
import {TrackedArray} from 'tracked-built-ins';
|
||
|
import {action} from '@ember/object';
|
||
|
import {inject as service} from '@ember/service';
|
||
|
import {task} from 'ember-concurrency-decorators';
|
||
|
import {tracked} from '@glimmer/tracking';
|
||
|
|
||
|
export default class MembersEventsFetcher extends Resource {
|
||
|
@service ajax;
|
||
|
@service ghostPaths;
|
||
|
|
||
|
@tracked data = new TrackedArray([]);
|
||
|
@tracked isLoading = false;
|
||
|
@tracked isError = false;
|
||
|
@tracked hasReachedEnd = false;
|
||
|
|
||
|
cursor = null;
|
||
|
|
||
|
get value() {
|
||
|
return {
|
||
|
isLoading: this.isLoading,
|
||
|
isError: this.isError,
|
||
|
data: this.data,
|
||
|
loadNextPage: this.loadNextPage,
|
||
|
hasReachedEnd: this.hasReachedEnd
|
||
|
};
|
||
|
}
|
||
|
|
||
|
async setup() {
|
||
|
this.cursor = moment.utc().format('YYYY-MM-DD HH:mm:ss');
|
||
|
let filter = `created_at:<='${this.cursor}'`;
|
||
|
|
||
|
if (this.args.named.filter) {
|
||
|
filter += `+${this.args.named.filter}`;
|
||
|
}
|
||
|
|
||
|
return this.loadEventsTask.perform({filter});
|
||
|
}
|
||
|
|
||
|
@action
|
||
|
loadNextPage() {
|
||
|
// NOTE: assumes data is always ordered by created_at desc
|
||
|
const lastEvent = this.data[this.data.length - 1];
|
||
|
|
||
|
if (!lastEvent?.data?.created_at) {
|
||
|
this.hasReachedEnd = true;
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const cursor = moment.utc(lastEvent.data.created_at).format('YYYY-MM-DD HH:mm:ss');
|
||
|
|
||
|
if (cursor === this.cursor) {
|
||
|
this.hasReachedEnd = true;
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
this.cursor = cursor;
|
||
|
let filter = `created_at:<='${this.cursor}'`;
|
||
|
|
||
|
if (this.args.named.filter) {
|
||
|
filter += `+${this.args.named.filter}`;
|
||
|
}
|
||
|
|
||
|
this.loadEventsTask.perform({filter});
|
||
|
}
|
||
|
|
||
|
@task
|
||
|
*loadEventsTask(queryParams) {
|
||
|
try {
|
||
|
this.isLoading = true;
|
||
|
|
||
|
const url = this.ghostPaths.url.api('members/events');
|
||
|
const data = Object.assign({}, queryParams, {limit: this.args.named.pageSize});
|
||
|
const {events} = yield this.ajax.request(url, {data});
|
||
|
|
||
|
if (events.length < data.limit) {
|
||
|
this.hasReachedEnd = true;
|
||
|
}
|
||
|
|
||
|
this.data.push(...events);
|
||
|
} catch (e) {
|
||
|
this.isError = true;
|
||
|
// TODO: expose error message
|
||
|
// TODO: log to Sentry
|
||
|
console.error(e); // eslint-disable-line
|
||
|
} finally {
|
||
|
this.isLoading = false;
|
||
|
}
|
||
|
}
|
||
|
}
|