import React, { FC, FocusEventHandler } from 'react' import { useSelector, useDispatch } from 'react-redux' import noop from 'lodash/noop' import { useTheme } from '../../hooks' import { setFieldValue } from '../../actions/forms' import { getFieldValue, getFieldNotification } from '../../selectors/forms' import { AppState, FormNotification, NotificationType } from '../../types' import FieldLabel from '../../components/controls/field-label' import FormNotificationComponent from '../../components/form-notification' export interface Props { name: string label: string placeholder?: string onBlur?: FocusEventHandler } const TextField: FC = ({ name, label, placeholder, onBlur = noop, }) => { const theme = useTheme() const value = useSelector(state => getFieldValue(state, name, '')) const notification = useSelector(state => getFieldNotification(state, name)) const dispatch = useDispatch() let color = theme.secondary if (notification) { switch (notification.type) { case NotificationType.Error: color = theme.red break case NotificationType.Success: color = theme.green break } } return (
{label}