mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
91 lines
2.2 KiB
JavaScript
91 lines
2.2 KiB
JavaScript
import { setting } from "discourse/lib/computed";
|
|
import computed from "ember-addons/ember-computed-decorators";
|
|
import AdminDashboard from "admin/models/admin-dashboard";
|
|
import VersionCheck from "admin/models/version-check";
|
|
|
|
const PROBLEMS_CHECK_MINUTES = 1;
|
|
|
|
export default Ember.Controller.extend({
|
|
isLoading: false,
|
|
dashboardFetchedAt: null,
|
|
exceptionController: Ember.inject.controller("exception"),
|
|
showVersionChecks: setting("version_checks"),
|
|
|
|
@computed("problems.length")
|
|
foundProblems(problemsLength) {
|
|
return this.currentUser.get("admin") && (problemsLength || 0) > 0;
|
|
},
|
|
|
|
fetchProblems() {
|
|
if (this.isLoadingProblems) return;
|
|
|
|
if (
|
|
!this.problemsFetchedAt ||
|
|
moment()
|
|
.subtract(PROBLEMS_CHECK_MINUTES, "minutes")
|
|
.toDate() > this.problemsFetchedAt
|
|
) {
|
|
this._loadProblems();
|
|
}
|
|
},
|
|
|
|
fetchDashboard() {
|
|
const versionChecks = this.siteSettings.version_checks;
|
|
|
|
if (this.isLoading || !versionChecks) return;
|
|
|
|
if (
|
|
!this.dashboardFetchedAt ||
|
|
moment()
|
|
.subtract(30, "minutes")
|
|
.toDate() > this.dashboardFetchedAt
|
|
) {
|
|
this.set("isLoading", true);
|
|
|
|
AdminDashboard.fetch()
|
|
.then(model => {
|
|
let properties = {
|
|
dashboardFetchedAt: new Date()
|
|
};
|
|
|
|
if (versionChecks) {
|
|
properties.versionCheck = VersionCheck.create(model.version_check);
|
|
}
|
|
|
|
this.setProperties(properties);
|
|
})
|
|
.catch(e => {
|
|
this.exceptionController.set("thrown", e.jqXHR);
|
|
this.replaceRoute("exception");
|
|
})
|
|
.finally(() => {
|
|
this.set("isLoading", false);
|
|
});
|
|
}
|
|
},
|
|
|
|
_loadProblems() {
|
|
this.setProperties({
|
|
loadingProblems: true,
|
|
problemsFetchedAt: new Date()
|
|
});
|
|
|
|
AdminDashboard.fetchProblems()
|
|
.then(model => this.set("problems", model.problems))
|
|
.finally(() => this.set("loadingProblems", false));
|
|
},
|
|
|
|
@computed("problemsFetchedAt")
|
|
problemsTimestamp(problemsFetchedAt) {
|
|
return moment(problemsFetchedAt)
|
|
.locale("en")
|
|
.format("LLL");
|
|
},
|
|
|
|
actions: {
|
|
refreshProblems() {
|
|
this._loadProblems();
|
|
}
|
|
}
|
|
});
|