0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/core/client/app/routes/setup/one.js

58 lines
1.3 KiB
JavaScript
Raw Normal View History

import Ember from 'ember';
import {request as ajax} from 'ic-ajax';
const {Route, inject, run} = Ember;
let DownloadCountPoller = Ember.Object.extend({
url: null,
count: '',
runId: null,
init() {
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() {
ajax(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);
}
}
});