Giter Site home page Giter Site logo

trendingtechnology / react-outerclick Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dimitarchristoff/react-outerclick

0.0 3.0 0.0 496 KB

HOC wrapper for React Components (class) to handle outside clicks with a frugal document event strategy.

Home Page: http://dimitarchristoff.github.io/react-outerclick/

JavaScript 97.39% HTML 2.61%

react-outerclick's Introduction

react-outerclick

HOC wrapper with frugal document event strategy

NB: this will work with React Classes, not with stateless components

Get a callback when a click happens outside of your component. If your React class implements handleOuterClick, it will get called when a click outside of the root node for your element takes place.

Installation

npm i react-outerclick

Usage

As a HOC, you can use the experimental decorator style:

import React from 'react';
import outerClick from 'react-outerclick';

@outerClick
class Foo extends React.Component {

  state = {
    opened: true
  };

  handleOuterClick(event){
    this.setState({
        opened: false
    });
  }

  render(){
    return <div>Foo. Click elsewhere</div>;
  }
}

export default Foo;

Alternatively, without stage-0 and babel-plugin-transform-decorators-legacy, this looks like so:

import React from 'react';
import outerClick from 'react-outerclick';

class Foo extends React.Component {

  constructor(props){
    super(props);
    this.state = {
        opened: true
    };
  }

  handleOuterClick(event){
    this.setState({
        opened: false
    });
  }

  render(){
    return <div>Foo. Click elsewhere</div>;
  }
}

// decorate here:
export default outerClick(Foo);

Why?

Because:

  • need to be able to do this with a low footprint - so a single document event handler for all elements that need it.
  • gets element.ownerDocument correctly so can work in popups/tearoffs, unlike other implementations

Limitations

Hot Module Reloading (react-hmre, react-hot-loader etc) any component that has an outerClick handler will cause the outer click functionality to fail as it's not going to find the old component instance and there is no lifecycle method that is available to refresh the event subscriptions.

Found an issue, or want to contribute?

If you find an issue, want to start a discussion on something related to this project, or have suggestions on how to improve it? Please create an issue!

See an error and want to fix it? Want to add a file or otherwise make some changes? All contributions are welcome!

License

MIT

react-outerclick's People

Contributors

dimitarchristoff avatar

Watchers

 avatar  avatar  avatar

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.