mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Revalidate address step after invalid submissions
I don't like that the state is being set to a calculation of existing props. When I did that calculation in `render`, it didn't update when fields were changed. Fixes #645
This commit is contained in:
parent
5b288e4d3e
commit
a56f994886
1 changed files with 14 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
var classNames = require('classnames');
|
||||
var Formsy = require('formsy-react');
|
||||
var omit = require('lodash.omit');
|
||||
var React = require('react');
|
||||
var GeneralError = require('./general-error.jsx');
|
||||
var validations = require('./validations.jsx').validations;
|
||||
|
@ -11,17 +12,27 @@ for (var validation in validations) {
|
|||
var Form = React.createClass({
|
||||
getDefaultProps: function () {
|
||||
return {
|
||||
noValidate: true
|
||||
noValidate: true,
|
||||
onChange: function () {}
|
||||
};
|
||||
},
|
||||
getInitialState: function () {
|
||||
return {
|
||||
allValues: {}
|
||||
};
|
||||
},
|
||||
onChange: function (currentValues, isChanged) {
|
||||
this.setState({allValues: omit(currentValues, 'all')});
|
||||
this.props.onChange(currentValues, isChanged);
|
||||
},
|
||||
render: function () {
|
||||
var classes = classNames(
|
||||
'form',
|
||||
this.props.className
|
||||
);
|
||||
return (
|
||||
<Formsy.Form {... this.props} className={classes}>
|
||||
<GeneralError name="all" />
|
||||
<Formsy.Form {... this.props} className={classes} ref="formsy" onChange={this.onChange}>
|
||||
<GeneralError name="all" value={this.state.allValues} />
|
||||
{this.props.children}
|
||||
</Formsy.Form>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue