feat(web): 支持登录密码显示与隐藏
原因:登录时缺少密码可见性切换,长密码输入难以核对。 影响:新增可复用 PasswordInput,在登录表单提供眼睛按钮,并补充禁用态、焦点样式和无障碍标签。 风险:密码仅在用户主动点击时于当前输入框显示,不改变提交、存储或日志行为。 验证:前端 112 项测试通过;pnpm lint 通过;@easyai-ai-gateway/web 生产构建通过。
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import type { FormEvent } from 'react';
|
import type { FormEvent } from 'react';
|
||||||
import { LogIn, UserPlus } from 'lucide-react';
|
import { LogIn, UserPlus } from 'lucide-react';
|
||||||
import { Button, Card, CardContent, CardHeader, CardTitle, Input, Label, Tabs } from './ui';
|
import { Button, Card, CardContent, CardHeader, CardTitle, Input, Label, PasswordInput, Tabs } from './ui';
|
||||||
import type { AuthMode, LoadState, LoginForm, RegisterForm } from '../types';
|
import type { AuthMode, LoadState, LoginForm, RegisterForm } from '../types';
|
||||||
|
|
||||||
const tabs = [
|
const tabs = [
|
||||||
@@ -70,9 +70,8 @@ function LoginFormView(props: {
|
|||||||
</Label>
|
</Label>
|
||||||
<Label>
|
<Label>
|
||||||
密码
|
密码
|
||||||
<Input
|
<PasswordInput
|
||||||
autoComplete="current-password"
|
autoComplete="current-password"
|
||||||
type="password"
|
|
||||||
value={props.loginForm.password}
|
value={props.loginForm.password}
|
||||||
onChange={(event) => props.onLoginChange({ ...props.loginForm, password: event.target.value })}
|
onChange={(event) => props.onLoginChange({ ...props.loginForm, password: event.target.value })}
|
||||||
placeholder="至少 8 位"
|
placeholder="至少 8 位"
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
import { renderToStaticMarkup } from 'react-dom/server';
|
||||||
|
import { describe, expect, it } from 'vitest';
|
||||||
|
import { PasswordInput } from './input';
|
||||||
|
|
||||||
|
describe('PasswordInput', () => {
|
||||||
|
it('默认隐藏密码并提供显示密码按钮', () => {
|
||||||
|
const html = renderToStaticMarkup(<PasswordInput autoComplete="current-password" />);
|
||||||
|
|
||||||
|
expect(html).toContain('type="password"');
|
||||||
|
expect(html).toContain('autoComplete="current-password"');
|
||||||
|
expect(html).toContain('aria-label="显示密码"');
|
||||||
|
expect(html).toContain('aria-pressed="false"');
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import { cva, type VariantProps } from 'class-variance-authority';
|
import { cva, type VariantProps } from 'class-variance-authority';
|
||||||
|
import { Eye, EyeOff } from 'lucide-react';
|
||||||
import { cn } from '../../lib/utils';
|
import { cn } from '../../lib/utils';
|
||||||
|
|
||||||
const inputVariants = cva('shInput', {
|
const inputVariants = cva('shInput', {
|
||||||
@@ -26,3 +27,52 @@ export const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
|||||||
);
|
);
|
||||||
|
|
||||||
Input.displayName = 'Input';
|
Input.displayName = 'Input';
|
||||||
|
|
||||||
|
export interface PasswordInputProps extends Omit<InputProps, 'type'> {
|
||||||
|
hidePasswordLabel?: string;
|
||||||
|
showPasswordLabel?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const PasswordInput = React.forwardRef<HTMLInputElement, PasswordInputProps>(
|
||||||
|
(
|
||||||
|
{
|
||||||
|
className,
|
||||||
|
disabled,
|
||||||
|
hidePasswordLabel = '隐藏密码',
|
||||||
|
showPasswordLabel = '显示密码',
|
||||||
|
size,
|
||||||
|
...props
|
||||||
|
},
|
||||||
|
ref,
|
||||||
|
) => {
|
||||||
|
const [passwordVisible, setPasswordVisible] = React.useState(false);
|
||||||
|
const toggleLabel = passwordVisible ? hidePasswordLabel : showPasswordLabel;
|
||||||
|
const VisibilityIcon = passwordVisible ? EyeOff : Eye;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="shPasswordInputRoot">
|
||||||
|
<Input
|
||||||
|
ref={ref}
|
||||||
|
className={cn('shPasswordInput', className)}
|
||||||
|
disabled={disabled}
|
||||||
|
size={size}
|
||||||
|
type={passwordVisible ? 'text' : 'password'}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="shPasswordInputToggle"
|
||||||
|
aria-label={toggleLabel}
|
||||||
|
aria-pressed={passwordVisible}
|
||||||
|
disabled={disabled}
|
||||||
|
title={toggleLabel}
|
||||||
|
onClick={() => setPasswordVisible((visible) => !visible)}
|
||||||
|
>
|
||||||
|
<VisibilityIcon aria-hidden="true" size={16} />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
PasswordInput.displayName = 'PasswordInput';
|
||||||
|
|||||||
@@ -420,6 +420,48 @@
|
|||||||
padding: 0 11px;
|
padding: 0 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shPasswordInputRoot {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shPasswordInput {
|
||||||
|
padding-right: 42px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shPasswordInputToggle {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: 3px;
|
||||||
|
display: grid;
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
padding: 0;
|
||||||
|
place-items: center;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
border: 0;
|
||||||
|
border-radius: calc(var(--control-radius) - 2px);
|
||||||
|
background: transparent;
|
||||||
|
color: var(--text-soft);
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shPasswordInputToggle:hover {
|
||||||
|
background: var(--surface-muted);
|
||||||
|
color: var(--text-strong);
|
||||||
|
}
|
||||||
|
|
||||||
|
.shPasswordInputToggle:focus-visible {
|
||||||
|
outline: none;
|
||||||
|
box-shadow: 0 0 0 1px var(--ring);
|
||||||
|
}
|
||||||
|
|
||||||
|
.shPasswordInputToggle:disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
.shSelect {
|
.shSelect {
|
||||||
appearance: none;
|
appearance: none;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
|
|||||||
Reference in New Issue
Block a user