mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:33:52 +08:00
be354e7950
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
129 lines
3.2 KiB
JavaScript
129 lines
3.2 KiB
JavaScript
import { action, computed } from "@ember/object";
|
|
import Controller, { inject as controller } from "@ember/controller";
|
|
import AdminDashboard from "admin/models/admin-dashboard";
|
|
import VersionCheck from "admin/models/version-check";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { setting } from "discourse/lib/computed";
|
|
|
|
const PROBLEMS_CHECK_MINUTES = 1;
|
|
|
|
export default class AdminDashboardController extends Controller {
|
|
@controller("exception") exceptionController;
|
|
|
|
isLoading = false;
|
|
dashboardFetchedAt = null;
|
|
|
|
@setting("version_checks") showVersionChecks;
|
|
|
|
@discourseComputed(
|
|
"lowPriorityProblems.length",
|
|
"highPriorityProblems.length"
|
|
)
|
|
foundProblems(lowPriorityProblemsLength, highPriorityProblemsLength) {
|
|
const problemsLength =
|
|
lowPriorityProblemsLength + highPriorityProblemsLength;
|
|
return this.currentUser.admin && problemsLength > 0;
|
|
}
|
|
|
|
@computed("siteSettings.dashboard_visible_tabs")
|
|
get visibleTabs() {
|
|
return (this.siteSettings.dashboard_visible_tabs || "")
|
|
.split("|")
|
|
.filter(Boolean);
|
|
}
|
|
|
|
@computed("visibleTabs")
|
|
get isModerationTabVisible() {
|
|
return this.visibleTabs.includes("moderation");
|
|
}
|
|
|
|
@computed("visibleTabs")
|
|
get isSecurityTabVisible() {
|
|
return this.visibleTabs.includes("security");
|
|
}
|
|
|
|
@computed("visibleTabs")
|
|
get isReportsTabVisible() {
|
|
return this.visibleTabs.includes("reports");
|
|
}
|
|
|
|
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(
|
|
"highPriorityProblems",
|
|
model.problems.filterBy("priority", "high")
|
|
);
|
|
this.set(
|
|
"lowPriorityProblems",
|
|
model.problems.filterBy("priority", "low")
|
|
);
|
|
})
|
|
.finally(() => this.set("loadingProblems", false));
|
|
}
|
|
|
|
@discourseComputed("problemsFetchedAt")
|
|
problemsTimestamp(problemsFetchedAt) {
|
|
return moment(problemsFetchedAt).locale("en").format("LLL");
|
|
}
|
|
|
|
@action
|
|
refreshProblems() {
|
|
this._loadProblems();
|
|
}
|
|
}
|