discourse/app/assets/javascripts/admin/routes/admin-backups-logs.js.es6

31 lines
940 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import PreloadStore from "preload-store";
2016-07-04 14:15:51 -04:00
export default Ember.Route.extend({
2014-02-13 13:49:38 -05:00
// since the logs are pushed via the message bus
// we only want to preload them (hence the beforeModel hook)
beforeModel() {
2018-06-15 11:03:24 -04:00
const logs = this.controllerFor("adminBackupsLogs").get("logs");
2014-02-13 13:49:38 -05:00
// preload the logs if any
2018-06-15 11:03:24 -04:00
PreloadStore.getAndRemove("logs").then(function(preloadedLogs) {
2014-02-13 13:49:38 -05:00
if (preloadedLogs && preloadedLogs.length) {
// we need to filter out message like: "[SUCCESS]"
// and convert POJOs to Ember Objects
2018-06-15 11:03:24 -04:00
const newLogs = _
.chain(preloadedLogs)
.reject(function(log) {
return log.message.length === 0 || log.message[0] === "[";
})
.map(function(log) {
return Em.Object.create(log);
})
.value();
logs.pushObjects(newLogs);
2014-02-13 13:49:38 -05:00
}
});
},
2018-06-15 11:03:24 -04:00
setupController() {
/* prevent default behavior */
}
2014-02-13 13:49:38 -05:00
});