mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-06 13:03:20 +02:00
41 lines
1016 B
TypeScript
41 lines
1016 B
TypeScript
import TextField from "@material-ui/core/TextField";
|
|
import React, { ChangeEvent } from "react";
|
|
import { ErrorInfo } from "../../../classes/client";
|
|
|
|
type InputProps = {
|
|
name: string;
|
|
error?: ErrorInfo;
|
|
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
label: string;
|
|
required?: boolean;
|
|
type: string;
|
|
value?: string
|
|
autoComplete?: string;
|
|
fullWidth?: boolean
|
|
disabled?: boolean
|
|
}
|
|
|
|
const Input = ({
|
|
name,
|
|
error,
|
|
onChange,
|
|
required = true,
|
|
type,
|
|
value,
|
|
label,
|
|
autoComplete,
|
|
fullWidth = true,
|
|
disabled = false
|
|
|
|
}: InputProps) => {
|
|
|
|
const fieldError = error?.fields?.[name];
|
|
return (
|
|
<TextField name={name} type={type} label={label}
|
|
value={value} onChange={onChange}
|
|
error={Boolean(fieldError)} helperText={fieldError}
|
|
variant="outlined" required={required} fullWidth={fullWidth} margin="dense" disabled={disabled} autoComplete={autoComplete} />
|
|
|
|
);
|
|
}
|
|
export default Input; |