ReactNative封装的优雅居中/底部弹出框

2024-06-01 17:08

本文主要是介绍ReactNative封装的优雅居中/底部弹出框,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

/** @Date: 2019-08-30 16:05:37* @Description: 真的不想每次都写个Modal了。* @Author: zhangji* @LastEditors: ZhangJi* @LastEditTime: 2019-09-02 11:16:51*/import React from "react";
import _ from "lodash";
import {View,StyleSheet,Component,Platform,ActivityIndicator,FlatList,Image,TouchableWithoutFeedback,TouchableOpacity,Text,Alert,Modal,RefreshControl,NativeModules,ScrollView,TekLoadingDialog,LayoutAnimation
} = 'react-native';/*** 通用弹出框,包括居中弹出框和底部弹出框* @param {Boolean} isVisible 控制是否可见* @param {?Boolean} isBottomView 可选,控制是否为底部弹出框样式,默认为居中弹出框* @param {?Boolean} isTouchMaskToClose 可选,控制是否点击阴影关闭弹窗,默认开启* @param {?String} title 可选,标题,默认为`提示`,只对居中弹窗生效* @param {?String} confirmText 可选,居中框的确认按钮描述,默认为`确 认`* @param {?JSX} customTitleView 可选,自定义title样式(包括居中和底部弹框),若该属性有值,会覆盖默认样式,当需要自定义按钮点击功能时可以用这个,* @param {?JSX} customBottomView 可选,自定义底部样式(包括居中和底部弹框),若该属性有值,会覆盖默认样式,当需要自定义按钮点击功能时可以用这个,** eg:` <MyModal*         isVisible={this.state.isVisible}*      >*          <Text>测试弹窗</Text>*      </MyModal>`*/
export default class MyModal extends Component {constructor(props) {super(props);this.title = props.title || "提示";this.confirmText = props.confirmText || "确 认";this.customTitleView = props.customTitleView? props.customTitleView: false;this.customBottomView = props.customBottomView? props.customBottomView: false;this.isBottomView = !!JSON.stringify(props.isBottomView)? this.props.isBottomView: false;this.isTouchMaskToClose = !!JSON.stringify(props.isTouchMaskToClose)? this.props.isTouchMaskToClose: true;this.state = {isVisible: this.props.isVisible || false};}setModalVisiable(state) {this.setState({isVisible: state});}componentWillReceiveProps(newProps) {if (!_.isEmpty(this.props, newProps)) {if (this.state.isVisible != newProps.isVisible) {this.setState({isVisible: newProps.isVisible});}}}render() {return (<ModalanimationType="fade"transparent={true}visible={this.state.isVisible}onRequestClose={() => {this.setModalVisiable(false);}}>{this.isBottomView ? (<View style={styles.bottomModalContainer}><TouchableOpacitystyle={styles.bottomMask}onPress={() => {this.setModalVisiable(false);}}/><View style={styles.bottomContent}>{this.props.children}</View>{this.customBottomView ? (this.customBottomView) : (<View style={styles.bottomBtns}><TouchableOpacityonPress={() => {this.setModalVisiable(false);}}><Viewstyle={[styles.bottomBtnsView,{ borderWidth: 0.5, borderColor: "#999" }]}><Textstyle={[styles.bottomBtnsText,{ color: "#333", fontFamily: "PingFangSC-Light" }]}>取消</Text></View></TouchableOpacity><TouchableOpacity onPress={() => {}}><Viewstyle={[styles.bottomBtnsView,{backgroundColor: "#417EFF",borderWidth: 0.5,borderColor: "#417EFF"}]}><Textstyle={[styles.bottomBtnsText,{ color: "#fff", fontWeight: "bold" }]}>确定</Text></View></TouchableOpacity></View>)}</View>) : (<View style={styles.modalContainer}><TouchableWithoutFeedbackonPress={() => {this.isTouchMaskToClose ? this.setModalVisiable(false) : null;}}><View style={styles.mask} /></TouchableWithoutFeedback><View style={styles.container}>{this.customTitleView ? (this.customTitleView) : (<Text style={styles.title}>{this.title}</Text>)}{this.props.children}<Viewstyle={{height: 0.5,width: appConfig.ScreenWidth - 42,backgroundColor: "#E5E5E5"}}/>{this.customBottomView ? (this.customBottomView) : (<TouchableOpacity onPress={() => this.setModalVisiable(false)}><Text style={styles.confirmBtn}>{this.confirmText}</Text></TouchableOpacity>)}</View></View>)}</Modal>);}
}const styles = StyleSheet.create({modalContainer: {flex: 1,justifyContent: "center",alignItems: "center",width: appConfig.ScreenWidth,height: appConfig.ScreenHeight},mask: {width: appConfig.ScreenWidth,height: appConfig.ScreenHeight,backgroundColor: "rgba(0,0,0,.4)",position: "absolute",left: 0,top: 0},container: {width: appConfig.ScreenWidth - 30,backgroundColor: "#FFF",borderTopLeftRadius: 9,borderTopRightRadius: 9,borderBottomLeftRadius: 9,borderBottomRightRadius: 9,justifyContent: "center",alignItems: "center"},title: {textAlign: "center",fontFamily: "PingFangSC-Semibold",fontSize: 16,color: "#333",marginTop: 18},confirmBtn: {color: "#417EFF",fontSize: 17,fontFamily: "PingFangSC-Semibold",marginBottom: 18,marginTop: 14.2,width: appConfig.ScreenWidth - 42,textAlign: "center"},bottomModalContainer: {flex: 1,justifyContent: "flex-end",width: appConfig.ScreenWidth,height: appConfig.ScreenHeight},bottomMask: {flex: 1,width: appConfig.ScreenWidth,marginBottom: -9,backgroundColor: "rgba(0,0,0,.4)"},content: {width: appConfig.ScreenWidth,backgroundColor: "#FFF",borderTopLeftRadius: 9,borderTopRightRadius: 9,paddingTop: 15},bottomBtns: {flexDirection: "row",alignItems: "center",justifyContent: "space-around",backgroundColor: "#fff",marginBottom: appConfig.StatusBarHeight == 44 ? 34 : 0,shadowColor: "#00000033",shadowOffset: { width: 0, height: -9 },shadowOpacity: 0.1,shadowRadius: 6,elevation: 10},bottomBtnsView: {width: 165,height: 42,borderRadius: 100,marginTop: 12,marginBottom: 12,justifyContent: "center",alignItems: "center"},bottomBtnsText: {fontSize: 16},bottomModalContainer: {flex: 1,justifyContent: "flex-end",width: appConfig.ScreenWidth,height: appConfig.ScreenHeight},bottomMask: {flex: 1,width: appConfig.ScreenWidth,backgroundColor: "#33333344",marginBottom: -9},bottomContent: {width: appConfig.ScreenWidth,backgroundColor: "#FFF",borderTopLeftRadius: 9,borderTopRightRadius: 9,paddingTop: 15}
});

