Use bigfan modal and put all your modals in one place and prevent polluting the DOM with excessive nodes.
using npm:
npm i @bigfan/modal
using yarn:
yarn add @bigfan/modal
In your application entry point, wrap your app with the <Provider>
component and pass it your modal types.
index.js (entry point):
import React from "react";
import { Provider } from "@bigfan/modal";
import App from "./App";
const types = {
LOGIN: "LOGIN",
SIGNUP: "SIGNUP",
WARNING: "WARNING",
};
export default () => {
return (
<Provider types={types}>
<App />
</Provider>
);
};
Inject the <Scene>
component somewhere in your code where you want to display your modals and then map your modal types to the actual modals. The best place to put this component is your application layout component as shown in the following example.
Layout.js:
import React from "react";
import { Scene, useModal } from "@bigfan/modal";
import Login from "common/app/Login";
import Signup from "common/app/Signup";
import Warning from "common/app/Warning";
export default function Layout({ children }) {
const {
types: { LOGIN, SIGNUP, WARNING },
} = useModal();
const modals = {
[LOGIN]: Login,
[SIGNUP]: Signup,
[WARNING]: Warning,
};
return (
<styles.Wrapper>
<GlobalStyles />
<Nav />
<div className="content">{children}</div>
<Footer />
<Scene modals={modals} />
</styles.Wrapper>
);
}
You have to wrap each of your modals with a <Modal>
component.
common/app/Login.js:
import { Modal } from "@bigfan/modal";
export default function Login() {
return (
<Modal>
<div>My login modal</div>
</Modal>
);
}
At any component down the tree you can open any modal. In the following example, we want to open the Login modal from Navbar component:
NavBar.js:
import React from "react";
import { useModal } from "@bigfan/modal";
export default function NavBar() {
const {
openModal,
modals: { LOGIN },
} = useModal();
return <div onClick={() => openModal(LOGIN)} />;
}