| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 | 
							- 'use client'
 - import React, { useCallback, useEffect } from 'react'
 - import { useTranslation } from 'react-i18next'
 - import { useDebounceFn } from 'ahooks'
 - 
 - import Link from 'next/link'
 - import { useRouter } from 'next/navigation'
 - 
 - import type { SubmitHandler } from 'react-hook-form'
 - import { useForm } from 'react-hook-form'
 - import { z } from 'zod'
 - import { zodResolver } from '@hookform/resolvers/zod'
 - import Loading from '../components/base/loading'
 - import classNames from '@/utils/classnames'
 - import Button from '@/app/components/base/button'
 - 
 - import { fetchInitValidateStatus, fetchSetupStatus, setup } from '@/service/common'
 - import type { InitValidateStatusResponse, SetupStatusResponse } from '@/models/common'
 - import useDocumentTitle from '@/hooks/use-document-title'
 - 
 - const validPassword = /^(?=.*[a-zA-Z])(?=.*\d).{8,}$/
 - 
 - const accountFormSchema = z.object({
 -   email: z
 -     .string()
 -     .min(1, { message: 'login.error.emailInValid' })
 -     .email('login.error.emailInValid'),
 -   name: z.string().min(1, { message: 'login.error.nameEmpty' }),
 -   password: z.string().min(8, {
 -     message: 'login.error.passwordLengthInValid',
 -   }).regex(validPassword, 'login.error.passwordInvalid'),
 - })
 - 
 - type AccountFormValues = z.infer<typeof accountFormSchema>
 - 
 - const InstallForm = () => {
 -   useDocumentTitle('')
 -   const { t } = useTranslation()
 -   const router = useRouter()
 -   const [showPassword, setShowPassword] = React.useState(false)
 -   const [loading, setLoading] = React.useState(true)
 -   const {
 -     register,
 -     handleSubmit,
 -     formState: { errors, isSubmitting },
 -   } = useForm<AccountFormValues>({
 -     resolver: zodResolver(accountFormSchema),
 -     defaultValues: {
 -       name: '',
 -       password: '',
 -       email: '',
 -     },
 -   })
 - 
 -   const onSubmit: SubmitHandler<AccountFormValues> = async (data) => {
 -     await setup({
 -       body: {
 -         ...data,
 -       },
 -     })
 -     router.push('/signin')
 -   }
 - 
 -   const handleSetting = async () => {
 -     if (isSubmitting) return
 -     handleSubmit(onSubmit)()
 -   }
 - 
 -   const { run: debouncedHandleKeyDown } = useDebounceFn(
 -     (e: React.KeyboardEvent) => {
 -       if (e.key === 'Enter') {
 -         e.preventDefault()
 -         handleSetting()
 -       }
 -     },
 -     { wait: 200 },
 -   )
 - 
 -   const handleKeyDown = useCallback(debouncedHandleKeyDown, [debouncedHandleKeyDown])
 - 
 -   useEffect(() => {
 -     fetchSetupStatus().then((res: SetupStatusResponse) => {
 -       if (res.step === 'finished') {
 -         localStorage.setItem('setup_status', 'finished')
 -         router.push('/signin')
 -       }
 -       else {
 -         fetchInitValidateStatus().then((res: InitValidateStatusResponse) => {
 -           if (res.status === 'not_started')
 -             router.push('/init')
 -         })
 -       }
 -       setLoading(false)
 -     })
 -   }, [])
 - 
 -   return (
 -     loading
 -       ? <Loading />
 -       : <>
 -         <div className="sm:mx-auto sm:w-full sm:max-w-md">
 -           <h2 className="text-[32px] font-bold text-text-primary">{t('login.setAdminAccount')}</h2>
 -           <p className='mt-1 text-sm text-text-secondary'>{t('login.setAdminAccountDesc')}</p>
 -         </div>
 -         <div className="mt-8 grow sm:mx-auto sm:w-full sm:max-w-md">
 -           <div className="relative">
 -             <form onSubmit={handleSubmit(onSubmit)} onKeyDown={handleKeyDown}>
 -               <div className='mb-5'>
 -                 <label htmlFor="email" className="my-2 flex items-center justify-between text-sm font-medium text-text-primary">
 -                   {t('login.email')}
 -                 </label>
 -                 <div className="mt-1 rounded-md shadow-sm">
 -                   <input
 -                     {...register('email')}
 -                     placeholder={t('login.emailPlaceholder') || ''}
 -                     className={'w-full appearance-none rounded-md border border-transparent bg-components-input-bg-normal py-[7px] pl-2 text-components-input-text-filled caret-primary-600 outline-none placeholder:text-components-input-text-placeholder hover:border-components-input-border-hover hover:bg-components-input-bg-hover focus:border-components-input-border-active focus:bg-components-input-bg-active focus:shadow-xs'}
 -                   />
 -                   {errors.email && <span className='text-sm text-red-400'>{t(`${errors.email?.message}`)}</span>}
 -                 </div>
 - 
 -               </div>
 - 
 -               <div className='mb-5'>
 -                 <label htmlFor="name" className="my-2 flex items-center justify-between text-sm font-medium text-text-primary">
 -                   {t('login.name')}
 -                 </label>
 -                 <div className="relative mt-1 rounded-md shadow-sm">
 -                   <input
 -                     {...register('name')}
 -                     placeholder={t('login.namePlaceholder') || ''}
 -                     className={'w-full appearance-none rounded-md border border-transparent bg-components-input-bg-normal py-[7px] pl-2 text-components-input-text-filled caret-primary-600 outline-none placeholder:text-components-input-text-placeholder hover:border-components-input-border-hover hover:bg-components-input-bg-hover focus:border-components-input-border-active focus:bg-components-input-bg-active focus:shadow-xs'}
 -                   />
 -                 </div>
 -                 {errors.name && <span className='text-sm text-red-400'>{t(`${errors.name.message}`)}</span>}
 -               </div>
 - 
 -               <div className='mb-5'>
 -                 <label htmlFor="password" className="my-2 flex items-center justify-between text-sm font-medium text-text-primary">
 -                   {t('login.password')}
 -                 </label>
 -                 <div className="relative mt-1 rounded-md shadow-sm">
 -                   <input
 -                     {...register('password')}
 -                     type={showPassword ? 'text' : 'password'}
 -                     placeholder={t('login.passwordPlaceholder') || ''}
 -                     className={'w-full appearance-none rounded-md border border-transparent bg-components-input-bg-normal py-[7px] pl-2 text-components-input-text-filled caret-primary-600 outline-none placeholder:text-components-input-text-placeholder hover:border-components-input-border-hover hover:bg-components-input-bg-hover focus:border-components-input-border-active focus:bg-components-input-bg-active focus:shadow-xs'}
 -                   />
 - 
 -                   <div className="absolute inset-y-0 right-0 flex items-center pr-3">
 -                     <button
 -                       type="button"
 -                       onClick={() => setShowPassword(!showPassword)}
 -                       className="text-text-quaternary hover:text-text-tertiary focus:text-text-tertiary focus:outline-none"
 -                     >
 -                       {showPassword ? '👀' : '😝'}
 -                     </button>
 -                   </div>
 -                 </div>
 - 
 -                 <div className={classNames('mt-1 text-xs text-text-tertiary', {
 -                   'text-red-400 !text-sm': errors.password,
 -                 })}>{t('login.error.passwordInvalid')}</div>
 -               </div>
 - 
 -               <div>
 -                 <Button variant='primary' className='w-full' onClick={handleSetting}>
 -                   {t('login.installBtn')}
 -                 </Button>
 -               </div>
 -             </form>
 -             <div className="mt-2 block w-full text-xs text-text-tertiary">
 -               {t('login.license.tip')}
 -                
 -               <Link
 -                 className='text-text-accent'
 -                 target='_blank' rel='noopener noreferrer'
 -                 href={'https://docs.dify.ai/user-agreement/open-source'}
 -               >{t('login.license.link')}</Link>
 -             </div>
 -           </div>
 -         </div>
 -       </>
 -   )
 - }
 - 
 - export default InstallForm
 
 
  |