rsnext/packages/next/client/dev/error-overlay/eventsource.js
Dmitry Ishkov b3fad60d7d
use clearInterval instead of clearTimer on a timer (#10597)
Co-authored-by: JJ Kasper <jj@jjsweb.site>
2020-02-19 12:39:22 -05:00

67 lines
1.4 KiB
JavaScript

const eventCallbacks = []
function EventSourceWrapper(options) {
var source
var lastActivity = new Date()
var listeners = []
if (!options.timeout) {
options.timeout = 20 * 1000
}
init()
var timer = setInterval(function() {
if (new Date() - lastActivity > options.timeout) {
handleDisconnect()
}
}, options.timeout / 2)
function init() {
source = new window.EventSource(options.path)
source.onopen = handleOnline
source.onerror = handleDisconnect
source.onmessage = handleMessage
}
function handleOnline() {
if (options.log) console.log('[HMR] connected')
lastActivity = new Date()
}
function handleMessage(event) {
lastActivity = new Date()
for (var i = 0; i < listeners.length; i++) {
listeners[i](event)
}
if (event.data.indexOf('action') !== -1) {
eventCallbacks.forEach(cb => cb(event))
}
}
function handleDisconnect() {
clearInterval(timer)
source.close()
setTimeout(init, options.timeout)
}
return {
close: () => {
clearInterval(timer)
source.close()
},
addMessageListener: function(fn) {
listeners.push(fn)
},
}
}
export function getEventSourceWrapper(options) {
if (!options.ondemand) {
return {
addMessageListener: cb => {
eventCallbacks.push(cb)
},
}
}
return EventSourceWrapper(options)
}