discourse/app/assets/javascripts/admin/controllers/admin-dashboard.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

111 lines
2.8 KiB
JavaScript
Raw Normal View History

import discourseComputed from "discourse-common/utils/decorators";
import Controller, { inject } from "@ember/controller";
2019-04-01 06:39:49 -04:00
import { setting } from "discourse/lib/computed";
import { computed } from "@ember/object";
2019-04-01 06:39:49 -04:00
import AdminDashboard from "admin/models/admin-dashboard";
import VersionCheck from "admin/models/version-check";
2019-04-01 06:39:49 -04:00
const PROBLEMS_CHECK_MINUTES = 1;
export default Controller.extend({
2019-04-01 06:39:49 -04:00
isLoading: false,
dashboardFetchedAt: null,
exceptionController: inject("exception"),
2019-04-01 06:39:49 -04:00
showVersionChecks: setting("version_checks"),
@discourseComputed("problems.length")
2019-04-01 06:39:49 -04:00
foundProblems(problemsLength) {
return this.currentUser.get("admin") && (problemsLength || 0) > 0;
},
visibleTabs: computed("siteSettings.dashboard_visible_tabs", function() {
return (this.siteSettings.dashboard_visible_tabs || "")
.split("|")
.filter(Boolean);
}),
isModerationTabVisible: computed("visibleTabs", function() {
return this.visibleTabs.includes("moderation");
}),
isSecurityTabVisible: computed("visibleTabs", function() {
return this.visibleTabs.includes("security");
}),
isReportsTabVisible: computed("visibleTabs", function() {
return this.visibleTabs.includes("reports");
}),
2019-04-01 06:39:49 -04:00
fetchProblems() {
if (this.isLoadingProblems) return;
2019-04-01 06:39:49 -04:00
if (
!this.problemsFetchedAt ||
2019-04-01 06:39:49 -04:00
moment()
.subtract(PROBLEMS_CHECK_MINUTES, "minutes")
.toDate() > this.problemsFetchedAt
2019-04-01 06:39:49 -04:00
) {
this._loadProblems();
}
},
fetchDashboard() {
2019-04-01 06:39:49 -04:00
const versionChecks = this.siteSettings.version_checks;
if (this.isLoading || !versionChecks) return;
2019-04-01 06:39:49 -04:00
if (
!this.dashboardFetchedAt ||
moment()
.subtract(30, "minutes")
.toDate() > this.dashboardFetchedAt
) {
2019-04-01 06:39:49 -04:00
this.set("isLoading", true);
2018-06-15 11:03:24 -04:00
2019-04-01 06:39:49 -04:00
AdminDashboard.fetch()
.then(model => {
let properties = {
dashboardFetchedAt: new Date()
};
2018-06-15 11:03:24 -04:00
2019-04-01 06:39:49 -04:00
if (versionChecks) {
properties.versionCheck = VersionCheck.create(model.version_check);
}
2018-06-15 11:03:24 -04:00
2019-04-01 06:39:49 -04:00
this.setProperties(properties);
})
.catch(e => {
this.exceptionController.set("thrown", e.jqXHR);
this.replaceRoute("exception");
})
.finally(() => {
2019-04-01 06:39:49 -04:00
this.set("isLoading", false);
});
}
},
2019-04-01 06:39:49 -04:00
_loadProblems() {
this.setProperties({
loadingProblems: true,
problemsFetchedAt: new Date()
});
AdminDashboard.fetchProblems()
.then(model => this.set("problems", model.problems))
.finally(() => this.set("loadingProblems", false));
},
@discourseComputed("problemsFetchedAt")
2019-04-01 06:39:49 -04:00
problemsTimestamp(problemsFetchedAt) {
return moment(problemsFetchedAt)
.locale("en")
.format("LLL");
},
2013-09-16 14:08:55 -04:00
actions: {
2019-04-01 06:39:49 -04:00
refreshProblems() {
this._loadProblems();
2013-09-16 14:08:55 -04:00
}
}
});