Fix focus input bug
This commit is contained in:
parent
376feca7dc
commit
7270c66a91
|
@ -1,11 +1,12 @@
|
||||||
import { useRef } from 'react'
|
import { useRef } from 'react'
|
||||||
|
import { useEvent } from './use-event'
|
||||||
|
|
||||||
// Focus helper from https://stackoverflow.com/a/54159564/1222351
|
// Focus helper from https://stackoverflow.com/a/54159564/1222351
|
||||||
export function useFocus(): [React.RefObject<HTMLElement>, () => void] {
|
export function useFocus(): [React.RefObject<HTMLElement>, () => void] {
|
||||||
const htmlElRef = useRef<HTMLElement>(null)
|
const htmlElRef = useRef<HTMLElement>(null)
|
||||||
const setFocus = () => {
|
const setFocus = useEvent(() => {
|
||||||
htmlElRef.current && htmlElRef.current.focus()
|
htmlElRef.current && htmlElRef.current.focus()
|
||||||
}
|
})
|
||||||
|
|
||||||
return [htmlElRef, setFocus]
|
return [htmlElRef, setFocus]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user