@abdulghani/react-promise-modal 中文文档教程

发布于 5年前 浏览 20 更新于 3年前

React Promise Modal

使用函数调用

Installation

npm

npm install @abdulghani/react-promise-modal

yarn

yarn add @abdulghani/react-promise-modal

Usage

  // other imports
  import createPromiseModal from "@abdulghani/react-promise-modal";

  // plug your component to it
  const showModal = createPromiseModal(MyModalComponent);

  // use it in your component/app
  const App = () => {
    const onClick = () => {
      showModal({
        title: "hello",
        body: "world",
        onConfirm: () => yourFunction(),
        // other configs
      });
    }

    return (
      <div>
        <button type="button" onClick={onClick}>Click Me</button>
      </div>
    );
  }

Setup your component

渲染您自己的 React 模态组件您的组件可以采用您想要的任何道具,并使用 showModal(config) config 对象填充道具。 并且您的组件需要在插入组件道具的组件内调用 onClose 方法以简单地关闭组件。

  // imports

  const MyModalComponent = props => {
    const { onClose } = props;  // plugged by the library
    const { title, body, onConfirm } = props; // plugged on your call

    const onOk = () => {
      onConfirm();
      onClose();  // also close the modal
    }

    return (
      <div className="modal">
        <div className="modal-header">
          {title}
        </div>
        <div className="modal-body">
          {body}
        </div>
        <div className="modal-footer">
          <button className="red" type="button" onClick={onClose}>Cancel</button>
          <button className="blue" type="button" onClick={onOk}>Ok</button>
        </div>
      </div>
    );
  }

If you have different/custom root node

如果您为您的应用程序具有/重命名不同的根节点。 您可以将 createPromiseModal 设置为指向您的节点 ID。

  const showModal = createPromiseModal(MyModalComponent, "my-custom-root"); // currently it takes string id

React Promise Modal

Render your own react modal component with a function call

Installation

npm

npm install @abdulghani/react-promise-modal

yarn

yarn add @abdulghani/react-promise-modal

Usage

  // other imports
  import createPromiseModal from "@abdulghani/react-promise-modal";

  // plug your component to it
  const showModal = createPromiseModal(MyModalComponent);

  // use it in your component/app
  const App = () => {
    const onClick = () => {
      showModal({
        title: "hello",
        body: "world",
        onConfirm: () => yourFunction(),
        // other configs
      });
    }

    return (
      <div>
        <button type="button" onClick={onClick}>Click Me</button>
      </div>
    );
  }

Setup your component

Your component could take any props you want and fill the props with the showModal(config) config object. and your component going to need to call onClose method inside the component that's plugged to your component props to simply close the component.

  // imports

  const MyModalComponent = props => {
    const { onClose } = props;  // plugged by the library
    const { title, body, onConfirm } = props; // plugged on your call

    const onOk = () => {
      onConfirm();
      onClose();  // also close the modal
    }

    return (
      <div className="modal">
        <div className="modal-header">
          {title}
        </div>
        <div className="modal-body">
          {body}
        </div>
        <div className="modal-footer">
          <button className="red" type="button" onClick={onClose}>Cancel</button>
          <button className="blue" type="button" onClick={onOk}>Ok</button>
        </div>
      </div>
    );
  }

If you have different/custom root node

If you have/rename different root node for your application. you could set the createPromiseModal to point to your node id.

  const showModal = createPromiseModal(MyModalComponent, "my-custom-root"); // currently it takes string id
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文