| import React, { useState, useEffect } from 'react'; |
| import ReactDOM from 'react-dom'; |
| import { useForm } from 'react-hook-form'; |
| import Input from '@material-ui/core/Input'; |
| import Select from 'react-select'; |
| import { Input as StrapInput } from 'reactstrap'; |
|
|
| const options = [ |
| { value: 'chocolate', label: 'Chocolate' }, |
| { value: 'strawberry', label: 'Strawberry' }, |
| { value: 'vanilla', label: 'Vanilla' }, |
| ]; |
|
|
| const MyInput = ({ label, name, onChange, onBlur, ref }) => { |
| return ( |
| <> |
| <label htmlFor={name}>{label}</label> |
| <input |
| name={name} |
| placeholder="Jane" |
| onChange={onChange} |
| onBlur={onBlur} |
| ref={ref} |
| /> |
| </> |
| ); |
| }; |
|
|
| export default function App() { |
| const { register, handleSubmit, setValue } = useForm(); |
| const onSubmit = (data) => { |
| alert(JSON.stringify(data, null)); |
| }; |
| const [values, setReactSelect] = useState({ |
| selectedOption: [], |
| }); |
|
|
| const handleMultiChange = (selectedOption) => { |
| setValue('reactSelect', selectedOption); |
| setReactSelect({ selectedOption }); |
| }; |
|
|
| useEffect(() => { |
| register({ name: 'reactSelect' }); |
| }, []); |
|
|
| return ( |
| <div className="App"> |
| <form onSubmit={handleSubmit(onSubmit)}> |
| <div> |
| <Input |
| style={{ |
| marginBottom: '20px', |
| }} |
| name="HelloWorld" |
| inputRef={register} |
| placeholder="Material UI - Input" |
| inputProps={{ |
| 'aria-label': 'Description', |
| }} |
| /> |
| </div> |
| |
| <div> |
| <StrapInput |
| placeholder="Strap - Input" |
| name="strapInput" |
| innerRef={register} |
| /> |
| </div> |
| |
| <div> |
| <label className="reactSelectLabel">React select</label> |
| <Select |
| className="reactSelect" |
| name="filters" |
| placeholder="Filters" |
| value={values.selectedOption} |
| options={options} |
| onChange={handleMultiChange} |
| isMulti |
| /> |
| </div> |
| |
| <div> |
| <MyInput label="First Name" {...register('firstName')} /> |
| </div> |
| |
| <div> |
| <label htmlFor="lastName">Last Name</label> |
| <input placeholder="Luo" {...register('lastName')} /> |
| </div> |
| |
| <div> |
| <label htmlFor="email">Email</label> |
| <input |
| placeholder="bluebill1049@hotmail.com" |
| type="email" |
| {...register('email')} |
| /> |
| </div> |
| <button type="submit">Submit</button> |
| </form> |
| </div> |
| ); |
| } |
|
|