Skip to content

Instantly share code, notes, and snippets.

@richellyitalo
Last active September 27, 2018 04:08
Show Gist options
  • Save richellyitalo/4424e92a6843bf5a3076efe39f52f424 to your computer and use it in GitHub Desktop.
Save richellyitalo/4424e92a6843bf5a3076efe39f52f424 to your computer and use it in GitHub Desktop.
O necessário para realizar um post e tratar seus erros
// src/Components/create-profile/CreateProfile.js
// importações
// Importando ação que realizará o envio
import { connect } from 'react-redux'
import { withRouter } from 'react-router-dom'
import { createProfile } from '../actions/profileActions'
class CreateProfile extends Component {
// Estado
state = {
name: '',
errors: {}, // ver componentWillReceiveProps
// ...
}
// Envio do form
onSubmit = e => {
e.preventDefault()
const profileData = {
name: this.state,
// ...
}
// Envia os dado com o history para realizar o redirecionamento
this.props.createProfile(profileData, this.props.history)
}
onChange = e => {
this.setState({ [e.target.name]: e.target.value })
}
// Recebimento dos erros e definindo no state
componentWillReceiveProps(nextProps) {
if (nextProps.errors) {
this.setState({ errors: nextProps.errors })
}
}
render () {
return (
<form onSubmit={this.onSubmit}>
<input
type="text"
name="name"
value={this.value}
onChange={this.onChange}
/>
<button>Enviar</button>
</form>
)
}
}
CreateProfile.propTypes = {
errors: PropTypes.object.isRequired
}
const mapStateToProps = state => ({
errors: state.errors
})
export default connect(
mapStateToProps,
{ createProfile }
)(withRouter(CreateProfile))
// src/reducers/errorsReducer.js
import { GET_ERRORS } from '../actions/types'
const initialState = {}
export default (state = initialState, action) => {
switch (action.type) {
case GET_ERRORS:
return action.payload
default:
return state
}
}
// src/actions/profileActions.js
// importações
// Importando ação que realizará o envio
import axios from 'axios'
// Types
import { GET_ERRORS } from './types';
export const createProfile = (profileData, history) => dispatch => {
axios
.post('/api/profile', profileData)
.then(res => history.push('/dashboard'))
.catch(err => dispatch({
type: GET_ERRORS, // Define os erros
payload: err.response.data
}))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment