美文网首页
react native toast (ios&andr

react native toast (ios&andr

作者: Nur__ | 来源:发表于2018-12-17 16:31 被阅读102次
QQ20181217-160818-HD.gif

今天我带来了Quark浏览器的toast

设置:

  • position => 位置
    ToastPosition.top
    ToastPosition.center
    ToastPosition.bottom默认⚠️
  • duration => 时间
    DURATION.LENGTH_SHORT2秒
    DURATION.LENGTH_NORMAL3秒 默认⚠️
    DURATION.LENGTH_LOG4秒

使用方式

DeviceEventEmitter.emit('toast', 'show toast')

<NurToast
    duration={DURATION.LENGTH_NORMAL}
    position={ToastPosition.center}/>
center.gif
<NurToast
    duration={DURATION.LENGTH_NORMAL}
    position={ToastPosition.top}/>
top.gif

你把这NurToast.js直接调用indexjs或者是mainjs 就OK了比如:

export default class index extends Component {
    render() {
        return (
            ...
  
                {/**就一行*/}
                <NurToast/>
            ...
    }
}

然后想显示toast的时候通过DeviceEventEmitter.emit('toast', msj)这方法把信息发送到NurToast.js就好了

NurToast.js:

import React, {Component} from 'react'
import {DeviceEventEmitter, Dimensions, LayoutAnimation, Platform, Text, UIManager, View} from "react-native";

const window = Dimensions.get('window');

export const ToastPosition = {bottom: 8, center: 2.2, top: 1.2};
export const DURATION = {
    LENGTH_SHORT: 2000,
    LENGTH_NORMAL: 3000,
    LENGTH_LOG: 4000,
};
export default class NurToast extends Component {


    propTypes: {
        ...ViewPropTypes,
        position: PropTypes.number,
        duration: PropTypes.number,
    };

    // 构造
    constructor(props) {
        super(props);

        this.toastCloseNum = 0;
        this.toastCloseNumOld = 0;
        // 初始状态
        this.state = {
            toastR: window.width,
            toastMessage: ''
        };
    }


    componentDidMount() {
        this.toastListner = DeviceEventEmitter.addListener('toast', (text) => {
            this.showToast(text);
        })
    }

    componentWillUnmount() {
        this.toastListner && this.toastListner.remove();
        this.timer && clearTimeout(this.timer)
    }


    /**
     * show toast
     * @param msj
     */
    showToast(msj) {
        let state = this.state;
        if (!state.toastR && state.toastMessage !== msj) {
            this.toastCloseNum += 1;
            this.anim();
            this.setState({
                toastR: window.width,
            });

            this.timer = setTimeout(() => {
                this.anim();
                this.setState({
                    toastR: null,
                    toastMessage: msj,
                });
            }, 300);
            this.closeToast();
        } else if (state.toastR) {
            this.toastCloseNum += 1;

            this.anim();
            this.setState({
                toastR: null,
                toastMessage: msj,
            });
            this.closeToast();
        }
    }

    /**
     * toast close
     */
    closeToast() {
        this.timer = setTimeout(() => {
            this.toastCloseNumOld += 1;
            if (this.toastCloseNumOld === this.toastCloseNum) {
                this.toastCloseNumOld = 0;
                this.toastCloseNum = 0;
                this.anim();
                this.setState({
                    toastR: window.width,
                });
            }
        }, this.props.duration || DURATION.LENGTH_NORMAL);
    }

    /**
     * set动画效果
     */
    anim() {
        if (Platform.OS === 'android') {
            UIManager.setLayoutAnimationEnabledExperimental(true);
        }
        LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut);
    }


    render() {
        return <View style={{
            backgroundColor: 'black',
            minWidth: 100,
            paddingRight: 20,
            paddingLeft: 10,
            paddingTop: 10,
            paddingBottom: 10,
            marginRight: 20,
            minHeight: 50,
            borderBottomRightRadius: 50,
            borderTopRightRadius: 50,
            position: 'absolute',
            justifyContent: 'center',
            right: this.state.toastR,
            alignItems: 'center',
            opacity: 0.9,
            bottom: (window.height / (this.props.position || ToastPosition.bottom)),
        }}>

            <Text style={{
                color: 'white',
                fontSize: 16,
                backgroundColor: 'transparent',
            }}>{this.state.toastMessage}</Text>

        </View>
    }
}

相关文章

网友评论

      本文标题:react native toast (ios&andr

      本文链接:https://www.haomeiwen.com/subject/rnrckqtx.html