Last active
October 26, 2015 12:07
-
-
Save teepluss/ada0fbe27cfc67b0400e to your computer and use it in GitHub Desktop.
React Redux Example
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, { PropTypes } from 'react' | |
import ReactDOM from 'react-dom' | |
import { createStore } from 'redux' | |
import { Provider, connect } from 'react-redux' | |
import _ from 'lodash' | |
// Main component. | |
class Main extends React.Component { | |
render() { | |
return ( | |
<div> | |
<Child {...this.props} /> | |
<p><a href="#" onClick={this.props.onChangeName}>Change Name</a></p> | |
<p><a href="#" onClick={this.props.onChangeSurname}>Change Surname</a></p> | |
</div> | |
) | |
} | |
} | |
// Child component using same props. | |
class Child extends React.Component { | |
render() { | |
return ( | |
<h2> | |
<a href="#" onClick={(e) => this.props.onChangeMe(e, "Tee", "Pluss")}>{this.props.name} {this.props.surname}</a> | |
</h2> | |
) | |
} | |
} | |
// Properties and function defined. | |
Main.propTypes = { | |
name: PropTypes.string.isRequired, | |
surname: PropTypes.string.isRequired, | |
onChangeMe: PropTypes.func.isRequired, | |
onChangeName: PropTypes.func.isRequired, | |
onChangeSurname: PropTypes.func.isRequired | |
} | |
// const changeMe = { type: 'changeMe' } | |
// const changeName = { type: 'changeName', to: "Mr.Tee" } | |
// const changeSurname = {type: 'changeSurname', to: "Plus Plus" } | |
// The logic and data, depend on action type. | |
function actionStore(state = {name: "Hi", surname: "You"}, action) { | |
var name = state.name; | |
switch (action.type) { | |
case 'changeMe': | |
return { | |
name: action.name, | |
surname: action.surname | |
} | |
case 'changeName': | |
return { | |
name: action.name, | |
surname: state.surname | |
}; | |
case 'changeSurname': | |
return { | |
name: state.name, | |
surname: action.surname | |
} | |
} | |
return state; | |
} | |
// Create store. | |
var store = createStore(actionStore); | |
// Mapping state properties from store. | |
function mapStateToProps(state) { | |
return { | |
name: state.name, | |
surname: state.surname | |
} | |
} | |
// Mapping actions. | |
function mapDispatchToProps(dispatch) { | |
return { | |
onChangeMe: (e, name, surname) => { | |
e.preventDefault(); | |
dispatch({ | |
type: 'changeMe', | |
name: name, | |
surname: surname | |
}); | |
}, | |
onChangeName: (e) => { | |
e.preventDefault(); | |
dispatch({ | |
type: 'changeName', | |
name: 'T' | |
}); | |
}, | |
onChangeSurname: (e) => { | |
e.preventDefault(); | |
dispatch({ | |
type: 'changeSurname', | |
surname: 'P' | |
}); | |
} | |
} | |
} | |
// Main App. | |
var App = connect( | |
mapStateToProps, | |
mapDispatchToProps | |
)(Main) | |
// Render to document. | |
ReactDOM.render( | |
<Provider store={store}> | |
<App /> | |
</Provider>, | |
document.getElementById('root') | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment