mami/src/mami.js/events.js
flash cf71bab92d Rewrote connection handling.
This has been in the works for over a month and might break things because it's a very radical change.
If it causes you to be unable to join chat, report it on the forum or try joining using the legacy chat on https://sockchat.flashii.net.
2024-04-17 15:42:50 +00:00

32 lines
1.4 KiB
JavaScript

const MamiEventTargetScoped = function(eventTarget, prefix) {
if(typeof eventTarget !== 'object' || eventTarget === null)
throw 'eventTarget must be a non-null object';
if(typeof prefix !== 'string')
throw 'prefix must be a string';
if(!prefix.endsWith(':'))
prefix = prefix + ':';
return {
scopeTo: name => eventTarget.scopeTo(prefix + name),
create: (name, ...args) => eventTarget.create(prefix + name, ...args),
watch: (name, ...args) => eventTarget.watch(prefix + name, ...args),
unwatch: (name, ...args) => eventTarget.unwatch(prefix + name, ...args),
dispatch: (nameOrEvent, ...args) => eventTarget.dispatch(nameOrEvent instanceof Event ? nameOrEvent : (prefix + nameOrEvent), ...args),
};
};
const MamiEventTargetWindow = function() {
const createEvent = (name, detail) => new CustomEvent( name, (typeof detail === 'object' && detail !== null && 'detail' in detail ? detail : { detail: detail }));
const public = {
scopeTo: name => new MamiEventTargetScoped(public, name),
create: createEvent,
watch: (...args) => { window.addEventListener(...args); },
unwatch: (...args) => { window.removeEventListener(...args); },
dispatch: (nameOrEvent, ...args) => { window.dispatchEvent(nameOrEvent instanceof Event ? nameOrEvent : createEvent(nameOrEvent, ...args)); },
};
return public;
};