npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-event-target-hook

v1.3.1

Published

Create react hook of EventTarget, Attach event & listener without any side effect.

Downloads

35

Readme

createEventTargetHook

GitHub license GitHub issues GitHub stars GitHub forks Build Status

Create hooks of EventTarget and no worry about side effect

Create the hook to register native event like window.addEventListener, and cleanup (remove) automatically.

Installation

$ npm install create-event-target-hook

Compare

If you have use some native event in React, the cleanup show in below is really common

//useCustom
useEffect(() => {
  function cb1() {
    console.log('click');
  }
  function cb2() {
    console.log('resize');
  }
  function cb3() {
    console.log('touch');
  }
  window.addEventListener('click', cb1);
  window.addEventListener('resize', cb2);
  window.addEventListener('touch', cb3);
  return () => {
    window.removeEventListener('click', cb1);
    window.removeEventListener('resize', cb2);
    window.removeEventListener('touch', cb3);
  };
},[]);

Using createEventTargetHook

const useWindow = createEventTargetHook(window);
//useCustom
useWindow('click', () => console.log('click'));
useWindow('resize', () => console.log('resize'));
useWindow('touch', () => console.log('touch'));

Demo

What did createEventTargetHook do?

  1. I create a curry function, and make a corresponding custom hooks

  2. Only addEventListener when mount, I promise.

  3. I keep a reference of the annoymous callback, so I can remove the annoymous listener.

  4. The function of cleaning the event listener will follow the hook life-cycle.

Advanced usage

This customHooks will return an array

We assume useImage has already made. (by createEventTargetHook)

const [$img, loadOff] = useImage('load', () => console.log('load'));

$img

$img is the EventTarget, sometimes we hope we could modify its attribute.

off

You can use off to remove listener.

  1. Remove the event listener initiative.
const [$img, off] = useImg('xxx', () => {});
// In some condition
{
  off(); 
}
  1. Remove when something done.

Example

import createEventTargetHook from 'create-event-target-hook';
const useImage = createEventTargetHook(new Image());
const demo = () => {
  const [$img, loadOff] = useImage('load', getSize);
  function getSize() {
    loadOff();
  }
  return <button onClick={onClick}> Get Image </button>;
};

More...

useFileReader

import createEventTargetHook from 'create-event-target-hook';
const useFileReader = createEventTargetHook(new FileReader());
  
const demo = () => {
  const [$reader, offEvent] = useFileReader('loadend', () =>
    console.log('load end')
  );
  const onInputChange = e => {
    const files = e.currentTarget.files;
    $reader.readAsDataURL(files[0]);
  };
  return (
    <input
      onChange={onInputChange}
      type="file"
      id="upload-file"
      placeholder="Upload a Picture"
    />
  );
};