mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 02:43:45 +08:00
361e954c55
This commit introduces a little bit of duplication since the old plugin UIs not using the new plugin show page look different from ones like AI and Gamification which have been converted. We can use the new admin header component on the plugins list, but for the other pages we are manually rendering a breadcrumb trail and the list of plugin tabs. Over time as we convert more plugins to use the new UI guidelines and show page we can get rid of this duplication.
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
import EmberObject from "@ember/object";
|
|
import PreloadStore from "discourse/lib/preload-store";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
import I18n from "discourse-i18n";
|
|
|
|
export default class AdminBackupsLogsRoute extends DiscourseRoute {
|
|
// since the logs are pushed via the message bus
|
|
// we only want to preload them (hence the beforeModel hook)
|
|
beforeModel() {
|
|
const logs = this.controllerFor("adminBackupsLogs").get("logs");
|
|
// preload the logs if any
|
|
PreloadStore.getAndRemove("logs").then(function (preloadedLogs) {
|
|
if (preloadedLogs && preloadedLogs.length) {
|
|
// we need to filter out message like: "[SUCCESS]"
|
|
// and convert POJOs to Ember Objects
|
|
const newLogs = preloadedLogs
|
|
.filter((log) => {
|
|
return log.message.length > 0 && log.message[0] !== "[";
|
|
})
|
|
.map((log) => EmberObject.create(log));
|
|
logs.pushObjects(newLogs);
|
|
}
|
|
});
|
|
}
|
|
|
|
setupController() {
|
|
/* prevent default behavior */
|
|
}
|
|
|
|
titleToken() {
|
|
return I18n.t("admin.backups.menu.logs");
|
|
}
|
|
}
|