2014-02-13 13:49:38 -05:00
|
|
|
Discourse.AdminBackupsLogsRoute = Discourse.Route.extend({
|
|
|
|
|
|
|
|
// since the logs are pushed via the message bus
|
|
|
|
// we only want to preload them (hence the beforeModel hook)
|
|
|
|
beforeModel: function() {
|
|
|
|
var logsController = this.controllerFor("adminBackupsLogs");
|
|
|
|
// 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
|
|
|
|
var logs = _.chain(preloadedLogs)
|
|
|
|
.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 05:20:22 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
setupController: function() { /* prevent default behavior */ }
|
2014-02-13 13:49:38 -05:00
|
|
|
|
|
|
|
});
|