2022-09-01 08:47:29 +00:00
|
|
|
import { appLevelWebsocketWriteEvent } from "./websocketActions";
|
|
|
|
|
import { APP_LEVEL_SOCKET_EVENTS } from "sagas/WebsocketSagas/socketEvents";
|
|
|
|
|
|
2023-05-11 05:26:03 +00:00
|
|
|
export const pageVisibilityAppEvent = (visibility: DocumentVisibilityState) =>
|
2022-09-01 08:47:29 +00:00
|
|
|
appLevelWebsocketWriteEvent({
|
|
|
|
|
type: APP_LEVEL_SOCKET_EVENTS.PAGE_VISIBILITY,
|
|
|
|
|
payload: visibility,
|
|
|
|
|
});
|