| 
                        123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 | 
                        - 'use client'
 - import React, { useEffect, useReducer, useState } from 'react'
 - import { useTranslation } from 'react-i18next'
 - import { useRouter } from 'next/navigation'
 - import classNames from 'classnames'
 - import useSWR from 'swr'
 - import Link from 'next/link'
 - import { useContext } from 'use-context-selector'
 - import Toast from '../components/base/toast'
 - import style from './page.module.css'
 - // import Tooltip from '@/app/components/base/tooltip/index'
 - import { IS_CE_EDITION, apiPrefix } from '@/config'
 - import Button from '@/app/components/base/button'
 - import { login, oauth } from '@/service/common'
 - import I18n from '@/context/i18n'
 - 
 - const validEmailReg = /^[\w\.-]+@([\w-]+\.)+[\w-]{2,}$/
 - 
 - type IState = {
 -   formValid: boolean
 -   github: boolean
 -   google: boolean
 - }
 - 
 - type IAction = {
 -   type: 'login' | 'login_failed' | 'github_login' | 'github_login_failed' | 'google_login' | 'google_login_failed'
 - }
 - 
 - function reducer(state: IState, action: IAction) {
 -   switch (action.type) {
 -     case 'login':
 -       return {
 -         ...state,
 -         formValid: true,
 -       }
 -     case 'login_failed':
 -       return {
 -         ...state,
 -         formValid: true,
 -       }
 -     case 'github_login':
 -       return {
 -         ...state,
 -         github: true,
 -       }
 -     case 'github_login_failed':
 -       return {
 -         ...state,
 -         github: false,
 -       }
 -     case 'google_login':
 -       return {
 -         ...state,
 -         google: true,
 -       }
 -     case 'google_login_failed':
 -       return {
 -         ...state,
 -         google: false,
 -       }
 -     default:
 -       throw new Error('Unknown action.')
 -   }
 - }
 - 
 - const NormalForm = () => {
 -   const { t } = useTranslation()
 -   const router = useRouter()
 -   const { locale } = useContext(I18n)
 - 
 -   const [state, dispatch] = useReducer(reducer, {
 -     formValid: false,
 -     github: false,
 -     google: false,
 -   })
 - 
 -   const [showPassword, setShowPassword] = useState(false)
 -   const [email, setEmail] = useState('')
 -   const [password, setPassword] = useState('')
 - 
 -   const [isLoading, setIsLoading] = useState(false)
 -   const handleEmailPasswordLogin = async () => {
 -     if (!validEmailReg.test(email)) {
 -       Toast.notify({
 -         type: 'error',
 -         message: t('login.error.emailInValid'),
 -       })
 -       return
 -     }
 -     try {
 -       setIsLoading(true)
 -       const res = await login({
 -         url: '/login',
 -         body: {
 -           email,
 -           password,
 -           remember_me: true,
 -         },
 -       })
 -       localStorage.setItem('console_token', res.data)
 -       router.replace('/apps')
 -     }
 -     finally {
 -       setIsLoading(false)
 -     }
 -   }
 - 
 -   const { data: github, error: github_error } = useSWR(state.github
 -     ? ({
 -       url: '/oauth/login/github',
 -       // params: {
 -       //   provider: 'github',
 -       // },
 -     })
 -     : null, oauth)
 - 
 -   const { data: google, error: google_error } = useSWR(state.google
 -     ? ({
 -       url: '/oauth/login/google',
 -       // params: {
 -       //   provider: 'google',
 -       // },
 -     })
 -     : null, oauth)
 - 
 -   useEffect(() => {
 -     if (github_error !== undefined)
 -       dispatch({ type: 'github_login_failed' })
 -     if (github)
 -       window.location.href = github.redirect_url
 -   }, [github, github_error])
 - 
 -   useEffect(() => {
 -     if (google_error !== undefined)
 -       dispatch({ type: 'google_login_failed' })
 -     if (google)
 -       window.location.href = google.redirect_url
 -   }, [google, google])
 - 
 -   return (
 -     <>
 -       <div className="w-full mx-auto">
 -         <h2 className="text-[32px] font-bold text-gray-900">{t('login.pageTitle')}</h2>
 -         <p className='mt-1 text-sm text-gray-600'>{t('login.welcome')}</p>
 -       </div>
 - 
 -       <div className="w-full mx-auto mt-8">
 -         <div className="bg-white ">
 -           {!IS_CE_EDITION && (
 -             <div className="flex flex-col gap-3 mt-6">
 -               <div className='w-full'>
 -                 <a href={`${apiPrefix}/oauth/login/github`}>
 -                   <Button
 -                     type='default'
 -                     disabled={isLoading}
 -                     className='w-full hover:!bg-gray-50 !text-sm !font-medium'
 -                   >
 -                     <>
 -                       <span className={
 -                         classNames(
 -                           style.githubIcon,
 -                           'w-5 h-5 mr-2',
 -                         )
 -                       } />
 -                       <span className="truncate text-gray-800">{t('login.withGitHub')}</span>
 -                     </>
 -                   </Button>
 -                 </a>
 -               </div>
 -               <div className='w-full'>
 -                 <a href={`${apiPrefix}/oauth/login/google`}>
 -                   <Button
 -                     type='default'
 -                     disabled={isLoading}
 -                     className='w-full hover:!bg-gray-50 !text-sm !font-medium'
 -                   >
 -                     <>
 -                       <span className={
 -                         classNames(
 -                           style.googleIcon,
 -                           'w-5 h-5 mr-2',
 -                         )
 -                       } />
 -                       <span className="truncate text-gray-800">{t('login.withGoogle')}</span>
 -                     </>
 -                   </Button>
 -                 </a>
 -               </div>
 -             </div>
 -           )}
 - 
 -           {
 -             IS_CE_EDITION && <>
 -               {/* <div className="relative mt-6">
 -                 <div className="absolute inset-0 flex items-center" aria-hidden="true">
 -                   <div className="w-full border-t border-gray-300" />
 -                 </div>
 -                 <div className="relative flex justify-center text-sm">
 -                   <span className="px-2 text-gray-300 bg-white">OR</span>
 -                 </div>
 -               </div> */}
 - 
 -               <form onSubmit={() => { }}>
 -                 <div className='mb-5'>
 -                   <label htmlFor="email" className="my-2 block text-sm font-medium text-gray-900">
 -                     {t('login.email')}
 -                   </label>
 -                   <div className="mt-1">
 -                     <input
 -                       value={email}
 -                       onChange={e => setEmail(e.target.value)}
 -                       id="email"
 -                       type="email"
 -                       autoComplete="email"
 -                       placeholder={t('login.emailPlaceholder') || ''}
 -                       className={'appearance-none block w-full rounded-lg pl-[14px] px-3 py-2 border border-gray-200 hover:border-gray-300 hover:shadow-sm focus:outline-none focus:ring-primary-500 focus:border-primary-500 placeholder-gray-400 caret-primary-600 sm:text-sm'}
 -                     />
 -                   </div>
 -                 </div>
 - 
 -                 <div className='mb-4'>
 -                   <label htmlFor="password" className="my-2 flex items-center justify-between text-sm font-medium text-gray-900">
 -                     <span>{t('login.password')}</span>
 -                     {/* <Tooltip
 -                       selector='forget-password'
 -                       htmlContent={
 -                         <div>
 -                           <div className='font-medium'>{t('login.forget')}</div>
 -                           <div className='font-medium text-gray-500'>
 -                             <code>
 -                               sudo rm -rf /
 -                             </code>
 -                           </div>
 -                         </div>
 -                       }
 -                     >
 -                       <span className='cursor-pointer text-primary-600'>{t('login.forget')}</span>
 -                     </Tooltip> */}
 -                   </label>
 -                   <div className="relative mt-1 rounded-md shadow-sm">
 -                     <input
 -                       id="password"
 -                       value={password}
 -                       onChange={e => setPassword(e.target.value)}
 -                       onKeyDown={(e) => {
 -                         if (e.key === 'Enter')
 -                           handleEmailPasswordLogin()
 -                       }}
 -                       type={showPassword ? 'text' : 'password'}
 -                       autoComplete="current-password"
 -                       placeholder={t('login.passwordPlaceholder') || ''}
 -                       className={'appearance-none block w-full rounded-lg pl-[14px] px-3 py-2 border border-gray-200 hover:border-gray-300 hover:shadow-sm focus:outline-none focus:ring-primary-500 focus:border-primary-500 placeholder-gray-400 caret-primary-600 sm:text-sm pr-10'}
 -                     />
 -                     <div className="absolute inset-y-0 right-0 flex items-center pr-3">
 -                       <button
 -                         type="button"
 -                         onClick={() => setShowPassword(!showPassword)}
 -                         className="text-gray-400 hover:text-gray-500 focus:outline-none focus:text-gray-500"
 -                       >
 -                         {showPassword ? '👀' : '😝'}
 -                       </button>
 -                     </div>
 -                   </div>
 -                 </div>
 - 
 -                 <div className='mb-2'>
 -                   <Button
 -                     tabIndex={0}
 -                     type='primary'
 -                     onClick={handleEmailPasswordLogin}
 -                     disabled={isLoading}
 -                     className="w-full !fone-medium !text-sm"
 -                   >{t('login.signBtn')}</Button>
 -                 </div>
 -               </form>
 -             </>
 -           }
 -           {/*  agree to our Terms and Privacy Policy. */}
 -           <div className="w-hull text-center block mt-2 text-xs text-gray-600">
 -             {t('login.tosDesc')}
 -              
 -             <Link
 -               className='text-primary-600'
 -               target={'_blank'}
 -               href={locale === 'en' ? 'https://docs.dify.ai/user-agreement/terms-of-service' : 'https://docs.dify.ai/v/zh-hans/yong-hu-xie-yi/fu-wu-xie-yi'}
 -             >{t('login.tos')}</Link>
 -              & 
 -             <Link
 -               className='text-primary-600'
 -               target={'_blank'}
 -               href={locale === 'en' ? 'https://docs.dify.ai/user-agreement/privacy-policy' : 'https://docs.dify.ai/v/zh-hans/yong-hu-xie-yi/yin-si-xie-yi'}
 -             >{t('login.pp')}</Link>
 -           </div>
 - 
 -         </div>
 -       </div>
 -     </>
 -   )
 - }
 - 
 - export default NormalForm
 
 
  |