| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | 
							- 'use client'
 - import { useEffect, useState } from 'react'
 - import { useTranslation } from 'react-i18next'
 - import { useRouter } from 'next/navigation'
 - import Toast from '../components/base/toast'
 - import Loading from '../components/base/loading'
 - import Button from '@/app/components/base/button'
 - import { basePath } from '@/utils/var'
 - import { fetchInitValidateStatus, initValidate } from '@/service/common'
 - import type { InitValidateStatusResponse } from '@/models/common'
 - import useDocumentTitle from '@/hooks/use-document-title'
 - 
 - const InitPasswordPopup = () => {
 -   useDocumentTitle('')
 -   const [password, setPassword] = useState('')
 -   const [loading, setLoading] = useState(true)
 -   const [validated, setValidated] = useState(false)
 -   const router = useRouter()
 - 
 -   const { t } = useTranslation()
 - 
 -   const handleValidation = async () => {
 -     setLoading(true)
 -     try {
 -       const response = await initValidate({ body: { password } })
 -       if (response.result === 'success') {
 -         setValidated(true)
 -         router.push('/install') // or render setup form
 -       }
 -       else {
 -         throw new Error('Validation failed')
 -       }
 -     }
 -     catch (e: any) {
 -       Toast.notify({
 -         type: 'error',
 -         message: e.message,
 -         duration: 5000,
 -       })
 -       setLoading(false)
 -     }
 -   }
 - 
 -   useEffect(() => {
 -     fetchInitValidateStatus().then((res: InitValidateStatusResponse) => {
 -       if (res.status === 'finished')
 -         window.location.href = `${basePath}/install`
 -       else
 -         setLoading(false)
 -     })
 -   }, [])
 - 
 -   return (
 -     loading
 -       ? <Loading />
 -       : <div>
 -         {!validated && (
 -           <div className="mx-12 block min-w-28">
 -             <div className="mb-4">
 -               <label htmlFor="password" className="block text-sm font-medium text-text-secondary">
 -                 {t('login.adminInitPassword')}
 - 
 -               </label>
 -               <div className="relative mt-1 rounded-md shadow-sm">
 -                 <input
 -                   id="password"
 -                   type="password"
 -                   value={password}
 -                   onChange={e => setPassword(e.target.value)}
 -                   className="block w-full appearance-none rounded-md border border-divider-regular px-3 py-2 shadow-sm placeholder:text-text-quaternary focus:border-indigo-500 focus:outline-none focus:ring-indigo-500 sm:text-sm"
 -                 />
 -               </div>
 -             </div>
 -             <div className="flex flex-row flex-wrap justify-stretch p-0">
 -               <Button variant="primary" onClick={handleValidation} className="min-w-28 basis-full">
 -                 {t('login.validate')}
 -               </Button>
 -             </div>
 -           </div>
 -         )}
 -       </div>
 -   )
 - }
 - 
 - export default InitPasswordPopup
 
 
  |