對于Android開發(fā)工程師來說减细,Toast在熟悉不過了,用它來顯示一個提示信息赢笨,并自動隱藏未蝌。在我們開發(fā)RN應(yīng)用的時候,我門也要實(shí)現(xiàn)這樣的效果茧妒,就一點(diǎn)困難了萧吠,倒也不是困難,只是需要我們?nèi)ミm配桐筏,RN官方提供了一個API ToastAndroid纸型,看到這個名字應(yīng)該猜出,它只能在Android中使用梅忌,在iOS中使用沒有效果狰腌,所以,我們需要適配或者我們自定義一個牧氮,今天的這篇文章就是自定義一個Toast使其在Android和iOS都能運(yùn)行琼腔,并有相同的運(yùn)行效果。
源碼傳送門
定義組件
import React, {Component} from 'react';
import {
StyleSheet,
View,
Easing,
Dimensions,
Text,
Animated
} from 'react-native';
import PropTypes from 'prop-types';
import Toast from "./index";
const {width, height} = Dimensions.get("window");
const viewHeight = 35;
class ToastView extends Component {
static propTypes = {
message:PropTypes.string,
};
dismissHandler = null;
constructor(props) {
super(props);
this.state = {
message: props.message !== undefined ? props.message : ''
}
}
render() {
return (
<View style={styles.container} pointerEvents='none'>
<Animated.View style={[styles.textContainer]}><Text
style={styles.defaultText}>{this.state.message}</Text></Animated.View>
</View>
)
}
componentDidMount() {
this.timingDismiss()
}
componentWillUnmount() {
clearTimeout(this.dismissHandler)
}
timingDismiss = () => {
this.dismissHandler = setTimeout(() => {
this.onDismiss()
}, 1000)
};
onDismiss = () => {
if (this.props.onDismiss) {
this.props.onDismiss()
}
}
}
const styles = StyleSheet.create({
textContainer: {
backgroundColor: 'rgba(0,0,0,.6)',
borderRadius: 8,
padding: 10,
bottom:height/8,
maxWidth: width / 2,
alignSelf: "flex-end",
},
defaultText: {
color: "#FFF",
fontSize: 15,
},
container: {
position: "absolute",
left: 0,
right: 0,
top: 0,
bottom: 0,
flexDirection: "row",
justifyContent: "center",
}
});
export default ToastView
首先導(dǎo)入我們必須的基礎(chǔ)組件以及API踱葛,我們自定義組件都需要繼承它展姐,Dimensions用于獲取屏幕尺寸躁垛,Easing用于設(shè)置動畫的軌跡運(yùn)行效果,PropTypes用于對屬性類型進(jìn)行定義圾笨。
render方法是我們定義組件渲染的入口教馆,最外層view使用position為absolute,并設(shè)置left,right,top,bottom設(shè)置為0擂达,使其占滿屏幕土铺,這樣使用Toast顯示期間不讓界面監(jiān)聽點(diǎn)擊事件。內(nèi)層View是Toast顯示的黑框容器板鬓,backgroundColor屬性設(shè)置rgba形式悲敷,顏色為黑色透明度為0.6。并設(shè)置圓角以及最大寬度為屏幕寬度的一半俭令。然后就是Text組件用于顯示具體的提示信息后德。
我們還看到propTypes用于限定屬性message的類型為string。constructor是我們組件的構(gòu)造方法抄腔,有一個props參數(shù)瓢湃,此參數(shù)為傳遞過來的一些屬性。需要注意赫蛇,構(gòu)造方法中首先要調(diào)用super(props),否則報錯绵患,在此處,我將傳遞來的值設(shè)置到了state中悟耘。
對于Toast落蝙,顯示一會兒自動消失,我們可以通過setTimeout實(shí)現(xiàn)這個效果暂幼,在componentDidMount調(diào)用此方法筏勒,此處設(shè)置時間為1000ms。然后將隱藏毀掉暴露出去旺嬉。當(dāng)我們使用setTimeout時還需要在組件卸載時清除定時器管行。組件卸載時回調(diào)的時componentWillUnmount。所以在此處清除定時器鹰服。
實(shí)現(xiàn)動畫效果
在上面我們實(shí)現(xiàn)了Toast的效果病瞳,但是顯示和隱藏都沒有過度動畫,略顯生硬悲酷。那么我們加一些平移和透明度的動畫套菜,然后對componentDidMount修改實(shí)現(xiàn)動畫效果
在組件中增加兩個變量
moveAnim = new Animated.Value(height / 12);
opacityAnim = new Animated.Value(0);
在之前內(nèi)層view的樣式中,設(shè)置的bottom是height/8设易。我們此處將view樣式設(shè)置如下
style={[styles.textContainer, {bottom: this.moveAnim, opacity: this.opacityAnim}]}
然后修改componentDidMount
componentDidMount() {
Animated.timing(
this.moveAnim,
{
toValue: height / 8,
duration: 80,
easing: Easing.ease
},
).start(this.timingDismiss);
Animated.timing(
this.opacityAnim,
{
toValue: 1,
duration: 100,
easing: Easing.linear
},
).start();
}
也就是bottom顯示時從height/12到height/8移動逗柴,時間是80ms,透明度從0到1轉(zhuǎn)變執(zhí)行時間100ms顿肺。在上面我們看到有個easing屬性戏溺,該屬性傳的是動畫執(zhí)行的曲線速度渣蜗,可以自己實(shí)現(xiàn),在Easing API中已經(jīng)有多種不同的效果旷祸。大家可以自己去看看實(shí)現(xiàn)耕拷,源碼地址是https://github.com/facebook/react-native/blob/master/Libraries/Animated/src/Easing.js,自己實(shí)現(xiàn)的話直接給一個計算函數(shù)就可以托享,可以自己去看模仿骚烧。
定義顯示時間
在前面我們設(shè)置Toast顯示1000ms,我們對顯示時間進(jìn)行自定義闰围,限定類型number,
time: PropTypes.number
在構(gòu)造方法中對時間的處理
time: props.time && props.time < 1500 ? Toast.SHORT : Toast.LONG,
在此處我對時間顯示處理為SHORT和LONG兩種值了赃绊,當(dāng)然你可以自己處理為想要的效果。
然后只需要修改timingDismiss中的時間1000羡榴,寫為this.state.time就可以了碧查。
組件更新
當(dāng)組件已經(jīng)存在時再次更新屬性時,我們需要對此進(jìn)行處理校仑,更新state中的message和time忠售,并清除定時器,重新定時肤视。
componentWillReceiveProps(nextProps) {
this.setState({
message: nextProps.message !== undefined ? nextProps.message : '',
time: nextProps.time && nextProps.time < 1500 ? Toast.SHORT : Toast.LONG,
})
clearTimeout(this.dismissHandler)
this.timingDismiss()
}
組件注冊
為了我們的定義的組件以API的形式調(diào)用档痪,而不是寫在render方法中涉枫,所以我們定義一個跟組件
import React, {Component} from "react";
import {StyleSheet, AppRegistry, View, Text} from 'react-native';
viewRoot = null;
class RootView extends Component {
constructor(props) {
super(props);
console.log("constructor:setToast")
viewRoot = this;
this.state = {
view: null,
}
}
render() {
console.log("RootView");
return (<View style={styles.rootView} pointerEvents="box-none">
{this.state.view}
</View>)
}
static setView = (view) => {
//此處不能使用this.setState
viewRoot.setState({view: view})
};
}
const originRegister = AppRegistry.registerComponent;
AppRegistry.registerComponent = (appKey, component) => {
return originRegister(appKey, function () {
const OriginAppComponent = component();
return class extends Component {
render() {
return (
<View style={styles.container}>
<OriginAppComponent/>
<RootView/>
</View>
);
};
};
});
};
const styles = StyleSheet.create({
container: {
flex: 1,
position: 'relative',
},
rootView: {
position: "absolute",
left: 0,
right: 0,
top: 0,
bottom: 0,
flexDirection: "row",
justifyContent: "center",
}
});
export default RootView
RootView就是我們定義的根組件邢滑,實(shí)現(xiàn)如上,通過AppRegistry.registerComponent注冊愿汰。
包裝供外部調(diào)用
import React, {
Component,
} from 'react';
import RootView from '../RootView'
import ToastView from './ToastView'
class Toast {
static LONG = 2000;
static SHORT = 1000;
static show(msg) {
RootView.setView(<ToastView
message={msg}
onDismiss={() => {
RootView.setView()
}}/>)
}
static show(msg, time) {
RootView.setView(<ToastView
message={msg}
time={time}
onDismiss={() => {
RootView.setView()
}}/>)
}
}
export default Toast
Toast中定義兩個static變量困后,表示顯示的時間供外部使用。然后提供兩個static方法衬廷,方法中調(diào)用RootView的setView方法將ToastView設(shè)置到根view摇予。
使用
首先導(dǎo)入上面的Toast,然后通過下面方法調(diào)用
Toast.show("測試,我是Toast");
//能設(shè)置顯示時間的Toast
Toast.show("測試",Toast.LONG);
好了文章介紹完畢吗跋。如果想看完整代碼侧戴,可以進(jìn)我GitHub查看。文中若有不足或錯誤的地方歡迎指出跌宛。最后新年快樂酗宋。