2015-08-07 00:14:59 +08:00
|
|
|
export default Ember.Route.extend({
|
2014-02-14 02:49:38 +08:00
|
|
|
|
|
|
|
// since the logs are pushed via the message bus
|
|
|
|
// we only want to preload them (hence the beforeModel hook)
|
2015-08-07 00:14:59 +08:00
|
|
|
beforeModel() {
|
|
|
|
const logsController = this.controllerFor("adminBackupsLogs");
|
2014-02-14 02:49:38 +08:00
|
|
|
// 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
|
2015-08-07 00:14:59 +08:00
|
|
|
const logs = _.chain(preloadedLogs)
|
2014-02-14 02:49:38 +08:00
|
|
|
.reject(function (log) { return log.message.length === 0 || log.message[0] === "["; })
|
|
|
|
.map(function (log) { return Em.Object.create(log); })
|
|
|
|
.value();
|
|
|
|
logsController.pushObjects(logs);
|
|
|
|
}
|
|
|
|
});
|
2014-04-23 17:20:22 +08:00
|
|
|
},
|
|
|
|
|
2015-08-07 00:14:59 +08:00
|
|
|
setupController() { /* prevent default behavior */ }
|
2014-02-14 02:49:38 +08:00
|
|
|
|
|
|
|
});
|