| | import { useGlobal } from '@/lib/global' |
| | import { useEffect, useRef } from 'react' |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | export default function ArticleLock (props) { |
| | const { validPassword } = props |
| | const { locale } = useGlobal() |
| |
|
| | const submitPassword = () => { |
| | const p = document.getElementById('password') |
| | if (!validPassword(p?.value)) { |
| | const tips = document.getElementById('tips') |
| | if (tips) { |
| | tips.innerHTML = '' |
| | tips.innerHTML = `<div class='text-red-500 animate__shakeX animate__animated'>${locale.COMMON.PASSWORD_ERROR}</div>` |
| | } |
| | } |
| | } |
| | const passwordInputRef = useRef(null) |
| | useEffect(() => { |
| | |
| | passwordInputRef.current.focus() |
| | }, []) |
| |
|
| | return <div id='container' className='w-full flex justify-center items-center h-96 font-sans'> |
| | <div className='text-center space-y-3'> |
| | <div className='font-bold'>{locale.COMMON.ARTICLE_LOCK_TIPS}</div> |
| | <div className='flex mx-4'> |
| | <input id="password" type='password' |
| | onKeyDown={(e) => { |
| | if (e.key === 'Enter') { |
| | submitPassword() |
| | } |
| | }} |
| | ref={passwordInputRef} // 绑定ref到passwordInputRef变量 |
| | className='outline-none w-full text-sm pl-5 rounded-l transition focus:shadow-lg font-light leading-10 text-black dark:bg-gray-500 bg-gray-50' |
| | ></input> |
| | <div onClick={submitPassword} className="px-3 whitespace-nowrap cursor-pointer items-center justify-center py-2 rounded-r duration-300 bg-gray-300" > |
| | <i className={'duration-200 cursor-pointer fas fa-key dark:text-black'} > {locale.COMMON.SUBMIT}</i> |
| | </div> |
| | </div> |
| | <div id='tips'> |
| | </div> |
| | </div> |
| | </div> |
| | } |
| |
|