Giter Site home page Giter Site logo

Comments (3)

NozomuIkuta avatar NozomuIkuta commented on June 16, 2024 1

addHooks() method is a utility to iterate the passed object and call hook() method on each property, which returns a function to unregister all hooks registered by call to it.

hookable/src/hookable.ts

Lines 113 to 123 in c3c2413

addHooks (configHooks: NestedHooks<HooksT>) {
const hooks = flatHooks<HooksT>(configHooks);
// @ts-ignore
const removeFns = Object.keys(hooks).map(key => this.hook(key, hooks[key]));
return () => {
// Splice will ensure that all fns are called once, and free all
// unreg functions from memory.
for (const unreg of removeFns.splice(0, removeFns.length)) { unreg(); }
};
}

So, if you register hooks that you need with only one call to addHooks() method, you can remove all hooks.

If you call hook() and/or addHooks() methods more than once, you have to call unregister functions for each to remove all hooks completely.

from hookable.

abarke avatar abarke commented on June 16, 2024

Good question! I was wondering the same. I just reinitialized the hooks e.g. hooks = createHooks<HookTypes>()

Would be nice to have a function for that though e.g. hooks.removeAll()

from hookable.

abarke avatar abarke commented on June 16, 2024

I just found this: https://github.com/unjs/hookable#addhooksconfighooks

// Returns an `unregister` function that, when called, will remove all the registered handlers.
addHooks(configHooks: NestedHooks<HooksT>): () => void;

Didn't try it yet though

from hookable.

Related Issues (19)

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.