UNPKG

pubnub

Version:

Publish & Subscribe Real-time Messaging with PubNub

69 lines (60 loc) 2.19 kB
/** * Failed to heartbeat state module. * * @internal */ import { State } from '../../core/state'; import { Events, disconnect, heartbeatFailure, heartbeatSuccess, joined, left, leftAll, reconnect } from '../events'; import { Effects, heartbeat, leave } from '../effects'; import { HeartbeatingState } from './heartbeating'; import { HeartbeatStoppedState } from './heartbeat_stopped'; import { HeartbeatInactiveState } from './heartbeat_inactive'; /** * Context which represent current Presence Event Engine data state. * * @internal */ export type HeartbeatFailedStateContext = { channels: string[]; groups: string[]; }; /** * Failed to heartbeat state. * * State in which Subscription Event Engine waits for user to try to reconnect after all retry attempts has been * exhausted. * * @internal */ export const HeartbeatFailedState = new State<HeartbeatFailedStateContext, Events, Effects>('HEARTBEAT_FAILED'); HeartbeatFailedState.on(joined.type, (context, event) => HeartbeatingState.with({ channels: [...context.channels, ...event.payload.channels.filter((channel) => !context.channels.includes(channel))], groups: [...context.groups, ...event.payload.groups.filter((group) => !context.groups.includes(group))], }), ); HeartbeatFailedState.on(left.type, (context, event) => HeartbeatingState.with( { channels: context.channels.filter((channel) => !event.payload.channels.includes(channel)), groups: context.groups.filter((group) => !event.payload.groups.includes(group)), }, [leave(event.payload.channels, event.payload.groups)], ), ); HeartbeatFailedState.on(reconnect.type, (context, _) => HeartbeatingState.with({ channels: context.channels, groups: context.groups, }), ); HeartbeatFailedState.on(disconnect.type, (context, event) => HeartbeatStoppedState.with({ channels: context.channels, groups: context.groups }, [ ...(!event.payload.isOffline ? [leave(context.channels, context.groups)] : []), ]), ); HeartbeatFailedState.on(leftAll.type, (context, event) => HeartbeatInactiveState.with(undefined, [ ...(!event.payload.isOffline ? [leave(context.channels, context.groups)] : []), ]), );