这篇关于ReactNative封装的优雅居中/底部弹出框的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

SpringBoot中封装Cors自动配置方式

《SpringBoot中封装Cors自动配置方式》:本文主要介绍SpringBoot中封装Cors自动配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录SpringBoot封装Cors自动配置背景实现步骤1. 创建 GlobalCorsProperties

Java导入、导出excel用法步骤保姆级教程(附封装好的工具类)

《Java导入、导出excel用法步骤保姆级教程(附封装好的工具类)》:本文主要介绍Java导入、导出excel的相关资料,讲解了使用Java和ApachePOI库将数据导出为Excel文件,包括... 目录前言一、引入Apache POI依赖二、用法&步骤2.1 创建Excel的元素2.3 样式和字体2.

JAVA封装多线程实现的方式及原理

《JAVA封装多线程实现的方式及原理》:本文主要介绍Java中封装多线程的原理和常见方式,通过封装可以简化多线程的使用,提高安全性,并增强代码的可维护性和可扩展性,需要的朋友可以参考下... 目录前言一、封装的目标二、常见的封装方式及原理总结前言在 Java 中,封装多线程的原理主要围绕着将多线程相关的操

C++实现封装的顺序表的操作与实践

《C++实现封装的顺序表的操作与实践》在程序设计中,顺序表是一种常见的线性数据结构,通常用于存储具有固定顺序的元素,与链表不同,顺序表中的元素是连续存储的,因此访问速度较快,但插入和删除操作的效率可能... 目录一、顺序表的基本概念二、顺序表类的设计1. 顺序表类的成员变量2. 构造函数和析构函数三、顺序表

Go语言利用泛型封装常见的Map操作

《Go语言利用泛型封装常见的Map操作》Go语言在1.18版本中引入了泛型,这是Go语言发展的一个重要里程碑,它极大地增强了语言的表达能力和灵活性,本文将通过泛型实现封装常见的Map操作,感... 目录什么是泛型泛型解决了什么问题Go泛型基于泛型的常见Map操作代码合集总结什么是泛型泛型是一种编程范式,允

轻松掌握python的dataclass让你的代码更简洁优雅

《轻松掌握python的dataclass让你的代码更简洁优雅》本文总结了几个我在使用Python的dataclass时常用的技巧,dataclass装饰器可以帮助我们简化数据类的定义过程,包括设置默... 目录1. 传统的类定义方式2. dataclass装饰器定义类2.1. 默认值2.2. 隐藏敏感信息

Go信号处理如何优雅地关闭你的应用

《Go信号处理如何优雅地关闭你的应用》Go中的优雅关闭机制使得在应用程序接收到终止信号时,能够进行平滑的资源清理,通过使用context来管理goroutine的生命周期,结合signal... 目录1. 什么是信号处理?2. 如何优雅地关闭 Go 应用?3. 代码实现3.1 基本的信号捕获和优雅关闭3.2

C#如何优雅地取消进程的执行之Cancellation详解

《C#如何优雅地取消进程的执行之Cancellation详解》本文介绍了.NET框架中的取消协作模型,包括CancellationToken的使用、取消请求的发送和接收、以及如何处理取消事件... 目录概述与取消线程相关的类型代码举例操作取消vs对象取消监听并响应取消请求轮询监听通过回调注册进行监听使用Wa

JavaSE——封装、继承和多态

1. 封装 1.1 概念      面向对象程序三大特性:封装、继承、多态 。而类和对象阶段,主要研究的就是封装特性。何为封装呢?简单来说就是套壳屏蔽细节 。     比如:对于电脑这样一个复杂的设备,提供给用户的就只是:开关机、通过键盘输入,显示器, USB 插孔等,让用户来和计算机进行交互,完成日常事务。但实际上:电脑真正工作的却是CPU 、显卡、内存等一些硬件元件。

如何更优雅地对接第三方API

如何更优雅地对接第三方API 本文所有示例完整代码地址:https://github.com/yu-linfeng/BlogRepositories/tree/master/repositories/third 我们在日常开发过程中,有不少场景会对接第三方的API,例如第三方账号登录,第三方服务等等。第三方服务会提供API或者SDK,我依稀记得早些年Maven还没那么广泛使用,通常要对接第三方