open-consul/ui-v2/app/utils/dom/event-source/reopenable.js

24 lines
600 B
JavaScript
Raw Normal View History

/**
* Wraps an EventSource so that you can `close` and `reopen`
*
* @param {Class} eventSource - EventSource class to extend from
*/
export default function(eventSource = EventSource) {
return class extends eventSource {
constructor(source, configuration) {
super(...arguments);
this.configuration = configuration;
}
reopen() {
switch (this.readyState) {
case 3: // CLOSING
this.readyState = 1;
break;
case 2: // CLOSED
eventSource.apply(this, [this.source, this.configuration]);
break;
}
}
};
}