https://github.com/afeiship/react-isolate-event-container
A container that prevents certain events from propagating outside of the container.
https://github.com/afeiship/react-isolate-event-container
event isolate prevent propagation react
Last synced: 2 months ago
JSON representation
A container that prevents certain events from propagating outside of the container.
- Host: GitHub
- URL: https://github.com/afeiship/react-isolate-event-container
- Owner: afeiship
- License: mit
- Created: 2019-05-22T06:25:05.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-21T08:03:47.000Z (over 4 years ago)
- Last Synced: 2025-03-08T19:48:25.277Z (3 months ago)
- Topics: event, isolate, prevent, propagation, react
- Language: JavaScript
- Size: 171 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# react-isolate-event-container
> A container that prevents certain events from propagating outside of the container.[![version][version-image]][version-url]
[![license][license-image]][license-url]
[![size][size-image]][size-url]
[![download][download-image]][download-url]## installation
```shell
npm install -S @jswork/react-isolate-event-container
```## properties
| Name | Type | Required | Default | Description |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| className | string | false | - | The extended className for component. |
| items | array | false | [] | React events list. |## usage
1. import css
```scss
@import "~@jswork/react-isolate-event-container/dist/style.css";// or use sass
@import "~@jswork/react-isolate-event-container/dist/style.scss";// customize your styles:
$react-isolate-event-container-options: ()
```
2. import js
```js
import ReactDemokit from '@jswork/react-demokit';
import React from 'react';
import ReactDOM from 'react-dom';
import ReactIsolateEventContainer from '@jswork/react-isolate-event-container';
import './assets/style.scss';class App extends React.Component {
handleClick = (e) => {
console.log('inner click1');
};handleOutterClick = (e) => {
console.log('outter click2');
};handleCntClick = (e) => {
console.log('container click3');
};render() {
return (
I am isolated
I am not isolated
);
}
}ReactDOM.render(, document.getElementById('app'));
```
## documentation
- https://afeiship.github.io/react-isolate-event-container/## license
Code released under [the MIT license](https://github.com/afeiship/react-isolate-event-container/blob/master/LICENSE.txt).[version-image]: https://img.shields.io/npm/v/@jswork/react-isolate-event-container
[version-url]: https://npmjs.org/package/@jswork/react-isolate-event-container[license-image]: https://img.shields.io/npm/l/@jswork/react-isolate-event-container
[license-url]: https://github.com/afeiship/react-isolate-event-container/blob/master/LICENSE.txt[size-image]: https://img.shields.io/bundlephobia/minzip/@jswork/react-isolate-event-container
[size-url]: https://github.com/afeiship/react-isolate-event-container/blob/master/dist/react-isolate-event-container.min.js[download-image]: https://img.shields.io/npm/dm/@jswork/react-isolate-event-container
[download-url]: https://www.npmjs.com/package/@jswork/react-isolate-event-container