GithubHelp home page GithubHelp logo

Comments (2)

kmiwa007 avatar kmiwa007 commented on June 11, 2024 1

the plugins will run in reverse order (most recently registered plugin first).

ah, that was the key concept. I see the updated message now. Thanks!

from loglevel.

pimterry avatar pimterry commented on June 11, 2024

Hi @kmiwa007 - yes, it's actually easy, that code already does it! If you run that same code twice, every message will start with Newsflash: Newsflash: <msg> because the plugins combine.

Effectively what happens here is that if you apply this repeatedly then originalFactory will be the the factory from the last registered plugin, and so rawMethod will be the method built by that plugin, so when you call it, you're just chaining to that plugin. If you just repeat this code, the plugins will run in reverse order (most recently registered plugin first).

This is just JS itself providing this, the API isn't doing anything special at all. The only gotcha is that if you use the same originalFactory value from before the first plugin, then you'll replace it entirely.

Here's a quick demo:

const originalFactory1 = log.methodFactory;
log.methodFactory = function (methodName, logLevel, loggerName) {
    var rawMethod = originalFactory1(methodName, logLevel, loggerName);

    return function (message) {
        rawMethod("P1: " + message);
    };
};

const originalFactory2 = log.methodFactory;
log.methodFactory = function (methodName, logLevel, loggerName) {
    var rawMethod = originalFactory2(methodName, logLevel, loggerName);

    return function (message) {
        rawMethod("P2: " + message);
    };
};
log.setLevel(log.getLevel());

log.log("Hello world"); // Prints "P1: P2: Hello world"

The two plugins run in reverse order: the second plugin prepends "P2" - giving "P2: Hello world" - and then that gets passed to the the first plugin which prepends "P1", giving "P1: P2: Hello world".

Note that I've given the originalFactory vars different names to avoid collision here, but they could have the same names and live in different files/scopes and that'd be fine.

You can open https://pimterry.github.io/loglevel/demo/index.html and paste that into the browser console there to test this. Does that all make sense?

from loglevel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.