Files
supabase/apps/studio/hooks/ui/useClickedOutside.ts
Ivan Vasilov 436bdb10ae chore: Move the studio app to apps/studio (#18915)
* Move all studio files from /studio to /apps/studio.

* Move studio specific prettier ignores.

* Fix the ui references from studio.

* Fix the css imports.

* Fix all package.json issues.

* Fix the prettier setup for the studio app.

* Add .turbo folder to prettierignore.

* Fix the github workflows.
2023-11-15 12:38:55 +01:00

26 lines
610 B
TypeScript

import { useEffect, useState } from 'react'
/**
* Hook that alerts clicks outside of the passed ref
*/
export const useClickedOutside = (ref: any) => {
const [active, setActive] = useState<boolean>(false)
useEffect(() => {
const handleClickOutside = (event: any) => {
if (ref.current && !ref.current.contains(event.target)) {
setActive(true)
} else {
setActive(false)
}
}
document.addEventListener('mousedown', handleClickOutside)
return () => {
document.removeEventListener('mousedown', handleClickOutside)
}
}, [ref])
return active
}