2020-10-09 19:35:46 +02:00
|
|
|
let eventHandlerIndex_ = 1;
|
|
|
|
|
|
|
|
export interface EventHandlers {
|
2020-11-12 21:13:28 +02:00
|
|
|
[key: string]: Function;
|
2020-10-09 19:35:46 +02:00
|
|
|
}
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export default function mapEventHandlersToIds(arg: any, eventHandlers: EventHandlers) {
|
2020-10-09 19:35:46 +02:00
|
|
|
if (Array.isArray(arg)) {
|
|
|
|
for (let i = 0; i < arg.length; i++) {
|
|
|
|
arg[i] = mapEventHandlersToIds(arg[i], eventHandlers);
|
|
|
|
}
|
|
|
|
return arg;
|
|
|
|
} else if (typeof arg === 'function') {
|
|
|
|
const id = `___plugin_event_${eventHandlerIndex_}`;
|
|
|
|
eventHandlerIndex_++;
|
|
|
|
eventHandlers[id] = arg;
|
|
|
|
return id;
|
|
|
|
} else if (arg === null) {
|
|
|
|
return null;
|
|
|
|
} else if (arg === undefined) {
|
|
|
|
return undefined;
|
|
|
|
} else if (typeof arg === 'object') {
|
|
|
|
for (const n in arg) {
|
|
|
|
arg[n] = mapEventHandlersToIds(arg[n], eventHandlers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return arg;
|
|
|
|
}
|