Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
52 Zeilen
1,2 KiB
Text
52 Zeilen
1,2 KiB
Text
|
import { default as computed } from 'discourse-common/utils/decorators';
|
||
|
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
||
|
import { ajax } from 'discourse/lib/ajax';
|
||
|
import { notEmpty } from "@ember/object/computed";
|
||
|
|
||
|
export default Ember.Controller.extend({
|
||
|
refreshing: false,
|
||
|
hasLogs: notEmpty("logs"),
|
||
|
page: 0,
|
||
|
canLoadMore: true,
|
||
|
logs: [],
|
||
|
|
||
|
loadLogs() {
|
||
|
if (!this.canLoadMore) return;
|
||
|
|
||
|
this.set("refreshing", true);
|
||
|
|
||
|
ajax('/admin/wizards/logs', {
|
||
|
data: {
|
||
|
page: this.page
|
||
|
}
|
||
|
}).catch(popupAjaxError)
|
||
|
.then(result => {
|
||
|
if (!result || result.length === 0) {
|
||
|
this.set('canLoadMore', false);
|
||
|
}
|
||
|
this.set("logs", this.logs.concat(result));
|
||
|
})
|
||
|
.finally(() => this.set("refreshing", false));
|
||
|
},
|
||
|
|
||
|
@computed('hasLogs', 'refreshing')
|
||
|
noResults(hasLogs, refreshing) {
|
||
|
return !hasLogs && !refreshing;
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
loadMore() {
|
||
|
this.set('page', this.page += 1);
|
||
|
this.loadLogs();
|
||
|
},
|
||
|
|
||
|
refresh() {
|
||
|
this.setProperties({
|
||
|
canLoadMore: true,
|
||
|
page: 0,
|
||
|
logs: []
|
||
|
})
|
||
|
this.loadLogs();
|
||
|
}
|
||
|
}
|
||
|
});
|