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

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

124 lines
3.2 KiB
JavaScript
Raw Normal View History

import Controller, { inject as controller } from "@ember/controller";
2019-04-01 18:39:49 +08:00
import AdminDashboard from "admin/models/admin-dashboard";
import VersionCheck from "admin/models/version-check";
import { computed } from "@ember/object";
import discourseComputed from "discourse-common/utils/decorators";
2019-04-01 18:39:49 +08:00
import { setting } from "discourse/lib/computed";
2019-04-01 18:39:49 +08:00
const PROBLEMS_CHECK_MINUTES = 1;
export default Controller.extend({
2019-04-01 18:39:49 +08:00
isLoading: false,
dashboardFetchedAt: null,
exceptionController: controller("exception"),
2019-04-01 18:39:49 +08:00
showVersionChecks: setting("version_checks"),
@discourseComputed(
"lowPriorityProblems.length",
"highPriorityProblems.length"
)
foundProblems(lowPriorityProblemsLength, highPriorityProblemsLength) {
const problemsLength =
lowPriorityProblemsLength + highPriorityProblemsLength;
return this.currentUser.admin && problemsLength > 0;
2019-04-01 18:39:49 +08:00
},
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 18:39:49 +08:00
fetchProblems() {
if (this.isLoadingProblems) {
return;
}
2019-04-01 18:39:49 +08:00
if (
!this.problemsFetchedAt ||
2019-04-01 18:39:49 +08:00
moment().subtract(PROBLEMS_CHECK_MINUTES, "minutes").toDate() >
this.problemsFetchedAt
2019-04-01 18:39:49 +08:00
) {
this._loadProblems();
}
},
fetchDashboard() {
2019-04-01 18:39:49 +08:00
const versionChecks = this.siteSettings.version_checks;
if (this.isLoading || !versionChecks) {
return;
}
2019-04-01 18:39:49 +08:00
if (
!this.dashboardFetchedAt ||
moment().subtract(30, "minutes").toDate() > this.dashboardFetchedAt
) {
2019-04-01 18:39:49 +08:00
this.set("isLoading", true);
2018-06-15 23:03:24 +08:00
2019-04-01 18:39:49 +08:00
AdminDashboard.fetch()
.then((model) => {
let properties = {
dashboardFetchedAt: new Date(),
};
2018-06-15 23:03:24 +08:00
2019-04-01 18:39:49 +08:00
if (versionChecks) {
properties.versionCheck = VersionCheck.create(model.version_check);
}
2018-06-15 23:03:24 +08:00
2019-04-01 18:39:49 +08:00
this.setProperties(properties);
})
.catch((e) => {
this.exceptionController.set("thrown", e.jqXHR);
this.replaceRoute("exception");
})
.finally(() => {
2019-04-01 18:39:49 +08:00
this.set("isLoading", false);
});
}
},
2019-04-01 18:39:49 +08:00
_loadProblems() {
this.setProperties({
loadingProblems: true,
problemsFetchedAt: new Date(),
});
AdminDashboard.fetchProblems()
.then((model) => {
this.set(
"highPriorityProblems",
model.problems.filterBy("priority", "high")
);
this.set(
"lowPriorityProblems",
model.problems.filterBy("priority", "low")
);
})
2019-04-01 18:39:49 +08:00
.finally(() => this.set("loadingProblems", false));
},
@discourseComputed("problemsFetchedAt")
2019-04-01 18:39:49 +08:00
problemsTimestamp(problemsFetchedAt) {
return moment(problemsFetchedAt).locale("en").format("LLL");
},
2013-09-17 02:08:55 +08:00
actions: {
2019-04-01 18:39:49 +08:00
refreshProblems() {
this._loadProblems();
2013-09-17 02:08:55 +08:00
},
},
});