2022-01-12 12:54:04 +00:00
|
|
|
import { ICommand } from '../definitions/ICommand';
|
2018-10-23 21:39:48 +00:00
|
|
|
import log from './log';
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
type TEventEmitterEmmitArgs =
|
|
|
|
| { rid: string }
|
|
|
|
| { message: string }
|
|
|
|
| { method: string }
|
|
|
|
| { invalid: boolean }
|
|
|
|
| { force: boolean }
|
|
|
|
| { hasBiometry: boolean }
|
|
|
|
| { event: string | ICommand }
|
|
|
|
| { cancel: () => void }
|
|
|
|
| { submit: (param: string) => void };
|
|
|
|
|
2018-10-23 21:39:48 +00:00
|
|
|
class EventEmitter {
|
2022-01-12 12:54:04 +00:00
|
|
|
private events: { [key: string]: any };
|
|
|
|
|
2018-10-23 21:39:48 +00:00
|
|
|
constructor() {
|
|
|
|
this.events = {};
|
|
|
|
}
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
addEventListener(event: string, listener: Function) {
|
2018-10-23 21:39:48 +00:00
|
|
|
if (typeof this.events[event] !== 'object') {
|
|
|
|
this.events[event] = [];
|
|
|
|
}
|
|
|
|
this.events[event].push(listener);
|
|
|
|
return listener;
|
|
|
|
}
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
removeListener(event: string, listener: Function) {
|
2018-10-23 21:39:48 +00:00
|
|
|
if (typeof this.events[event] === 'object') {
|
|
|
|
const idx = this.events[event].indexOf(listener);
|
|
|
|
if (idx > -1) {
|
|
|
|
this.events[event].splice(idx, 1);
|
|
|
|
}
|
|
|
|
if (this.events[event].length === 0) {
|
|
|
|
delete this.events[event];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
emit(event: string, ...args: TEventEmitterEmmitArgs[]) {
|
2018-10-23 21:39:48 +00:00
|
|
|
if (typeof this.events[event] === 'object') {
|
2022-01-12 12:54:04 +00:00
|
|
|
this.events[event].forEach((listener: Function) => {
|
2018-10-23 21:39:48 +00:00
|
|
|
try {
|
|
|
|
listener.apply(this, args);
|
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2018-10-23 21:39:48 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const events = new EventEmitter();
|
|
|
|
export default events;
|