misc_pterodactyl-panel/resources/scripts/components/elements/Field.tsx

93 lines
3.3 KiB
TypeScript
Raw Normal View History

import type { FieldProps } from 'formik';
import { Field as FormikField } from 'formik';
import type { InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
2022-11-25 20:25:03 +00:00
import { forwardRef } from 'react';
import tw, { styled } from 'twin.macro';
2020-07-04 19:39:55 +00:00
import Label from '@/components/elements/Label';
import Input, { Textarea } from '@/components/elements/Input';
import InputError from '@/components/elements/InputError';
2019-12-16 00:41:20 +00:00
interface OwnProps {
name: string;
light?: boolean;
label?: string;
description?: string;
validate?: (value: any) => undefined | string | Promise<any>;
}
type Props = OwnProps & Omit<InputHTMLAttributes<HTMLInputElement>, 'name'>;
2019-12-16 00:41:20 +00:00
const Field = forwardRef<HTMLInputElement, Props>(
({ id, name, light = false, label, description, validate, ...props }, ref) => (
<FormikField innerRef={ref} name={name} validate={validate}>
{({ field, form: { errors, touched } }: FieldProps) => (
<div>
{label && (
<Label htmlFor={id} isLight={light}>
{label}
</Label>
)}
<Input
id={id}
{...field}
2019-12-16 00:41:20 +00:00
{...props}
isLight={light}
hasError={!!(touched[field.name] && errors[field.name])}
/>
{touched[field.name] && errors[field.name] ? (
2019-12-16 00:41:20 +00:00
<p className={'input-help error'}>
{(errors[field.name] as string).charAt(0).toUpperCase() +
(errors[field.name] as string).slice(1)}
</p>
) : description ? (
<p className={'input-help'}>{description}</p>
) : null}
</div>
)}
</FormikField>
2022-11-25 20:25:03 +00:00
),
);
2020-07-04 22:19:46 +00:00
Field.displayName = 'Field';
2020-02-08 23:23:08 +00:00
export default Field;
type TextareaProps = OwnProps & Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'>;
export const TextareaField = forwardRef<HTMLTextAreaElement, TextareaProps>(function TextareaField(
{ id, name, light = false, label, description, validate, className, ...props },
ref,
) {
return (
<FormikField innerRef={ref} name={name} validate={validate}>
{({ field, form: { errors, touched } }: FieldProps) => (
<div className={className}>
{label && (
<Label htmlFor={id} isLight={light}>
{label}
</Label>
)}
<Textarea
id={id}
{...field}
{...props}
isLight={light}
hasError={!!(touched[field.name] && errors[field.name])}
/>
<InputError errors={errors} touched={touched} name={field.name}>
{description || null}
</InputError>
</div>
)}
</FormikField>
);
});
TextareaField.displayName = 'TextareaField';
export const FieldRow = styled.div`
${tw`grid grid-cols-1 sm:grid-cols-2 gap-x-6 gap-y-6 mb-6`};
& > div {
${tw`sm:w-full sm:flex sm:flex-col`};
}
`;