Place calls on top of story viewer, pause stories while in call
This commit is contained in:
parent
190db3580d
commit
726e67ce95
5 changed files with 18 additions and 4 deletions
|
@ -59,6 +59,12 @@ export const isInCall = createSelector(
|
|||
(call: CallStateType | undefined): boolean => Boolean(call)
|
||||
);
|
||||
|
||||
export const isInFullScreenCall = createSelector(
|
||||
getCalling,
|
||||
(state: CallingStateType): boolean =>
|
||||
Boolean(state.activeCallState && !state.activeCallState.pip)
|
||||
);
|
||||
|
||||
export const getIncomingCall = createSelector(
|
||||
getCallsByConversation,
|
||||
getUserACI,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue