m3-academy-template-vtexio/custom/react/components/B2bForm/Fields/M3PhoneField.tsx

26 lines
1015 B
TypeScript
Raw Normal View History

2022-08-11 13:06:07 +00:00
import { useFormikContext } from "formik";
import React from "react";
import InputMask from "react-input-mask";
import styles from "./M3Field.css";
import { FormFields } from "../B2bForm";
import { FieldProps } from "./M3Field";
export const M3PhoneField: StorefrontFunctionComponent<FieldProps> = (
{ type, name, label }: FieldProps) => {
const { values, touched, handleChange, handleBlur, errors } = useFormikContext<FormFields>();
return <div className={`${styles.fieldGroup} ${errors[name] && touched[name] && styles.fieldGroupError}`}>
<label htmlFor={name} className={styles.fieldLabel}>{label}</label>
<InputMask
mask="(99) 99999 99999"
type={type ? type : "text"}
name={name}
onChange={handleChange}
onBlur={handleBlur}
value={values[name]}
className={styles.fieldInput}
/>
<span className={styles.error}> {errors[name] && touched[name] && errors[name]} </span>
</div>;
};