哟慕课
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

88 lines
2.3 KiB

import React, {Component} from 'react';
import {View, Animated, Dimensions} from 'react-native';
import {YooLogin, YooForum, YooSplash} from './component/index';
const width = Dimensions.get('window').width;
export default class YooRouter extends Component {
constructor(props) {
super(props);
this.state = {
currentPage: 'splash',
splashX: new Animated.Value(0),
loginX: new Animated.Value(width),
forumX: new Animated.Value(width),
};
this.gotoForum = this.gotoForum.bind(this);
this.gotoLogin = this.gotoLogin.bind(this);
this.bindForumInitializer = this.bindForumInitializer.bind(this);
this.initForum = null;
}
bindForumInitializer(forumRef) {
this.initForum = forumRef.initForum;
}
gotoLogin() {
this.setState({currentPage: 'login'});
Animated.parallel([
Animated.timing(this.state.splashX, {
toValue: -width,
duration: 250,
useNativeDriver: false,
}),
Animated.timing(this.state.loginX, {
toValue: 0,
duration: 250,
useNativeDriver: false,
}),
]).start();
}
gotoForum() {
this.initForum();
if (this.state.currentPage === 'splash') {
Animated.parallel([
Animated.timing(this.state.splashX, {
toValue: -width,
duration: 250,
useNativeDriver: false,
}),
Animated.timing(this.state.forumX, {
toValue: 0,
duration: 250,
useNativeDriver: false,
}),
]).start();
} else {
Animated.parallel([
Animated.timing(this.state.loginX, {
toValue: -width,
duration: 250,
useNativeDriver: false,
}),
Animated.timing(this.state.forumX, {
toValue: 0,
duration: 250,
useNativeDriver: false,
}),
]).start();
}
}
render() {
return (
<View>
<Animated.View style={{left: this.state.splashX}}>
<YooSplash gotoLogin={this.gotoLogin} gotoForum={this.gotoForum} />
</Animated.View>
<Animated.View style={{left: this.state.loginX}}>
<YooLogin gotoForum={this.gotoForum} />
</Animated.View>
<Animated.View style={{left: this.state.forumX}}>
<YooForum bindInitializer={this.bindForumInitializer} />
</Animated.View>
</View>
);
}
}