Ghost/ghost/admin/app/routes/setup/one.js
2016-01-18 09:37:14 -06:00

61 lines
1.4 KiB
JavaScript

import Ember from 'ember';
import AjaxService from 'ember-ajax/services/ajax';
const {Route, inject, run} = Ember;
let DownloadCountPoller = Ember.Object.extend({
url: null,
count: '',
runId: null,
ajax: AjaxService.create(),
init() {
this._super(...arguments);
this.downloadCounter();
this.poll();
},
poll() {
let interval = Ember.testing ? 20 : 2000;
let runId = run.later(this, function () {
this.downloadCounter();
if (!Ember.testing) {
this.poll();
}
}, interval);
this.set('runId', runId);
},
downloadCounter() {
this.get('ajax').request(this.get('url')).then((data) => {
let pattern = /(-?\d+)(\d{3})/;
let count = data.count.toString();
while (pattern.test(count)) {
count = count.replace(pattern, '$1,$2');
}
this.set('count', count);
}).catch(() => {
this.set('count', '');
});
}
});
export default Route.extend({
ghostPaths: inject.service('ghost-paths'),
model() {
return DownloadCountPoller.create({url: this.get('ghostPaths.count')});
},
resetController(controller, isExiting) {
if (isExiting) {
run.cancel(controller.get('model.runId'));
controller.set('model', null);
}
}
});