Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
react-modal-store
Advanced tools
Centralized management of modal. Manage visible prop and handle onClose event Automatically
$ npm install react-model-store --save
import React, { useContext } from 'react';
import ReactDOM from 'react-dom';
import { Modal } from 'antd';
import { ModalStore, useModal } from 'react-model-store';
function Modal1({ text, visible, onCancel, afterClose }) {
return (
<Modal title="It's m1" visible={visible} onCancel={onCancel} afterClose={afterClose}>
<div>{text}</div>
</Modal>
);
}
function Modal2({ name, visible, onCancel, afterClose }) {
return (
<Modal title="It's m2" visible={visible} onCancel={onCancel} afterClose={afterClose}>
<div>{name}</div>
</Modal>
);
}
const modalMap = {
m1: Modal1,
m2: Modal2,
};
function App() {
return (
<ModalStore modalMap={modalMap} destroyOnClose="afterClose">
<Content />
</ModalStore>
);
}
function Content() {
const dispatchModal = useModal();
return (
<div>
<button type="button" onClick={() => dispatchModal('m1', { text: 'm1 content' })}>
show m1
</button>
<button type="button" onClick={() => dispatchModal('m2', { name: 'm2 content' })}>
show m2
</button>
</div>
);
}
Prop | Description | Type | Default |
---|---|---|---|
visiblePropName | the prop name that controls the modal display | string | 'visible' |
onClosePropName | the prop name that closes the modal by set visible = false | string | 'onCancel' |
destroyOnClose | Whether to unmount modal on close, if this value is a string, it'll unmount when calling this method instead of onClosePropName | `boolean | string` |
modalMap | all the modals by key-value | object |
The hook return a function to open a new modal.
const dispatchModal = useModal();
<button onClick={() => dispatchModal('key', {})}></button>;
Copyright (c) 2020-present xiemengxiong
FAQs
global manage react modal
The npm package react-modal-store receives a total of 2 weekly downloads. As such, react-modal-store popularity was classified as not popular.
We found that react-modal-store demonstrated a not healthy version release cadence and project activity because the last version was released 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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.