Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@teamteanpm2024/rerum-ducimus-quis
Advanced tools
Welcome to @teamteanpm2024/rerum-ducimus-quis 👋 <img alt="Version" src="https://img.shields.io/npm/v/@teamteanpm2024/rerum-ducim
Simple vanilla js event delegation that can be destroy trigger once and use native event
yarn install
Simple and light lib to delegate events.
Instead of binding lot of events of repeated items on a page, you can deleagte those events by using this simple function. It only apply on a wanted element and parcour all it children finding the matching selectors and propaging events for thoses targets. The callback function return an DelegateEvent similar to nativeEvent except the delegateTarget which must be used instead of target or currentTarget. It always match the selector.
Simple use case:
/**
* Bind given callback onto existing and upcoming elements matching the given
* selector, for events of type eType.
* Use e.delegateTarget instead of e.target in the callback function to get the HTMLElement representative of selector
*
* @param {HTMLElement} $container HTMLElement into which to apply Selector
* @param {String} selector Selector matching HTMLElements onto which the callback will be bind
* @param {String} eType String event or list of events seperated by , (ex: 'touchstart,touchmove,touchend')
* @param {Function} callback Function to execute when catching the event
* @param {boolean} useCapture Boolean that dertemine if the event must use capture or not (default: false)
* @param {boolean} once Boolean that dertemine if the event must trigger only once
* @returns {{delegate: Function, undelegate: Function}|void}
*/
delegate(
$container,
'.selector',
'click',
({delegateTarget, ...e}) => {
console.log('target', delegateTarget, e.type);
},
);
Undelegate Event:
const instance = delegate(
$container, // HTMLElement
'.selector', // Selector
'click', // Event
({delegateTarget, ...e}) => {
console.log('target', delegateTarget, e.type);
}, // callback function
);
// When you need to remove the event..
instance.undelegate();
// You can alose delegate the event if need to rebind after that (be careful, you need to check if event is already binded to avoid multiple binding of the same function !)
instance.delegate();
👤 Maxime Lerouge
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a ⭐️ if this project helped you!
Copyright © 2024 Maxime Lerouge.
This project is MIT licensed.
This README was generated with ❤️ by readme-md-generator
FAQs
Welcome to @teamteanpm2024/rerum-ducimus-quis 👋 <img alt="Version" src="https://img.shields.io/npm/v/@teamteanpm2024/rerum-ducim
The npm package @teamteanpm2024/rerum-ducimus-quis receives a total of 0 weekly downloads. As such, @teamteanpm2024/rerum-ducimus-quis popularity was classified as not popular.
We found that @teamteanpm2024/rerum-ducimus-quis demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.