mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
https://github.com/user-attachments/assets/52ecf3f8-0329-4268-906e-d6102338f4af --------- Co-authored-by: Pranav <pranav@chatwoot.com> Co-authored-by: Pranav <pranavrajs@gmail.com>
22 lines
435 B
JavaScript
22 lines
435 B
JavaScript
export class WindowVisibilityHelper {
|
|
constructor() {
|
|
this.isVisible = true;
|
|
this.initializeEvent();
|
|
}
|
|
|
|
initializeEvent = () => {
|
|
window.addEventListener('blur', () => {
|
|
this.isVisible = false;
|
|
});
|
|
window.addEventListener('focus', () => {
|
|
this.isVisible = true;
|
|
});
|
|
};
|
|
|
|
isWindowVisible() {
|
|
return !document.hidden && this.isVisible;
|
|
}
|
|
}
|
|
|
|
export default new WindowVisibilityHelper();
|