react二次封装Modal和Drawer组件

2023-12-03 23:28

本文主要是介绍react二次封装Modal和Drawer组件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录

  • react二次封装Modal和Drawer组件
    • 01:Modal组件
      • 01-1 BaseModal.jsx
      • 01-2 使用BaseModal组件
      • 01-3 效果
    • 02:Drawer组件
      • 02-1 BaseDrawer.jsx组件
      • 02-2 使用BaseDrawer组件
      • 02-3效果

react二次封装Modal和Drawer组件

  • npm i styled-components

01:Modal组件

01-1 BaseModal.jsx

import { Modal } from 'antd';
import React, { useState } from 'react';
import styled from "styled-components";
const BaseModal = (props) => {const { showModal, setShowModal } = propsconst [confirmLoading,setConfirmLoading] = useState(false) // 确定按钮的loadingconst modalText = '我是内容'// 确定 - 涉及异步请求const handleOk = () => {setConfirmLoading(true);setTimeout(() => {setShowModal(false)setConfirmLoading(false);}, 2000);};// 取消const handleCancel = () => {setShowModal(false)};return (<CustomModaltitle='标题'open={showModal}onOk={handleOk}confirmLoading={confirmLoading}onCancel={handleCancel}maskClosable={false}okText='确定1'cancelText='取消1'><p>{modalText}</p></CustomModal>);
};
export default BaseModal;// css
const CustomModal = styled(({ ...props }) => <Modal {...props} />)`.ant-modal-body {padding: 20px; // 设置自定义的padding值background: pink;}
`;

01-2 使用BaseModal组件

import { Button } from 'antd';
import React, { useState } from 'react';
import BaseModal from "./BaseModal";export default function App(props) {const [showModal, setShowModal] = useState(false)// 打开const openModal = () => {setShowModal(true)}return (<div className='content'><Button type="primary" onClick={openModal}>打开</Button><BaseModal showModal={showModal} setShowModal={setShowModal}></BaseModal></div>)
}

01-3 效果

在这里插入图片描述

02:Drawer组件

02-1 BaseDrawer.jsx组件

import { Button, Drawer, Space } from "antd";
import React, { useState } from "react";
import styled from "styled-components";const BaseDrawer = (props) => {const { showDrawer, setShowDrawer } = props;const [confirmLoading, setConfirmLoading] = useState(false); // 确定按钮的loadingconst modalText = "我是内容";// 取消const onClose = () => {setShowDrawer(false);};// 确定const onSubmit = () => {setConfirmLoading(true);setTimeout(() => {setShowDrawer(false);setConfirmLoading(false);}, 2000);};return (<CustomDrawertitle="标题"placement="right"size="large"onClose={onClose}open={showDrawer}footer={<Space style={{ display: "flex", justifyContent: "end" }}><Button onClick={onClose}>取消</Button><Button type="primary" onClick={onSubmit} loading={confirmLoading}>确定</Button></Space>}maskClosable={false}getContainer={false}><p>{modalText}</p></CustomDrawer>);
};
export default BaseDrawer;// css
const CustomDrawer = styled(({ ...props }) => <Drawer {...props} />)`.ant-drawer-body {padding: 20px; // 设置自定义的padding值background: pink;}
`;

02-2 使用BaseDrawer组件

import { Button } from 'antd';
import React, { useState } from 'react';
import BaseDrawer from "./BaseDrawer";export default function App(props) {const [showDrawer, setShowDrawer] = useState(false)// 打开const openDrawer = () => {setShowDrawer(true)}return (<div className='content'><Button type="primary" onClick={openDrawer}>打开</Button><BaseDrawer showDrawer={showDrawer} setShowDrawer={setShowDrawer}></BaseDrawer></div>)
}

02-3效果

在这里插入图片描述

这篇关于react二次封装Modal和Drawer组件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/451253

相关文章

Vue项目的甘特图组件之dhtmlx-gantt使用教程和实现效果展示(推荐)

