Add logging to troubleshoot #2351

This commit is contained in:
Gabe Kangas 2022-12-24 21:21:39 -08:00
parent 8890b564e8
commit 353e9c5896
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -16,14 +16,20 @@ export const TitleNotifier: FC = () => {
let backgrounded = false;
let defaultTitle = '';
const setTitle = (title: string) => {
console.trace('Debug: Setting title to', title);
window.document.title = title;
};
const onBlur = () => {
console.log('onBlur: Saving defaultTitle as', window.document.title);
backgrounded = true;
defaultTitle = window.document.title;
};
const onFocus = () => {
backgrounded = false;
window.document.title = defaultTitle;
setTitle(defaultTitle);
};
const listenForEvents = () => {
@ -33,6 +39,8 @@ export const TitleNotifier: FC = () => {
};
useEffect(() => {
console.log('useEffect: Saving defaultTitle as', window.document.title);
defaultTitle = window.document.title;
listenForEvents();
@ -48,8 +56,7 @@ export const TitleNotifier: FC = () => {
if (!backgrounded || !online) {
return;
}
window.document.title = `💬 :: ${defaultTitle}`;
setTitle(`💬 :: ${defaultTitle}`);
}, [chatMessages]);
useEffect(() => {
@ -60,9 +67,9 @@ export const TitleNotifier: FC = () => {
const { online } = serverStatus;
if (online) {
window.document.title = ` 🟢 :: ${defaultTitle}`;
setTitle(` 🟢 :: ${defaultTitle}`);
} else if (!online) {
window.document.title = ` 🔴 :: ${defaultTitle}`;
setTitle(` 🔴 :: ${defaultTitle}`);
}
}, [serverStatusState]);