Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a custom "Events" class for components? #487

Open
mStirner opened this issue Jul 30, 2024 · 1 comment
Open

Add a custom "Events" class for components? #487

mStirner opened this issue Jul 30, 2024 · 1 comment

Comments

@mStirner
Copy link
Member

mStirner commented Jul 30, 2024

To be able to make every emitted event somewhere in a component available in all worker threads (if implemented, see #6), a custom/intercepted .emit(...) method is needed.

Either use a Proxy or a custom EventEmitter class.

Proxy approach (quick ChatGPT asked):

const EventEmitter = require('events');

// Erstellen einer neuen EventEmitter-Instanz
const myEmitter = new EventEmitter();

// Proxy-Handler erstellen
const handler = {
    apply: function(target, thisArg, argumentsList) {
        const [eventName, ...args] = argumentsList;
        console.log(`Event emitted: ${eventName}`, args);
        // Aufruf der originalen emit-Methode
        return Reflect.apply(target, thisArg, argumentsList);
    }
};

// Proxy für die emit-Methode erstellen
myEmitter.emit = new Proxy(myEmitter.emit, handler);

// Beispielereignisse
myEmitter.emit('event1', 'data1');
myEmitter.emit('event2', { key: 'value' });
myEmitter.emit('event3', 42);

EventEmitter class approach (quick written here)

class Events extends EventEmitter {

    constructor(...args) {
        super(...args);
        this._registeredEvents = new Set();
    }

    emit(event, ...args) {

        if (!this._registeredEvents.has(event)) {

            this._registeredEvents.add(event);

            process.nextTick(() => {
                super.emit("_eventRegistered", event, ...args);
            });

        }

        return super.emit(event, ...args);

    }

}
@mStirner
Copy link
Member Author

const { EventEmitter } = require("events");

module.exports = class Events extends EventEmitter {

    constructor(...args) {
        super(...args);
    }

    static symbol = Symbol("register");
    static events = new Set();

    emit(event, ...args) {

        // is the code below even necessary?
        // if we hook into the `.emit` method
        // we could just use this here to "broadcast" into child/plugin/worker
        // change `static symbol...` to `static broadcast = Symbol("broadcast")`
        // and emit events as symbol: `super.emit(Events.broadcast, ...)`
        // some where, where the main/worker communication is handeld, listen then for `Events.on(Events.broadcast, ...)`

        if (!Events.events.has(event)) {

            Events.events.add(event);

            process.nextTick(() => {
                super.emit(Events.symbol, event, ...args);
            });

        }

        return super.emit(event, ...args);

    }

};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant