Files
new-api/web/default/src/features/profile/components/dialogs/change-password-dialog.tsx
T
QuentinHsu 2eaa943d9f perf(web): improve dialog sizing and footer layout
- migrate frontend dialogs to the shared footer API so actions stay separated from scrollable body content.
- tune dialog dimensions for model analytics, prefill groups, billing history, channel model sync, and related workflows.
- update channel terminology and dialog action translations across supported locales.
2026-06-06 21:49:33 +08:00

186 lines
5.5 KiB
TypeScript
Vendored

/*
Copyright (C) 2023-2026 QuantumNous
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
For commercial licensing, please contact support@quantumnous.com
*/
import { useState } from 'react'
import { Loader2 } from 'lucide-react'
import { useTranslation } from 'react-i18next'
import { toast } from 'sonner'
import { Button } from '@/components/ui/button'
import { Label } from '@/components/ui/label'
import { Dialog } from '@/components/dialog'
import { PasswordInput } from '@/components/password-input'
import { updateUserProfile } from '../../api'
// ============================================================================
// Change Password Dialog Component
// ============================================================================
interface ChangePasswordDialogProps {
open: boolean
onOpenChange: (open: boolean) => void
username: string
}
export function ChangePasswordDialog({
open,
onOpenChange,
username,
}: ChangePasswordDialogProps) {
const { t } = useTranslation()
const [loading, setLoading] = useState(false)
const [formData, setFormData] = useState({
originalPassword: '',
newPassword: '',
confirmPassword: '',
})
const handleChange = (field: string, value: string) => {
setFormData((prev) => ({ ...prev, [field]: value }))
}
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
// Validation
if (!formData.originalPassword) {
toast.error(t('Please enter your current password'))
return
}
if (!formData.newPassword) {
toast.error(t('Please enter a new password'))
return
}
if (formData.newPassword.length < 8) {
toast.error(t('Password must be at least 8 characters'))
return
}
if (formData.originalPassword === formData.newPassword) {
toast.error(t('New password must be different from current password'))
return
}
if (formData.newPassword !== formData.confirmPassword) {
toast.error(t('Passwords do not match'))
return
}
try {
setLoading(true)
const response = await updateUserProfile({
original_password: formData.originalPassword,
password: formData.newPassword,
})
if (response.success) {
toast.success(t('Password changed successfully'))
onOpenChange(false)
setFormData({
originalPassword: '',
newPassword: '',
confirmPassword: '',
})
} else {
toast.error(response.message || t('Failed to change password'))
}
} catch (_error) {
toast.error(t('Failed to change password'))
} finally {
setLoading(false)
}
}
const formId = 'change-password-form'
return (
<Dialog
open={open}
onOpenChange={onOpenChange}
title={t('Change Password')}
description={
<>
{t('Update your password for account:')} <strong>{username}</strong>
</>
}
contentClassName='sm:max-w-md'
contentHeight='auto'
bodyClassName='space-y-4'
footer={
<>
<Button
type='button'
variant='outline'
onClick={() => onOpenChange(false)}
disabled={loading}
>
{t('Cancel')}
</Button>
<Button type='submit' form={formId} disabled={loading}>
{loading && <Loader2 className='mr-2 h-4 w-4 animate-spin' />}
{loading ? t('Changing...') : t('Change Password')}
</Button>
</>
}
>
<form id={formId} onSubmit={handleSubmit} className='space-y-4'>
<div className='space-y-2'>
<Label htmlFor='currentPassword'>{t('Current Password')}</Label>
<PasswordInput
id='currentPassword'
value={formData.originalPassword}
onChange={(e) => handleChange('originalPassword', e.target.value)}
disabled={loading}
required
autoComplete='current-password'
/>
</div>
<div className='space-y-2'>
<Label htmlFor='newPassword'>{t('New Password')}</Label>
<PasswordInput
id='newPassword'
value={formData.newPassword}
onChange={(e) => handleChange('newPassword', e.target.value)}
disabled={loading}
required
minLength={8}
autoComplete='new-password'
/>
<p className='text-muted-foreground text-xs'>
{t('Must be at least 8 characters')}
</p>
</div>
<div className='space-y-2'>
<Label htmlFor='confirmPassword'>{t('Confirm New Password')}</Label>
<PasswordInput
id='confirmPassword'
value={formData.confirmPassword}
onChange={(e) => handleChange('confirmPassword', e.target.value)}
disabled={loading}
required
autoComplete='new-password'
/>
</div>
</form>
</Dialog>
)
}