1
0
Fork 0

🐛 Moved state change in DraftConfigurator from render loop to useState. Fixes #105

This commit is contained in:
Joost De Cock 2019-09-06 18:03:09 +02:00
parent 9fa423bce7
commit 983886df83
5 changed files with 43 additions and 38 deletions

View file

@ -1,48 +1,49 @@
import React, { useState } from "react";
import PropTypes from "prop-types";
import Radio from "@material-ui/core/Radio";
import RadioGroup from "@material-ui/core/RadioGroup";
import FormControlLabel from "@material-ui/core/FormControlLabel";
import React, { useState, useEffect } from 'react'
import PropTypes from 'prop-types'
import Radio from '@material-ui/core/Radio'
import RadioGroup from '@material-ui/core/RadioGroup'
import FormControlLabel from '@material-ui/core/FormControlLabel'
const Bool = props => {
const [value, setValue] = useState(props.dflt);
const [value, setValue] = useState(props.dflt)
useEffect(() => {
if (props.value !== value) setValue(props.value)
}, [props.value])
const toggle = () => {
props.updateValue(props.name, !value);
setValue(!value);
};
// Force state update when rerendering due to props change
if (props.value !== value) setValue(props.value);
props.updateValue(props.name, !value)
setValue(!value)
}
return (
<RadioGroup onChange={toggle} value={JSON.stringify(value)}>
<FormControlLabel
control={<Radio color="primary" />}
value="false"
checked={value === "false" || value === false ? true : false}
checked={value === 'false' || value === false ? true : false}
label={props.labels[0]}
className="po-list-item"
/>
<FormControlLabel
control={<Radio color="primary" />}
value="true"
checked={value === "true" || value === true ? true : false}
checked={value === 'true' || value === true ? true : false}
label={props.labels[1]}
className="po-list-item"
/>
</RadioGroup>
);
};
)
}
Bool.propTypes = {
dflt: PropTypes.bool,
labels: PropTypes.array,
updateValue: PropTypes.func.isRequired,
name: PropTypes.string.isRequired
};
}
Bool.defaultProps = {
dflt: false,
labels: ["false", "true"]
};
labels: ['false', 'true']
}
export default Bool;
export default Bool