Created
April 20, 2018 23:41
-
-
Save Random-Stack-Random-Day/9e0aac42bc1e4892328f1470326f54a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { View, Text, Image } from 'react-native'; | |
import { Button } from 'react-native-elements'; | |
import { StackNavigator, SwitchNavigator } from 'react-navigation'; // Version can be specified in package.json | |
import { YellowBox } from 'react-native'; | |
import store from './redux/store'; | |
import { Provider, connect } from 'react-redux'; | |
import firebase from 'firebase'; | |
import ModalScreen from './components/Modal'; | |
import HomeScreen from './components/HomeScreen'; | |
import DetailsScreen from './components/Details'; | |
import HeaderComponent from './components/Header'; | |
import CharactersScreen from './screens/Characters'; | |
YellowBox.ignoreWarnings([ | |
'Warning: componentWillMount is deprecated', | |
'Warning: componentWillReceiveProps is deprecated', | |
]); | |
const mapStateToProps = state => { | |
return { user: state.user }; | |
} | |
const mapDispatchToProps = dispatch => { | |
return { | |
getCharacters: characters => dispatch(getCharacters()) | |
}; | |
}; | |
const AppStack = StackNavigator( | |
{ | |
Home: { | |
screen: HomeScreen | |
}, | |
Details: { | |
screen: DetailsScreen | |
}, | |
Characters: { | |
screen: CharactersScreen | |
} | |
}, | |
{ | |
initialRouteName: 'Home', | |
/* The header config from HomeScreen is now here */ | |
navigationOptions: { | |
headerStyle: { | |
backgroundColor: '#f4511e', | |
}, | |
headerTintColor: '#fff', | |
headerTitleStyle: { | |
fontWeight: 'bold', | |
}, | |
}, | |
} | |
); | |
const AuthStack = StackNavigator({ SignIn: SignInScreen }); | |
export default SwitchNavigator( | |
{ | |
AuthLoading: AuthLoadingScreen, | |
App: AppStack, | |
Auth: AuthStack | |
} | |
) | |
export class App extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
loading: true, | |
user: null, | |
characters: {} | |
}; | |
} | |
async componentDidMount() { | |
await firebase.auth().onAuthStateChanged(user => { | |
if (user) { | |
console.log("Logged in", user); | |
} | |
else { | |
console.log("Not logged in"); | |
this.setState({ loading: false }); | |
} | |
}); | |
} | |
render() { | |
return ( | |
<Provider store={store}> | |
<AppStack /> | |
</Provider> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment