最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to open Modal from another component in hooks? - Stack Overflow

programmeradmin0浏览0评论

In a React project, I have the requirement of opening Modal from another ponent. I found suggested questions from StackOverflow but, not yet convinced. As I need to make the Modal ponent reusable across all ponents. See the code below for reference

Homepage.js

const HomePage = () => {
  return (
    <>
      <button onClick={() => setLoginModalShow(true)}>Open Modal</button>
    </>
  );
};

I created the below file to export other files too, and make it useful in other ponents

monLogin.js

import LoginModal from "./LoginModal";

export const setLoginModalShow = (props) => {
  console.log("PROPS", props);
  return <LoginModal showModal={props} />;
};

And here is the Modal ponent

const LoginModal = (props) => {
  const [loginModalShow, setLoginModalShow] = useState(props.showModal);

  console.log("PROPS in MODAL", props);
  return (
    <>
      <Modal
        show={loginModalShow}
        onHide={setLoginModalShow}
        size="lg"
        aria-labelledby="contained-modal-title-vcenter"
        centered
      >
        <Modal.Header closeButton>
          <Modal.Title id="contained-modal-title-vcenter">Logout</Modal.Title>
        </Modal.Header>
        <Modal.Body>
          <h4>Are you sure to Logout?</h4>
        </Modal.Body>
        <Modal.Footer>
          <Button onClick={() => setLoginModalShow(false)}>Cancel</Button>
        </Modal.Footer>
      </Modal>
    </>
  );
};

Please refer to the code sandbox link: . After you visit the page click on the 'Open Modal' button

In a React project, I have the requirement of opening Modal from another ponent. I found suggested questions from StackOverflow but, not yet convinced. As I need to make the Modal ponent reusable across all ponents. See the code below for reference

Homepage.js

const HomePage = () => {
  return (
    <>
      <button onClick={() => setLoginModalShow(true)}>Open Modal</button>
    </>
  );
};

I created the below file to export other files too, and make it useful in other ponents

monLogin.js

import LoginModal from "./LoginModal";

export const setLoginModalShow = (props) => {
  console.log("PROPS", props);
  return <LoginModal showModal={props} />;
};

And here is the Modal ponent

const LoginModal = (props) => {
  const [loginModalShow, setLoginModalShow] = useState(props.showModal);

  console.log("PROPS in MODAL", props);
  return (
    <>
      <Modal
        show={loginModalShow}
        onHide={setLoginModalShow}
        size="lg"
        aria-labelledby="contained-modal-title-vcenter"
        centered
      >
        <Modal.Header closeButton>
          <Modal.Title id="contained-modal-title-vcenter">Logout</Modal.Title>
        </Modal.Header>
        <Modal.Body>
          <h4>Are you sure to Logout?</h4>
        </Modal.Body>
        <Modal.Footer>
          <Button onClick={() => setLoginModalShow(false)}>Cancel</Button>
        </Modal.Footer>
      </Modal>
    </>
  );
};

Please refer to the code sandbox link: https://codesandbox.io/s/nameless-cdn-70zuq. After you visit the page click on the 'Open Modal' button

Share Improve this question edited May 8, 2021 at 9:20 user15813571 asked May 8, 2021 at 3:44 PranavPranav 1,6463 gold badges29 silver badges62 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

You want to control the show/hide from the parent ponent

const HomePage = () => {
  const [showLogin, setShowLogin] = useState(false);
  return (
    <>
      <button onClick={() => setShowLogin(true)}>Open Modal</button>
      <LoginModal show={showLogin} close={() => setShowLogin(false)} />
    </>
  );
};
<Modal
        show={props.show}
        cancel={props.close}
...

Here is a working example:

https://codesandbox.io/s/nice-euclid-d0dw0

发布评论

评论列表(0)

  1. 暂无评论