Skip to content

Instantly share code, notes, and snippets.

View dabit3's full-sized avatar
🎡
probably nothing

Nader Dabit dabit3

🎡
probably nothing
View GitHub Profile
@dabit3
dabit3 / NavRoot.js
Last active July 16, 2016 18:53
React Native Navigator Experimental Part 2 — Implementing Redux NavRoot.js
import React, { Component } from 'react'
import Home from './Home'
import About from './About'
import {
BackAndroid,
NavigationExperimental
} from 'react-native'
const {
@dabit3
dabit3 / navRootContainer.js
Created June 17, 2016 14:57
React Native Navigator Experimental Part 2 — Implementing Redux navRootContainer.js
import { connect } from 'react-redux'
import NavigationRoot from '../components/NavRoot'
import { push, pop } from '../actions/navActions'
function mapStateToProps (state) {
return {
navigation: state.navReducer
}
}
export default connect(
@dabit3
dabit3 / index.ios.js or index.Android.js
Created June 17, 2016 14:58
React Native Navigator Experimental Part 2 — Implementing Redux index.ios.js or index.Android.js
import React from 'react'
import { AppRegistry } from 'react-native'
import configureStore from './app/store/configureStore'
const store = configureStore()
import NavigationRootContainer from './app/containers/navRootContainer'
import { Provider } from 'react-redux'
const App = () => (
@dabit3
dabit3 / Samples.js
Last active June 18, 2016 04:15
React Native Navigator Experimental Part 3 - Samples.js
import React from 'react'
import { View, Text, StyleSheet, Image } from 'react-native'
const Samples = () => (
<View style={styles.container}>
<Text style={styles.text}>Hello from Samples!</Text>
<Image
style={styles.image}
source={{ uri: 'https://i.imgur.com/PK9PmOn.png' }}/>
</View>
@dabit3
dabit3 / Recipes.js
Last active June 18, 2016 04:23
React Native Navigator Experimental Part 3 - Recipes.js
import React from 'react'
import { View, Text, StyleSheet, Image } from 'react-native'
const Recipes = () => (
<View style={styles.container}>
<Text style={styles.text}>Hello from Recipes!</Text>
<Image
style={styles.image}
source={{ uri: 'https://i.imgur.com/zwx84jE.png' }}/>
</View>
@dabit3
dabit3 / tabReducer.js
Last active June 18, 2016 05:02
React Native Navigator Experimental Part 3 - tabReducer.js
import { CHANGE_TAB } from '../constants/ActionTypes'
const homeIcon = {
scale: 2.3,
uri: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAA58mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMTEgNzkuMTU4MzI1LCAyMDE1LzA5LzEwLTAxOjEwOjIwICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6dG
@dabit3
dabit3 / ActionTypes.js
Last active June 18, 2016 04:23
React Native Navigator Experimental Part 3 - ActionTypes.js
export const PUSH_ROUTE = 'PUSH_ROUTE'
export const POP_ROUTE = 'POP_ROUTE'
export const CHANGE_TAB = 'CHANGE_TAB'
@dabit3
dabit3 / navActions.js
Created June 18, 2016 04:22
React Native Navigator Experimental Part 3 - navActions.js
import { POP_ROUTE, PUSH_ROUTE, CHANGE_TAB } from '../constants/ActionTypes'
export function push (route) {
return {
type: PUSH_ROUTE,
route
}
}
export function pop () {
@dabit3
dabit3 / Root Reducer
Created June 18, 2016 04:40
React Native Navigator Experimental Part 3 - app/reducers/index.js
import { combineReducers } from 'redux'
import navReducer from './navReducer'
import tabReducer from './tabReducer'
const rootReducer = combineReducers({
tabReducer,
navReducer
})
export default rootReducer
@dabit3
dabit3 / TabsRoot.js
Last active June 18, 2016 05:13
React Native Navigator Experimental Part 3 - app/components/TabsRoot.js
import React, { Component } from 'react'
import { TabBarIOS } from 'react-native'
import Recipes from '../components/Recipes'
import Samples from '../components/Samples'
import Home from '../containers/navRootContainer'
class Tabs extends Component {
_changeTab (i) {
const { changeTab } = this.props