67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
// Copyright 2020-2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
import { StateType } from '../reducer';
|
|
import {
|
|
CallingStateType,
|
|
CallsByConversationType,
|
|
DirectCallStateType,
|
|
GroupCallStateType,
|
|
getIncomingCall as getIncomingCallHelper,
|
|
} from '../ducks/calling';
|
|
import { getUserUuid } from './user';
|
|
import { getOwn } from '../../util/getOwn';
|
|
|
|
export type CallStateType = DirectCallStateType | GroupCallStateType;
|
|
|
|
const getCalling = (state: StateType): CallingStateType => state.calling;
|
|
|
|
export const getActiveCallState = createSelector(
|
|
getCalling,
|
|
(state: CallingStateType) => state.activeCallState
|
|
);
|
|
|
|
export const getCallsByConversation = createSelector(
|
|
getCalling,
|
|
(state: CallingStateType): CallsByConversationType =>
|
|
state.callsByConversation
|
|
);
|
|
|
|
export type CallSelectorType = (
|
|
conversationId: string
|
|
) => CallStateType | undefined;
|
|
export const getCallSelector = createSelector(
|
|
getCallsByConversation,
|
|
(callsByConversation: CallsByConversationType): CallSelectorType => (
|
|
conversationId: string
|
|
) => getOwn(callsByConversation, conversationId)
|
|
);
|
|
|
|
export const getActiveCall = createSelector(
|
|
getActiveCallState,
|
|
getCallSelector,
|
|
(activeCallState, callSelector): undefined | CallStateType => {
|
|
if (activeCallState && activeCallState.conversationId) {
|
|
return callSelector(activeCallState.conversationId);
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
);
|
|
|
|
export const isInCall = createSelector(
|
|
getActiveCall,
|
|
(call: CallStateType | undefined): boolean => Boolean(call)
|
|
);
|
|
|
|
export const getIncomingCall = createSelector(
|
|
getCallsByConversation,
|
|
getUserUuid,
|
|
(
|
|
callsByConversation: CallsByConversationType,
|
|
ourUuid: string
|
|
): undefined | DirectCallStateType | GroupCallStateType =>
|
|
getIncomingCallHelper(callsByConversation, ourUuid)
|
|
);
|