2eaa943d9f
- 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.
117 lines
3.5 KiB
TypeScript
Vendored
117 lines
3.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 { useEffect } from 'react'
|
|
import { RefreshCw, Loader2 } from 'lucide-react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Label } from '@/components/ui/label'
|
|
import { CopyButton } from '@/components/copy-button'
|
|
import { Dialog } from '@/components/dialog'
|
|
import { useAccessToken } from '../../hooks'
|
|
|
|
// ============================================================================
|
|
// Access Token Dialog Component
|
|
// ============================================================================
|
|
|
|
interface AccessTokenDialogProps {
|
|
open: boolean
|
|
onOpenChange: (open: boolean) => void
|
|
}
|
|
|
|
export function AccessTokenDialog({
|
|
open,
|
|
onOpenChange,
|
|
}: AccessTokenDialogProps) {
|
|
const { t } = useTranslation()
|
|
const { token, generating, generate } = useAccessToken()
|
|
|
|
// Auto-generate token when dialog opens if no token exists
|
|
useEffect(() => {
|
|
if (open && !token) {
|
|
generate()
|
|
}
|
|
}, [open, token, generate])
|
|
|
|
return (
|
|
<Dialog
|
|
open={open}
|
|
onOpenChange={onOpenChange}
|
|
title={t('Access Token')}
|
|
description={t(
|
|
"Your system access token for API authentication. Keep it secure and don't share it with others."
|
|
)}
|
|
contentClassName='sm:max-w-md'
|
|
contentHeight='auto'
|
|
bodyClassName='space-y-4'
|
|
footer={
|
|
<>
|
|
<Button
|
|
type='button'
|
|
variant='outline'
|
|
onClick={() => onOpenChange(false)}
|
|
>
|
|
{t('Close')}
|
|
</Button>
|
|
<Button
|
|
type='button'
|
|
onClick={generate}
|
|
disabled={generating}
|
|
className='gap-2'
|
|
>
|
|
{generating ? (
|
|
<Loader2 className='h-4 w-4 animate-spin' />
|
|
) : (
|
|
<RefreshCw className='h-4 w-4' />
|
|
)}
|
|
{generating ? t('Generating...') : t('Regenerate')}
|
|
</Button>
|
|
</>
|
|
}
|
|
>
|
|
<div className='my-6 space-y-4'>
|
|
<div className='space-y-2'>
|
|
<Label htmlFor='token'>{t('Token')}</Label>
|
|
<div className='flex gap-2'>
|
|
<Input
|
|
id='token'
|
|
type='text'
|
|
value={token}
|
|
readOnly
|
|
className='font-mono text-xs'
|
|
placeholder={t('Click "Generate" to create a token')}
|
|
/>
|
|
<CopyButton
|
|
value={token}
|
|
variant='outline'
|
|
className='size-9'
|
|
iconClassName='size-4'
|
|
tooltip={t('Copy token')}
|
|
aria-label={t('Copy token')}
|
|
/>
|
|
</div>
|
|
<p className='text-muted-foreground text-xs'>
|
|
{t('Use this token for API authentication')}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
)
|
|
}
|