Newer
Older
Mathis Neumann
committed
import ENV from 'iobserve-ui/config/environment';
changelogQueue: Ember.inject.service(),
init() {
this._super(...arguments);
this.debug('session', this.get('systemId'));
},
connect(systemId) {
const oldSocket = this.get('socket');
if(oldSocket) {
this.debug('already connected, disconnecting first');
this.disconnect();
}
Mathis Neumann
committed
const socket = new WebSocket(`${ENV.APP.WEBSOCKET_ROOT}/v1/changelogstream/${systemId}`);
this.set('socket', socket);
socket.onopen = this.get('events.onOpen').bind(this);
socket.onerror = this.get('events.onError').bind(this);
socket.onmessage = this.get('events.onMessage').bind(this);
// automatically reconnect
Mathis Neumann
committed
if(ENV.APP.WEBSOCKET_RECONNECT) {
socket.onclose = () => {
this.debug('connection lost, reconnecting!');
this.set('reconnectionTimeout', setTimeout(() => {
this.connect(systemId);
this.set('reconnectionTimeout', null);
}, 500));
Mathis Neumann
committed
};
}
// close socket connection when the user closes the window/tab or nagivates to a different website
window.onbeforeunload = this.get('disconnect').bind(this);
},
disconnect() {
this.get('changelogQueue').reset();
// remove handlers to avoid reconnects and unexpected message handling
this.set('socket.onclose', null);
this.set('socket.onerror', null);
this.set('socket.onopen', null);
this.set('socket.onmessage', null);
// just in case it disconnected right before disconnect() was called.
clearTimeout(this.get('reconnectionTimeout'));
},
events: {
onError(err) {
this.debug('socket connection encountered an error', err);
},
onOpen() {
this.debug('connection established');
},
onMessage(message) {
this.debug('new changelogs received', changelogsJson);
const changelogs = JSON.parse(changelogsJson);
this.get('changelogQueue').append(changelogs);
console.error('could not parse changelogs json', e, changelogsJson);