《Vue项目的甘特图组件之dhtmlx-gantt使用教程和实现效果展示(推荐)》文章介绍了如何使用dhtmlx-gantt组件来实现公司的甘特图需求,并提供了一个简单的Vue组件示例,文章还分享了一... 目录一、首先 npm 安装插件二、创建一个vue组件三、业务页面内 引用自定义组件:四、dhtmlx

Vue ElementUI中Upload组件批量上传的实现代码

《VueElementUI中Upload组件批量上传的实现代码》ElementUI中Upload组件批量上传通过获取upload组件的DOM、文件、上传地址和数据,封装uploadFiles方法,使... ElementUI中Upload组件如何批量上传首先就是upload组件 <el-upl

前端知识点之Javascript选择输入框confirm用法

《前端知识点之Javascript选择输入框confirm用法》:本文主要介绍JavaScript中的confirm方法的基本用法、功能特点、注意事项及常见用途,文中通过代码介绍的非常详细,对大家... 目录1. 基本用法2. 功能特点①阻塞行为:confirm 对话框会阻塞脚本的执行,直到用户作出选择。②

如何使用CSS3实现波浪式图片墙

《如何使用CSS3实现波浪式图片墙》:本文主要介绍了如何使用CSS3的transform属性和动画技巧实现波浪式图片墙,通过设置图片的垂直偏移量,并使用动画使其周期性地改变位置,可以创建出动态且具有波浪效果的图片墙,同时,还强调了响应式设计的重要性,以确保图片墙在不同设备上都能良好显示,详细内容请阅读本文,希望能对你有所帮助...

CSS3 最强二维布局系统之Grid 网格布局

《CSS3最强二维布局系统之Grid网格布局》CS3的Grid网格布局是目前最强的二维布局系统,可以同时对列和行进行处理,将网页划分成一个个网格,可以任意组合不同的网格,做出各种各样的布局,本文介... 深入学习 css3 目前最强大的布局系统 Grid 网格布局Grid 网格布局的基本认识Grid 网

HTML5中下拉框<select>标签的属性和样式详解

《HTML5中下拉框<select>标签的属性和样式详解》在HTML5中,下拉框(select标签)作为表单的重要组成部分,为用户提供了一个从预定义选项中选择值的方式,本文将深入探讨select标签的... 在html5中,下拉框(<select>标签)作为表单的重要组成部分,为用户提供了一个从预定义选项中

前端 CSS 动态设置样式::class、:style 等技巧(推荐)

《前端CSS动态设置样式::class、:style等技巧(推荐)》:本文主要介绍了Vue.js中动态绑定类名和内联样式的两种方法:对象语法和数组语法,通过对象语法,可以根据条件动态切换类名或样式;通过数组语法,可以同时绑定多个类名或样式,此外,还可以结合计算属性来生成复杂的类名或样式对象,详细内容请阅读本文,希望能对你有所帮助...

禁止HTML页面滚动的操作方法

《禁止HTML页面滚动的操作方法》:本文主要介绍了三种禁止HTML页面滚动的方法:通过CSS的overflow属性、使用JavaScript的滚动事件监听器以及使用CSS的position:fixed属性,每种方法都有其适用场景和优缺点,详细内容请阅读本文,希望能对你有所帮助... 在前端开发中,禁止htm

Vue3中的动态组件详解

《Vue3中的动态组件详解》本文介绍了Vue3中的动态组件,通过`component:is=动态组件名或组件对象/component`来实现根据条件动态渲染不同的组件,此外,还提到了使用`markRa... 目录vue3动态组件动态组件的基本使用第一种写法第二种写法性能优化解决方法总结Vue3动态组件动态

spring-boot-starter-thymeleaf加载外部html文件方式

《spring-boot-starter-thymeleaf加载外部html文件方式》本文介绍了在SpringMVC中使用Thymeleaf模板引擎加载外部HTML文件的方法,以及在SpringBoo... 目录1.Thymeleaf介绍2.springboot使用thymeleaf2.1.引入spring