Roadmap
Setting up RN for iOS and Android.
Installing the Dependencies for OSX
ios and android
The project folders rarely need to be adjusted unless we want to work at a low-level.
index.ios.js vs index.android.js
Entry points for our applications. When Android or iOS run, these two files are the first platform entry points respectively.
Steps for components
// Import a library to help create a component import React from 'react'; // destructuring // import ReactNative from 'react-native'; import { Text, AppRegistry } from 'react-native'; // Create a component // if we are returning just one statement, we can get rid of the curly braces // and the return statement - not an error! ES lint issue. const App => () => { return ( <Text>Some Text</Text> ); } // ^ this will become... const App => () => ( <Text>Some Text</Text> ); // Render it to the device // name 'albums' must correlate to name of the project // also destructure ReactNative.AppRegistry.registerComponent('albums', () => App); AppRegistry.registerComponent('albums', () => App);
Both are distinct libraries. RN is essentially the handle to getting things onto a device!
import
is required to working with outside code
eg. other libraries/modules.
React
React Native
For the idea of creating is a label is to create two components.
a) The AlbumList b) The AlbumDetail
AlbumList Component
Note: If you are embedding more than one component, wrap around in <View>
.
// after importing from React, ReactNative const AlbumView = () => { return ( <View> <Text>Album List!</Text> </View> ); }; export default AlbumList;
Functional Component
Class Component
// functional component const Header = () => { return <Text>Hi there!</Text>; }; // class component class Header extends Component { render() { return <Text>Hi there!</Text>; } }
So recreating our AlbumList...
import React, { Component } from 'react'; import { View, Text }, from 'react-native'; class AlbumView extends Component { render() { return ( <View> <Text>Album List!</Text> </View> ); } }; export default AlbumList;
Class based components themselves KNOW when they're about to rendered.
Example Lifecycle Methods include componentWillMount()
Network Requests
How do we make the HTTP request? It's quite straight forward.
npm install --save axios
Ensure you need to have some logic to rerender the components after the AJAX returns and the promise is fulfilled.
Component Level State
Components will already be on the screen before we can get our promise back. Our state so far will look like the following...
We need to use component level state for it all to rerender
this.setState
!)Rules of State
this.setState
.When do we use props?
// before state = { albums: [] }; // after fetching data state = { albums: [ {name: 'ashio'}, {name: 'aheure'} ] };
import React, { Component } from 'react'; import { View, Text }, from 'react-native'; import axios from 'axios'; class AlbumView extends Component { state = { albums: [] }; componentWillMount() { // console.log('componentWillMount in console'); // debugger; axios.get('https://theapilink.com') .then(response => this.setState({ albums: response.data })); } render() { // can use this when the render method continues to re-render console.log(this.state); debugger; return ( <View> <Text>Album List!</Text> </View> ); } }; export default AlbumList;
Only use state with class level components (not functional components)
For each album now, we want to create one component using map
.
Ensure that each property has a unique key!
AlbumList
import React, { Component } from 'react'; import { View, Text }, from 'react-native'; import axios from 'axios'; class AlbumView extends Component { state = { albums: [] }; componentWillMount() { // console.log('componentWillMount in console'); // debugger; axios.get('https://theapilink.com') .then(response => this.setState({ albums: response.data })); } renderAlbums() { return this.state.albums.map(album => // best to use for the key is an id if you have one <Text key={album.title}>{album.title}</Text> ); } render() { // can use this when the render method continues to re-render console.log(this.state); debugger; return ( <View> {this.renderAlbums()} </View> ); } }; export default AlbumList;
Creating an AlbumDetail
Does it need to be a Class or Functional component?
import React, { Component } from 'react'; import { View, Text }, from 'react-native'; const AlbumDetail = (props) => { return ( <View> <Text>{props.album.title}</Text> </View> ); }; export default AlbumDetail;
Final AlbumList
Import AlbumDetail, reset the "renderAlbums" function to render the AlbumDetail and then use props to pass down from parent to child.
import React, { Component } from 'react'; import { View }, from 'react-native'; import axios from 'axios'; import AlbumDetail from './AlbumDetail' class AlbumView extends Component { state = { albums: [] }; componentWillMount() { // console.log('componentWillMount in console'); // debugger; axios.get('https://theapilink.com') .then(response => this.setState({ albums: response.data })); } renderAlbums() { return this.state.albums.map(album => // best to use for the key is an id if you have one // prop name "album" can be named anything <AlbumDetail key={album.title} album={album}/> ); } render() { // can use this when the render method continues to re-render console.log(this.state); debugger; return ( <View> {this.renderAlbums()} </View> ); } }; export default AlbumList;
For styling, it is sometimes useful to make components within components for layout purposes!
Passing components as props
We can pass props
as a parameter and then use {props.children} to make a reference to it.
Card.js
import React from 'react'; import { View } from 'react-native'; const Card = (props) => { render ( <View style={styles.containerStyle}> {props.children} </View> ); } const styles = { containerStyle: { borderWidth: 1, borderRadius: 2, borderColor: '#ddd', borderBottomWidth: 0, shadowColor: '#000', shadowOffset: { width: 0, height: 2 }, shadowOpacity: 0.1, shadowRadius: 2, elevation: 1, marginLeft: 5, marginRight: 5, marginTop: 10 } }; export default Card;
AlbumDetail
We want to use this to pass down props for Card
import React, { Component } from 'react'; import { Text }, from 'react-native'; import Card from './Card'; const AlbumDetail = (props) => { return ( <Card> <Text>{props.album.title}</Text> </Card> ); }; export default AlbumDetail;
CardSection.js
import React from 'react'; import { View } from 'react-native'; const CardSection = props => { render(<View style={styles.containerStyle}>{props.children}</View>); }; const styles = { containerStyle: { borderBottomWidth: 1, padding: 5, backgroundColor: '#fff', justifyContent: 'flex-start', flexDirection: 'row', borderColor: '#ddd', position: 'relative', }, }; export default CardSection;
AlbumDetail
We want to use this to pass down props for Card
import React, { Component } from 'react'; import { Text }, from 'react-native'; import Card from './Card'; import CardSection from './CardSection'; const AlbumDetail = (props) => { return ( <Card> <CardSection> <Text>{props.album.title}</Text> </CardSection> </Card> ); }; export default AlbumDetail;
Designing for web from personal experience is generally easier than React Native.
How about layout challenges? Keeping things on the left, and on the right? We use Flexbox to be our friend!
Imaging a layout like the following.
<Card> <CardSection> <Image /> <Text /> <Text /> </CardSection> </Card>
Positioning of elements
How do we want to apply flexbox to our particular layout? What we can do is use <View>
to wrap the images - this is similar to using things like <div>
.
We can then use flex direction to style our views for column and what is within for rows.
Unless we define a height, it will just flex to have just enough height!
Images with React Native
We can import image
primitive from React Native!
However, images will not expand to fit by default. We need to manually add in a styling rule!
Notes
Destructure album objects if there is more than one.
If you wanted to, you can also dereference styles!
const { thumbnailStyle, headerContentStyle } = styles;
// the album and const is for destructuring const Card = ({ album }) => { const { title, artist, thumbnail_image } = album; return ( <Card> <CardSection> <View style={styles.thumbnailContainerStyle}> // <Image source={{ uri: props.album.thumbnail_image }} /> //destructured <Image style={styles.thumbnailStyle} source={{ uri: thumbnail_image }} /> </View> <View style={styles.headerContentStyle}> //<Text>{props.album.title}</Text> //<Text>{props.album.artist}</Text> // Destructured <Text style={styles.headerTextStyle}>{title}</Text> <Text>{artist}</Text> </View> </CardSection> <CardSection> <Image style={style.imageStyle} source={{ uri: image }} /> </CardSection> </Card> ); }; const styles = { headerContentStyle: { flexDirection: 'column', justifyContent: 'space-around', }, headerTextStyle: { fontSize: 18, }, thumbnailStyle: { height: 50, width: 50, }, thumbnailContainerStyle: { justifyContent: 'center', alignItems: 'center', marginLeft: 10, marginRight: 10, }, imageStyle: { height: 300, flex: 1, width: null, }, };
ScrollView
Scrolling is definitely one of the differenes between React and React Native. To make them scrollable, we just import ScrollView
and use that on the outside.
For this case, it is the renderAlbums.
We can just replace View with ScrollView.
You also MUST find the root view and set it to flex: 1.
Handling Input
Time to make a button.
Button.js
import React from 'react'; import { Text } from 'react-native'; const Button = () = => { return ( <Text>Click me!</Text> ); } export default Button;
Now when we use this, we can have a section to house a button.
We need to wrap the button but using TouchableHighlight
or TouchableOpacity
import React from 'react'; import { Text, TouchableOpacity } from 'react-native'; const Button = ({ onPress }) = => { const { buttonStyle, textStyle } = styles; return ( // from the parent, have the prop of onPress{() => function} <TouchableOpacity style={buttonStyle} onPress={onPress}> <Text style={textStyle}> Click me! </Text> </TouchableOpacity> ); } const styles = { textStyle: { alignSelf: 'center', color: '#007aff', fontSize: 16, fontWeight: '600', paddingTop: 10, paddingBottom: 10 }, buttonStyle: { flex: 1, alignSelf: 'stretch', backgroundColor: '#fff', borderRadius: 5, borderColor: '#007aff', } } export default Button;
Card.js
// have your imports // the album and const is for destructuring const Card = ({ album }) => { const { title, artist, thumbnail_image, url } = album; return ( <Card> <CardSection> <View style={styles.thumbnailContainerStyle}> // <Image source={{ uri: props.album.thumbnail_image }} /> //destructured <Image style={styles.thumbnailStyle} source={{ uri: thumbnail_image }} /> </View> <View style={styles.headerContentStyle}> //<Text>{props.album.title}</Text> //<Text>{props.album.artist}</Text> // Destructured <Text style={styles.headerTextStyle}>{title}</Text> <Text>{artist}</Text> </View> </CardSection> <CardSection> <Image style={style.imageStyle} source={{ uri: image }} /> </CardSection> <CardSection> <Button onPress={() => openURL(album.url)}>Buy now</Button> </CardSection> </Card> ); }; const styles = { headerContentStyle: { flexDirection: 'column', justifyContent: 'space-around', }, headerTextStyle: { fontSize: 18, }, thumbnailStyle: { height: 50, width: 50, }, thumbnailContainerStyle: { justifyContent: 'center', alignItems: 'center', marginLeft: 10, marginRight: 10, }, imageStyle: { height: 300, flex: 1, width: null, }, };
Button.js
import React from 'react'; import { Text, TouchableOpacity } from 'react-native'; const Button = ({ onPress, children }) = => { const { buttonStyle, textStyle } = styles; return ( // from the parent, have the prop of onPress{() => function} <TouchableOpacity style={buttonStyle} onPress={onPress}> <Text style={textStyle}> { children } </Text> </TouchableOpacity> ); } const styles = { textStyle: { alignSelf: 'center', color: '#007aff', fontSize: 16, fontWeight: '600', paddingTop: 10, paddingBottom: 10 }, buttonStyle: { flex: 1, alignSelf: 'stretch', backgroundColor: '#fff', borderRadius: 5, borderColor: '#007aff', } } export default Button;
The <Provider>
tag works together with the Store. The Store is what holds the Application State.
The Provider is the communication with React. react-redux
is the glue for React and Redux.
Steps
import { Provider } from 'react-redux'
+ import { createStore } from 'redux'
.<Provider store={createStore(reducers)} />
app.js for React-Native Redux
import React from 'react'; import { View } from 'react-native'; import { Provider } from 'react-redux'; import { createStore } from 'redux'; import reducers from './reducers'; const App = () => { return ( <Provider store={createStore(reducers)}> <View /> </Provider> ); }; export default App;
reducers/index.js
Create libraries
as basis to always return an array.
import {combineReducers } from 'redux'; export default combineReducers({ libraries: () => [] });
How can we tap on something and move to show more detail?
Let's create a file to specifically show library details. Making a data model. You need to be thinking about Reducers here. Reducers contains the App Data.
This builds on the combineReducers
function we have above.
Let's have two separate pieces of state.
a) a list of libraries b) currently selected library
// Examples of what our reducers // could look like // Library Reducer [{ id: 1, name: 'React' }, { id: 2, name: 'Redux' }]; // Selection Reducer 1;
Library list of data
Connect
function: Used to connect up the reducers and state.
LibraryReducer.js
import data from './LibraryList.json'; export default () => data;
LibraryReducer.json
This provides the data for above.
[ { 'id': 0, 'title': 'ahid', 'description': 'iOhoieshoit' }, ... ]
reducers.js
import { CombineReducers } from 'redux'; import LibraryReducer from './LibraryReducer'; export default combineReducers({ libraries: LibraryReducer, });
LibraryList.js
Rendering the list to the user. mapStateToProps will grab the state from the connect function that is exported in combineReducers
and any object returned from this mapStateToProps
function will become available to our props.
import React, { Component } from 'react'; import { connect } from 'react-redux'; class LibraryList extends Component { render() { // this will show what is available from // the mapStateToProps func // console.log(this.props) return; } } const mapStateToProps = state => { // console.log(state); // use to see current state return { // this will give a prop to our LibraryList libraries: state.libraries; } }; export default connect(mapStateToProps)(LibraryList);
import { createStore, applyMiddleware } from 'redux'; import ReduxThunk from 'redux-thunk'; ...
Now, inside fo the createStore, we adjust it to be like so...
// the second arg is for initial states const store = createStore(reducers, {}, applyMiddleware(ReduxThunk)); <Provider store={store}> <View style={{ flex: 1 }}> <Header headerText={'Example'} /> <Table /> </View> </Provider>
Now that ReduxThunk is set up, we can use it inside an action creator.
// Action Creators export const selectAction = ({ email, password }) => { return (dispatch) -> { firebase.auth().signInWithEmailAndPassword(email, password) .then(user => console.log(user)) }; };
So, what is ReduxThunk doing for us?
Now that we have ReduxThunk, it will change how we call the action creator.
The Action Creator WILL NOW RETURN A FUNCTION
. If ReduxThunk sees a function returned, it will send off an action with a dispatcher and immediately call that function.
This will then start our login request. The app will wait and the .then will automatically run and we will then dispatch our action.
// Action Creators export const selectAction = ({ email, password }) => { return (dispatch) -> { firebase.auth().signInWithEmailAndPassword(email, password) .then(user => { dispatch({ type: 'LOGIN_USER_SUCCESS', payload: user }); }); }; };
As opposed to React with React-Router
, React Native doesn't necessarily have one.
In this case, we'll be using the solution called React-Native-Router-Flux
to help with navigation.
How does it work?
Imagine an app that requires authentication. We could then have another scene where the is a Master-Detail relationship.
We essentially define a Scene
for each distinct screens. For example.
<Scene key="login" component={LoginForm} /> <Scene key="employeeList" component={EmployeeList} /> <Scene key="employeeDetail" component={EmployeeDetail} /> // All the props you can pass to the scene <Scene key="login" // call Actions.login() to show this screen component={LoginForm} // component to show title="Login" // make nav bar and give it a title - this is built in initial // define the first screen to show />
// Create a router.js import React from 'react'; import { Scene, Router } from 'react-native-router-flux'; // scene-target import ExampleComponent from './components/examplecomponent/ExampleComponent'; import Table from './components/table/Table'; const RouterComponent = () => { return ( <Router> <Scene key="example" component={ExampleComponent} title="App" /> <Scene key="table" component={Table} title="Table" initial /> </Router> ); }; export default RouterComponent; // in app.js ... import Router from './router'; const App = () => { const store = createStore(reducers, {}, applyMiddleware(ReduxThunk)); return ( <Provider store={store}> <Router /> </Provider> ); } export default App;
So how do we move between these scenes?
Navigation will happen from an action.
// import actions import { Actions } from 'react-native-router-flux'; // Action Creators export const loginUserSuccess = (dispatch, user) => { dispatch({ type: LOGIN_USER_SUCCESS, payload: user }); Actions.employeeList(); // this method comes from the key property };
Making decisions on how the header should render.
We can do scene nesting
to group these screens. There is one 'gotcha' though. Now for the actions, we need to actually use Actions.main().
// router.js const RouterComponent = () => { return ( <Router> <Scene key="auth"> <Scene key="login" component={Login} title="Login" /> </Scene> <Scene key="flow"> <Scene key="example" component={ExampleComponent} title="App" /> <Scene // for action, you normally call Actions.key() onRight={() => console.log('right!!!')} rightTitle="Add" key="table" component={Table} title="Table" initial /> </Scene> </Router> ); };
We can use the initial
prop within these buckets
to let which component within a bucket to have an initial prop
These actions can be added using
import { Actions } from 'react-native-router-flux'; // Action Creators - exammple thunk action creator const loginUserSuccess = (dispatch, user) => { dispatch({ type: LOGIN_USER_SUCCESS, payload: user }); Actions.employeeList(); }
Example reducer function with ES6 dynamic change.
export default (state = INITIAL_STATE, action) => { switch (action.type) { case EMPLOYEE_UPDATE: return {...state, [action.payload.prop]: action.payload.value}; default: return state; } }