react-demo项目:自定义实现一个弹框Dialog组件

弹框组件的基本项目都会使用到,这次自定义实现一个简单的弹框组件。
显示标题,内容以及底部
主要用到的点:https://zh-hans.reactjs.org/docs/portals.html

Portal 提供了一种将子节点渲染到存在于父组件以外的 DOM 节点的优秀的方案。

ReactDOM.createPortal(child, container)

第一个参数(child)是任何可渲染的 React 子元素,例如一个元素,字符串或 fragment。第二个参数(container)是一个 DOM 元素。

代码如下

src\components\Dialog\index.jsx文件


import React, { forwardRef, useEffect, useMemo, useState } from 'react'
import ReactDOM from 'react-dom';
import style from './index.css';

function Dialog(props) {
  const { visible = false, title, children, footer } = props;

  useEffect(() => {
    // 查找dialog节点
    let dom = document.getElementById('dialog');

    // 存在即删除
    (!visible && dom) && document.body.removeChild(dom);

    // 设置属性id
    let divDialog = document.createElement('div');
    divDialog.setAttribute('id', 'dialog');
    divDialog.setAttribute('class', 'dialog');
    document.body.append(divDialog)

  }, [])

  return (
    <>
      {
        (document.getElementById('dialog') && visible) && ReactDOM.createPortal(
          <div className={style['H-Dialog-overview']}>
            <div className={style['H-Dialog-inner']}>
              <div className={style['dialog-header']}>
                <h3>{title}</h3>

              </div>
              <div className={style['dialog-body']}>
                {children}
              </div>
              <div className={style['dialog-footer']}>
                {footer}
              </div>

            </div>
          </div>, document.getElementById('dialog'))
      }
    </>
  )

}

export default Dialog

src\components\Dialog\index.css文件

.dialog {

}
.H-Dialog-overview {
  /* 设置弹框背景以及无法点击页面*/
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background-color: rgba(0, 0,0,0.6);
  display: flex;
  justify-content: center;
  
}
.H-Dialog-inner {
  height: 200px;
  width: 400px;
  background-color: #fff;
  position: absolute;
  top: 20vh;
  padding: 20px;
}
.dialog-header {
  margin-bottom: 10px;
}
.dialog-body{

}
.dialog-footer {
  position: absolute;
  bottom: 20px;
  margin: auto;
  text-align: center;
  
}

组件使用

src\pages\Home\index.jsx文件

import { Button } from 'antd';
import React, { useState } from 'react';
import Dialog from '../../components/Dialog/index.jsx'

export default function Home() {

  const [visible, setVisible] = useState(false)
  return (
    <div className="H-Home">
      <h2>home</h2>
      <h4>ui</h4>
      <div>
        <Button type='primary' onClick={() => {
          setVisible(true)
        }}>计算</Button>
      </div>

      <Dialog
        visible={visible}
        title={"这是一个弹窗"}
        footer={
          <>
            <Button onClick={() => {
              setVisible(false)
            }}>确定</Button>
          </>
        }
      >
        <div>
          hello
        </div>
      </Dialog>
    </div>
  )
}

效果图

在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值