hook Options form submit to RUN dispatch
This commit is contained in:
parent
b748c8d104
commit
98864740ca
1 changed files with 7 additions and 3 deletions
|
@ -29,15 +29,19 @@ const Options = props => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleFormSubmit = e => {
|
const handleFormSubmit = (e, options) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
props.dispatch({
|
||||||
|
type: 'RUN',
|
||||||
|
value: options
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="Options" data-testid="Options">
|
<div className="Options" data-testid="Options">
|
||||||
<h3>Modeling Options</h3>
|
<h3>Modeling Options</h3>
|
||||||
|
|
||||||
<form onSubmit={e=>handleFormSubmit(e)} data-testid="Options-form">
|
<form onSubmit={e=>handleFormSubmit(e, props.options)} data-testid="Options-form">
|
||||||
|
|
||||||
{/* <h5>Output</h5> */}
|
{/* <h5>Output</h5> */}
|
||||||
|
|
||||||
|
@ -79,7 +83,7 @@ const Options = props => {
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
||||||
<form onSubmit={() => {}}>
|
<form onSubmit={()=>{}}>
|
||||||
<label>
|
<label>
|
||||||
Load from a prior run:
|
Load from a prior run:
|
||||||
<select value={load} onChange={e=>setLoad(e.target.value)}>
|
<select value={load} onChange={e=>setLoad(e.target.value)}>
|
||||||
|
|
Loading…
Reference in a new issue