File size: 1,636 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
import React from 'react';
import { useForm, Controller } from 'react-hook-form';
import NumberFormat from 'react-number-format';
import { TextField, ThemeProvider, createMuiTheme } from '@material-ui/core';
const theme = createMuiTheme({
palette: {
type: 'dark',
},
});
const defaultValues = {
priceInCents: 1234567,
muiPriceInCents: 1234567,
};
function App() {
const form = useForm({ defaultValues });
const onSubmit = (data) => {
form.reset(defaultValues);
};
return (
<ThemeProvider theme={theme}>
<form onSubmit={form.handleSubmit(onSubmit)}>
<label htmlFor="priceInCents">Price</label>
<label htmlFor="muiPriceInCents">Material UI Price</label>
<Controller
name="muiPriceInCents"
control={form.control}
render={(props) => <MuiCurrencyFormat {...props} />}
/>
<input type="submit" />
<input
style={{ display: 'block', marginTop: 20 }}
type="button"
onClick={() => form.reset(defaultValues)}
value="Custom Reset"
/>
<pre style={{ color: '#fff', marginTop: 24 }}>
{JSON.stringify(form.watch(), null, 2)}
</pre>
</form>
</ThemeProvider>
);
}
const MuiCurrencyFormat = (props) => {
const { onChange, value, ...rest } = props;
return (
<NumberFormat
customInput={TextField}
{...rest}
value={value}
fullWidth
thousandSeparator={true}
decimalScale={2}
onValueChange={(target) => {
onChange(target.floatValue);
}}
isNumericString
prefix="$ "
/>
);
};
|