Files
gpustack-ui/src/components/seal-form/password.tsx
T
2026-04-08 18:54:06 +08:00

89 lines
2.1 KiB
TypeScript

import type { InputProps } from 'antd';
import { Form, Input } from 'antd';
import { PasswordProps } from 'antd/lib/input/Password';
import React, { useEffect, useRef, useState } from 'react';
import { SealFormItemProps } from './types';
import Wrapper from './wrapper';
import InputWrapper from './wrapper/input';
const SealPassword: React.FC<InputProps & SealFormItemProps & PasswordProps> = (
props
) => {
const {
label,
placeholder,
required,
description,
isInFormItems = true,
...rest
} = props;
const [isFocus, setIsFocus] = useState(false);
const inputRef = useRef<any>(null);
let status = '';
if (isInFormItems) {
const statusData = Form?.Item?.useStatus?.();
status = statusData?.status || '';
}
useEffect(() => {
if (props.value) {
setIsFocus(true);
}
}, [props.value]);
const handleClickWrapper = () => {
if (!props.disabled && !isFocus) {
inputRef.current?.focus?.({
cursor: 'all'
});
setIsFocus(true);
}
};
const handleChange = (e: any) => {
e.target.value = e.target.value?.trim?.();
props.onChange?.(e);
};
const handleOnFocus = (e: any) => {
setIsFocus(true);
props.onFocus?.(e);
};
const handleOnBlur = (e: any) => {
e.target.value = e.target.value?.trim?.();
if (!inputRef.current?.input?.value) {
setIsFocus(false);
}
props.onBlur?.(e);
};
return (
<InputWrapper>
<Wrapper
status={status}
label={label}
isFocus={isFocus}
required={required}
description={description}
disabled={props.disabled}
labelExtra={props.labelExtra}
hasPrefix={!!props.prefix}
onClick={handleClickWrapper}
>
<Input.Password
{...rest}
autoComplete={rest.autoComplete || 'new-password'}
ref={inputRef}
className="seal-input-password"
onFocus={handleOnFocus}
onBlur={handleOnBlur}
onChange={handleChange}
></Input.Password>
</Wrapper>
</InputWrapper>
);
};
export default SealPassword;