2021-02-09 10:37:48 -05:00
|
|
|
import { useEffect, useState } from 'react'
|
|
|
|
|
|
|
|
let titleIsFlashing = false
|
|
|
|
let originalTitle
|
|
|
|
let flashIntervalHandle
|
|
|
|
|
2021-03-10 07:19:54 -05:00
|
|
|
function flashTitle(message) {
|
2021-02-09 10:37:48 -05:00
|
|
|
if (document.hasFocus() || titleIsFlashing) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
function swapTitle() {
|
|
|
|
if (window.document.title === originalTitle) {
|
|
|
|
window.document.title = message
|
|
|
|
} else {
|
|
|
|
window.document.title = originalTitle
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
originalTitle = window.document.title
|
|
|
|
window.document.title = message
|
|
|
|
titleIsFlashing = true
|
|
|
|
flashIntervalHandle = setInterval(swapTitle, 800)
|
|
|
|
}
|
|
|
|
|
2021-03-10 07:19:54 -05:00
|
|
|
function stopFlashingTitle() {
|
2021-02-09 10:37:48 -05:00
|
|
|
if (!titleIsFlashing) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
clearInterval(flashIntervalHandle)
|
|
|
|
window.document.title = originalTitle
|
|
|
|
originalTitle = undefined
|
|
|
|
titleIsFlashing = false
|
|
|
|
}
|
|
|
|
|
2021-03-10 07:19:54 -05:00
|
|
|
function setTitle(title) {
|
|
|
|
if (titleIsFlashing) {
|
|
|
|
originalTitle = title
|
|
|
|
} else {
|
|
|
|
window.document.title = title
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-09 10:37:48 -05:00
|
|
|
function useBrowserWindow() {
|
|
|
|
const [hasFocus, setHasFocus] = useState(document.hasFocus())
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
function handleFocusEvent() {
|
|
|
|
setHasFocus(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleBlurEvent() {
|
|
|
|
setHasFocus(false)
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener('focus', handleFocusEvent)
|
|
|
|
window.addEventListener('blur', handleBlurEvent)
|
|
|
|
return () => {
|
|
|
|
window.removeEventListener('focus', handleFocusEvent)
|
|
|
|
window.removeEventListener('blur', handleBlurEvent)
|
|
|
|
}
|
|
|
|
}, [])
|
|
|
|
|
2021-03-10 07:19:54 -05:00
|
|
|
return { hasFocus, flashTitle, stopFlashingTitle, setTitle }
|
2021-02-09 10:37:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default useBrowserWindow
|