react native实现model效果/底部弹出框/中间弹框/附代码

近期项目中用到一些弹框界面,经过几次优化后觉得挺好用,所以分享给大家。

效果

弹框.gif

思路

实现方法很简单,就做几个动画,没什么可说的。可以根据自己需求做一些调整。

导入组件

  1. 新建一个js文件,将代码复制过去。我是放在coverLayer文件中。
  2. 导入该组件
import CoverLayer from '../../../widgets/coverLayer';
  1. 在需要弹框的界面外层添加该组件并添加ref引用(具体位置根据情况而定,防止遮挡)
render() {
    return(
        <View>

               ......

              {/* 在合适位置添加组件 */}
              <CoverLayer ref={ref => this.coverLayer = ref}/>
        </view>
    )
}

使用组件

该组件对外提供3个可自定义的属性

coverLayerColor: PropTypes.string, //弹框背景颜色
coverLayerEvent: PropTypes.func, // 点击背景后的回调
renderContent: PropTypes.func // 渲染弹框内容的方法

提供2个控制显示方法和一个控制隐藏方法

/*** 显示弹框
   *    displayMode: 弹出方式(从底部/从中间弹出)
   */
show(displayMode);

/*** 显示弹框
   * renderContent: 内容渲染方法
   * coverLayerEvent: 点击背景的回调方法
   * displayMode: 弹出方式(从底部/从中间弹出)
   */
showWithOptions(renderContent,coverLayerEvent,displayMode);

/*** 隐藏弹框 ***/
hide();
  

使用方法有两种,建议使用第二种方法

方法一:在组件中添加属性,然后在合适的地方调用组件的show和hide方法控制显示和隐藏。在一个界面多个弹框的情况下需要在renderContent方法中判断显示哪一个弹框,复杂度增加,所以建议使用第二种方法。

<CoverLayer ref={ref => this.coverLayer = ref}
            renderContent={()=>{return <View></View>}}
            coverLayerEvent={()=>console.log("点击了背景")}
            coverLayerColor="rgba(0,0,0,0.2)"
/>

// 显示
showCoverLayer() {
    this.coverLayer.show();
}

// 隐藏
hideCoverLayer() {
    this.coverLayer.hide();
}

方法二:调用组件提供的showWithContent方法。调用该方法后会自动显示弹框,只需要在合适的位置调用hide隐藏方法

showPopupView() {
    // 根据传入的方法渲染并弹出
    this.coverLayer.showWithContent(
                ()=> {
                    return (
                        <View style={{height:100,width:100,backgroundColor:"red"}}>
                        </View>
                    )
                },
            ()=>this.coverLayer.hide(),
            CoverLayer.popupMode.bottom
        )
    }

 /*** 组件提供了一个类似枚举的弹出方式选项popupMode,
    * 可以直接使用导入的组件名.popupMode.center或组件名.popupMode.bottom控制弹出方式。
    * 当然直接传指定字符串也可以
    */

// 隐藏
hideCoverLayer() {
    this.coverLayer.hide();
}

附上完整代码

import React, { Component , PropTypes } from 'react';

import {
    TouchableOpacity,
    View,
    Animated,
    Dimensions
} from 'react-native';

const c_duration = 200;
const c_deviceHeight = Dimensions.get("window").height;
export default class CoverLayer extends Component {

    static propTypes = {
        coverLayerColor:PropTypes.string,
        coverLayerEvent:PropTypes.func,
        renderContent:PropTypes.func
    };

    static popupMode = {
        center:"center",
        bottom:"bottom"
    };

    // 构造
    constructor(props) {
        super(props);
        // 初始状态
        this.state = {
            isShow:false,
            opacityValue:new Animated.Value(0),
            scaleValue:new Animated.Value(1.1),
            bottom:new Animated.Value(-c_deviceHeight),
            renderContent:this.props.renderContent,
            coverLayerEvent:this.props.coverLayerEvent,
            displayMode:null
        };
        this.showAnimated = null;
        this.hideAnimated = null;
    }

    /**
     * 显示弹框(该方法是为了简化一个界面有多个弹框的情况)
     * renderContent: func, 渲染弹框内容的方法, 会覆盖this.props.renderContent
     * coverLayerEvent: func, 点击背景触发的事件, 会覆盖this.props.coverLayerEvent
     **/
    async showWithContent(renderContent,coverLayerEvent,displayMode) {

        if (this.state.isShow) {
            this.hide(async ()=>{
                await this.setState({
                    coverLayerEvent:coverLayerEvent,
                    renderContent:renderContent
                });

                this.show(displayMode);
            })
        } else {
            await this.setState({
                coverLayerEvent:coverLayerEvent,
                renderContent:renderContent
            });

            this.show(displayMode);
        }
    }

    // 显示弹框
    show(displayMode) {
        this.setState({
            displayMode:displayMode,
            isShow:true
        });

        if (CoverLayer.popupMode.bottom == displayMode) {
            this.showAnimated = this.showFromBottom;
            this.hideAnimated = this.hideFromBottom;
        } else {
            this.showAnimated = this.showFromCenter;
            this.hideAnimated = this.hideFromCenter;
        }

        Animated.parallel([
            Animated.timing(this.state.opacityValue, {
                toValue: 1,
                duration: c_duration
            }),
            this.showAnimated()
        ]).start();
    }


    // 从中间弹出界面
    showFromCenter() {
        return (
            Animated.timing(this.state.scaleValue, {
                toValue: 1,
                duration: c_duration
            })
        )
    }


    // 从底部弹出界面
    showFromBottom() {
        return (
            Animated.timing(this.state.bottom, {
                toValue: 0,
                duration: c_duration
            })
        )
    }


    // 隐藏弹框
    hide(callback) {
        Animated.parallel([
            Animated.timing(this.state.opacityValue, {
                toValue: 0,
                duration: c_duration
            }),
            this.hideAnimated()
        ]).start(async ()=> {
            await this.setState({isShow: false});
            callback && callback();
        });
    }

    //从中间隐藏
    hideFromCenter() {
        return (
            Animated.timing(this.state.scaleValue, {
                toValue: 1.1,
                duration: c_duration
            })
        )
    }

    // 从底部隐藏
    hideFromBottom() {
        return (
            Animated.timing(this.state.bottom, {
                toValue: -c_deviceHeight,
                duration: c_duration
            })
        )
    }

    render() {
        return(
            this.state.isShow &&
            <Animated.View style={{width:DEVICE_WIDTH,justifyContent:CoverLayer.popupMode.bottom == this.state.displayMode  ? 'flex-end' : 'center',
                                   alignItems:'center',backgroundColor:this.props.coverLayerColor ? this.props.coverLayerColor : 'rgba(0,0,0,0.4)',
                                   position:'absolute',top:0,bottom:0,opacity: this.state.opacityValue}}>
                <TouchableOpacity style={{width:DEVICE_WIDTH,justifyContent:'center',alignItems:'center',position:'absolute',top:0,bottom:0}}
                                  activeOpacity={1}
                                  onPress={()=>{this.state.coverLayerEvent && this.state.coverLayerEvent()}}/>
                <Animated.View style={CoverLayer.popupMode.bottom == this.state.displayMode ? {bottom:this.state.bottom} : {transform: [{scale:this.state.scaleValue}]}}>
                    {this.state.renderContent && this.state.renderContent()}
                </Animated.View>
            </Animated.View>
        );
    }
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,053评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,527评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,779评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,685评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,699评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,609评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,989评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,654评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,890评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,634评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,716评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,394评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,976评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,950评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,191评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,849评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,458评论 2 342