archive
/
Sphere
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Sphere/app/index.js

94 lines
2.2 KiB
JavaScript

import React from 'react-native';
import RouteMaster from './components/routes/RouteMaster';
import RouteMapper from './components/navigation/RouteMapper';
import GlobalStyles from './settings/styles';
import BusyIndicator from 'react-native-busy-indicator';
import token from './api/token';
import { checkToken } from './api/CircleCI';
require('moment-duration-format');
const {
Navigator,
StyleSheet,
Platform,
View
} = React;
const styles = StyleSheet.create({
navbar: {
backgroundColor: GlobalStyles.get('CIRCLE_NAVBAR_BG'),
flexDirection:'row',
justifyContent: 'center',
},
container: {
flex: 1,
marginTop: (Platform.OS === 'ios' ? 64 : 56)
}
});
export default class App extends React.Component {
constructor() {
super();
this.state = {
initialRoute: false
};
}
renderScene(route, nav) {
const Component = route.component;
const props = route.props || {};
return (
<View style={styles.container}>
<Component
nav={nav}
currentRoute={route}
{...props} />
</View>
);
}
componentWillMount() {
token.get().then(function (CIToken) {
if (!CIToken) {
this.setState({
initialRoute: RouteMaster.get('HOME')
});
return;
}
checkToken(CIToken).then(function (isValid) {
this.setState({
initialRoute: isValid ? RouteMaster.get('HOME') : RouteMaster.get('LOGIN')
});
}.bind(this));
}.bind(this));
}
render() {
if (!this.state.initialRoute) {
return null; // Replace with a splash screen?
}
return (
<View style={{ flex: 1 }}>
<Navigator
renderScene={this.renderScene}
initialRoute={this.state.initialRoute}
navigationBar={
<Navigator.NavigationBar
style={styles.navbar}
routeMapper={RouteMapper} />
}
configureScene={(route) => {
if (route.sceneConfig) {
return route.sceneConfig;
}
return Navigator.SceneConfigs.PushFromRight;
}}
/>
<BusyIndicator />
</View>
);
}
};