fix: add composition checkout when input create workspace name, fixed… (#1035)

This commit is contained in:
Qi
2023-02-15 22:29:07 +08:00
committed by GitHub
parent 4b92ad6a22
commit a360e30073
2 changed files with 26 additions and 18 deletions

View File

@@ -4,6 +4,7 @@ import {
useState,
FocusEventHandler,
KeyboardEventHandler,
HTMLAttributes,
} from 'react';
import { StyledInput } from './style';
@@ -18,20 +19,20 @@ type inputProps = {
onChange?: (value: string) => void;
onBlur?: FocusEventHandler<HTMLInputElement>;
onKeyDown?: KeyboardEventHandler<HTMLInputElement>;
};
export const Input = (props: inputProps) => {
const {
disabled,
value: valueProp,
placeholder,
maxLength,
minLength,
height,
width = 260,
onChange,
onBlur,
onKeyDown,
} = props;
} & Omit<HTMLAttributes<HTMLInputElement>, 'onChange'>;
export const Input = ({
disabled,
value: valueProp,
placeholder,
maxLength,
minLength,
height,
width = 260,
onChange,
onBlur,
onKeyDown,
...otherProps
}: inputProps) => {
const [value, setValue] = useState<string>(valueProp || '');
const handleChange: InputHTMLAttributes<HTMLInputElement>['onChange'] = e => {
const { value } = e.target;
@@ -61,6 +62,7 @@ export const Input = (props: inputProps) => {
onBlur={handleBlur}
onKeyDown={handleKeyDown}
height={height}
{...otherProps}
></StyledInput>
);
};