var BaseDevRuntime = DevRuntime;
class ModuleHotContext {
acceptCallbacks = [];
constructor(moduleId, devRuntime) {
this.moduleId = moduleId;
this.devRuntime = devRuntime;
}
accept(...args) {
if (args.length === 1) {
const [cb] = (args);
const acceptingPath = this.moduleId;
this.acceptCallbacks.push({
deps: [acceptingPath],
fn: cb,
});
} else if (args.length === 0) {}
else {
throw new Error('Invalid arguments for `import.meta.hot.accept`');
}
}
invalidate() {
socket.send(JSON.stringify({
type: 'hmr:invalidate',
moduleId: this.moduleId,
}));
}
}
class DefaultDevRuntime extends BaseDevRuntime {
constructor(socket, clientId) {
const queuedMessages = [];
const messenger = {
send(message) {
if (socket.readyState === WebSocket.OPEN) {
socket.send(JSON.stringify(message));
} else if (socket.readyState === WebSocket.CLOSED) {
} else {
queuedMessages.push(JSON.stringify(message));
}
},
};
socket.onopen = () => {
for (const message of queuedMessages) {
socket.send(message);
}
socket.onopen = null;
};
super(messenger, clientId);
}
moduleHotContexts = new Map();
moduleHotContextsToBeUpdated = new Map();
createModuleHotContext(moduleId) {
const hotContext = new ModuleHotContext(moduleId, this);
if (this.moduleHotContexts.has(moduleId)) {
this.moduleHotContextsToBeUpdated.set(moduleId, hotContext);
} else {
this.moduleHotContexts.set(moduleId, hotContext);
}
return hotContext;
}
applyUpdates(boundaries) {
for (let [moduleId, acceptedVia] of boundaries) {
const hotContext = this.moduleHotContexts.get(moduleId);
if (hotContext) {
const acceptCallbacks = hotContext.acceptCallbacks;
acceptCallbacks.filter((cb) => {
cb.fn(this.modules[moduleId].exports);
});
}
}
this.moduleHotContextsToBeUpdated.forEach((hotContext, moduleId) => {
this.moduleHotContexts.set(moduleId, hotContext);
});
this.moduleHotContextsToBeUpdated.clear();
}
}
function loadScript(url) {
var script = document.createElement('script');
script.src = url;
script.type = 'module';
script.onerror = function() {
console.error('Failed to load script: ' + url);
};
document.body.appendChild(script);
}
console.debug('HMR runtime loaded', '$ADDR');
const clientId = crypto.randomUUID();
const addr = new URL('ws://$ADDR');
addr.searchParams.set('clientId', clientId);
const socket = new WebSocket(addr);
( (globalThis)).__rolldown_runtime__ ??=
new DefaultDevRuntime(socket, clientId);
socket.onmessage = function(event) {
const data = JSON.parse(event.data);
console.debug('Received message:', data);
if (data.type === 'connected') {
console.debug('[hmr]: Connection established with server');
} else if (data.type === 'hmr:update') {
if (typeof process === 'object') {
import(data.path);
console.debug(`[hmr]: Importing HMR patch: ${data.path}`);
} else {
console.debug(`[hmr]: Loading HMR patch: ${data.path}`);
loadScript(data.url);
}
} else if (data.type === 'hmr:reload') {
console.log('[hmr]: Full reload required, reloading page');
if (typeof location !== 'undefined') {
location.reload();
} else {
console.log('[hmr]: location is undefined, cannot reload page');
}
}
};