Last active
August 18, 2023 12:59
-
-
Save patrickcze/2814e93a7988654be4268232f80ff6a9 to your computer and use it in GitHub Desktop.
A basic hook to indicate if the user is online or offline
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect, useContext } from "react"; | |
const OnlineStatusContext = React.createContext(true); | |
export const OnlineStatusProvider: React.FC = ({ children }) => { | |
const [onlineStatus, setOnlineStatus] = useState<boolean>(true); | |
useEffect(() => { | |
window.addEventListener("offline", () => { | |
setOnlineStatus(false); | |
}); | |
window.addEventListener("online", () => { | |
setOnlineStatus(true); | |
}); | |
return () => { | |
window.removeEventListener("offline", () => { | |
setOnlineStatus(false); | |
}); | |
window.removeEventListener("online", () => { | |
setOnlineStatus(true); | |
}); | |
}; | |
}, []); | |
return ( | |
<OnlineStatusContext.Provider value={onlineStatus}> | |
{children} | |
</OnlineStatusContext.Provider> | |
); | |
}; | |
export const useOnlineStatus = () => { | |
const store = useContext(OnlineStatusContext); | |
return store; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this hook! I made a couple of changes https://gist.github.com/jeffrafter/8bab08f3efaac5e8a9350cd9dc05b3cc
const
(easier to read and more clear when removing the event listener)true
)These changes helped when using this in combination with next-pwa