discourse/app/assets/javascripts/admin/components/dashboard-inline-table.js.es6
2018-05-03 15:41:41 +02:00

24 lines
647 B
JavaScript

import { ajax } from 'discourse/lib/ajax';
import Report from "admin/models/report";
import AsyncReport from "admin/mixins/async-report";
export default Ember.Component.extend(AsyncReport, {
classNames: ["dashboard-table", "dashboard-inline-table", "fixed"],
isLoading: true,
help: null,
helpPage: null,
fetchReport() {
this.set("isLoading", true);
ajax(this.get("dataSource"))
.then((response) => {
this._setPropertiesFromReport(Report.create(response.report));
}).finally(() => {
if (!Ember.isEmpty(this.get("report.data"))) {
this.set("isLoading", false);
};
});
}
});