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

react-on-outside-event

v1.2.2

Published

Tools for detecting events outside of VDOM subtree, with portals support

Downloads

7

Readme

react-on-outside-event

Tools for detecting events outside of VDOM subtree, with portals support

NPM

Install

npm install --save react-on-outside-event

Usage

Usage with hook

For simple usage of hook, it is possible just to pass callback function to the hook with handler name. Then, handler, created from hook, must be passed to the container element. If You don't provide the handler name, it will be considered as 'onClick'.

import * as React from 'react';

import { useOutsideEvent } from 'react-on-outside-event';

const moveOutsideFunction = (event) => {
    console.log(event, 'User did move mouse outside of the container.');
};

const Example = () => {
    const outsideHandler = useOutsideEvent(moveOutsideFunction, 'onMouseMove');
    return <div onMouseMove={outsideHandler} />;
};

If You need to attach another function to the containing element, just pass it to the handler. It will be called with the event object.

import * as React from 'react';

import { useOutsideEvent } from 'react-on-outside-event';

const outsideClickFunction = (event) => {
    console.log(event, 'User did click outside of the container.');
};
const myFunctionForClickInsideOfContainer = (syntheticEvent) => {
    console.log(syntheticEvent, 'User did click inside of the container.');
};

const Example = () => {
    const outsideHandler = useOutsideEvent(outsideClickFunction);
    return <div onClick={outsideHandler(myFunctionForClickInsideOfContainer)} />;
};

Usage with container component

You may prefer to use react-on-outside-event with the containing component (e.g. for usage with class components). In this case, just pass children, event handler name and callback function to the "OutsideEventContainer".

import * as React from 'react';

import { OutsideEventContainer } from 'react-on-outside-event';

const copyOutsideFunction = (event) => {
    console.log(event, 'User did copy outside of the container.');
};

const Example = () => {
    return (
        <OutsideEventContainer eventHandlerName={'onCopy'} callback={copyOutsideFunction}>
            Any valid react elements
        </OutsideEventContainer>
    );
};

By default, OutsideEventContainer render "div" element, but it could be changed for any other element with passing it as "element: prop

import * as React from 'react';

import { OutsideEventContainer } from 'react-on-outside-event';

const clickOutsideFunction = (event) => {
    console.log(event, 'User did click outside of the container.');
};

const Example = () => {
    return (
        <OutsideEventContainer callback={clickOutsideFunction} element={'span'}>
            Any valid react elements
        </OutsideEventContainer>
    );
};

Also, You could pass as element any component, but appropriate handler must be passed down to the DOM.

import * as React from 'react';

import { OutsideEventContainer } from 'react-on-outside-event';

const focusOutsideFunction = (event) => {
    console.log(event, 'User did focus outside of the container.');
};

const OtherComponent = (props) => {
    return <p {...props} />;
};

const Example = () => {
    return (
        <OutsideEventContainer element={OtherComponent} callback={focusOutsideFunction} eventHandlerName={'onFocus'}>
            Any valid react elements
        </OutsideEventContainer>
    );
};

Notes

  • Just like with the "useOutsideEvent", if You do not provide "eventHandlerName" it will be considered as "onClick".
  • All other props passed to the OutsideEventContainer (excluding "callback", "eventHandlerName", "element") will be transfer to the element.
  • It is safe to use pure components as elements for OutsideEventContainer - all functions, created inside, are properly memoized.

License

MIT © d-lukashevich


These tools are created using create-react-hook.