@stream-io/video-react-native-sdk 1.2.14 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/commonjs/hooks/push/useIosCallKeepEventsSetupEffect.js +43 -6
- package/dist/commonjs/hooks/push/useIosCallKeepEventsSetupEffect.js.map +1 -1
- package/dist/commonjs/hooks/push/useIosCallkeepWithCallingStateEffect.js +1 -1
- package/dist/commonjs/hooks/push/useIosVoipPushEventsSetupEffect.js +2 -2
- package/dist/commonjs/hooks/push/useProcessPushCallEffect.js +2 -7
- package/dist/commonjs/hooks/push/useProcessPushCallEffect.js.map +1 -1
- package/dist/commonjs/hooks/push/useProcessPushNonRingingCallEffect.js +3 -3
- package/dist/commonjs/hooks/useAndroidKeepCallAliveEffect.js +1 -0
- package/dist/commonjs/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
- package/dist/commonjs/providers/StreamCall.js +1 -1
- package/dist/commonjs/utils/StreamVideoRN/index.js +5 -6
- package/dist/commonjs/utils/StreamVideoRN/index.js.map +1 -1
- package/dist/commonjs/utils/index.js +12 -0
- package/dist/commonjs/utils/index.js.map +1 -1
- package/dist/commonjs/utils/push/android.js +23 -79
- package/dist/commonjs/utils/push/android.js.map +1 -1
- package/dist/commonjs/utils/push/index.js +39 -0
- package/dist/commonjs/utils/push/index.js.map +1 -0
- package/dist/commonjs/utils/push/internal/rxSubjects.js.map +1 -0
- package/dist/commonjs/utils/push/internal/utils.js +157 -0
- package/dist/commonjs/utils/push/internal/utils.js.map +1 -0
- package/dist/commonjs/utils/push/ios.js +43 -84
- package/dist/commonjs/utils/push/ios.js.map +1 -1
- package/dist/commonjs/utils/push/libs/expoNotifications.js.map +1 -1
- package/dist/commonjs/utils/push/libs/index.js +0 -11
- package/dist/commonjs/utils/push/libs/index.js.map +1 -1
- package/dist/commonjs/utils/push/libs/iosPushNotification.js.map +1 -1
- package/dist/commonjs/utils/push/utils.js +29 -150
- package/dist/commonjs/utils/push/utils.js.map +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/commonjs/version.js.map +1 -1
- package/dist/module/hooks/push/useIosCallKeepEventsSetupEffect.js +41 -4
- package/dist/module/hooks/push/useIosCallKeepEventsSetupEffect.js.map +1 -1
- package/dist/module/hooks/push/useIosCallkeepWithCallingStateEffect.js +1 -1
- package/dist/module/hooks/push/useIosCallkeepWithCallingStateEffect.js.map +1 -1
- package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js +2 -2
- package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js.map +1 -1
- package/dist/module/hooks/push/useProcessPushCallEffect.js +2 -7
- package/dist/module/hooks/push/useProcessPushCallEffect.js.map +1 -1
- package/dist/module/hooks/push/useProcessPushNonRingingCallEffect.js +3 -3
- package/dist/module/hooks/push/useProcessPushNonRingingCallEffect.js.map +1 -1
- package/dist/module/hooks/useAndroidKeepCallAliveEffect.js +1 -0
- package/dist/module/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
- package/dist/module/providers/StreamCall.js +1 -1
- package/dist/module/providers/StreamCall.js.map +1 -1
- package/dist/module/utils/StreamVideoRN/index.js +5 -6
- package/dist/module/utils/StreamVideoRN/index.js.map +1 -1
- package/dist/module/utils/index.js +1 -0
- package/dist/module/utils/index.js.map +1 -1
- package/dist/module/utils/push/android.js +20 -79
- package/dist/module/utils/push/android.js.map +1 -1
- package/dist/module/utils/push/index.js +4 -0
- package/dist/module/utils/push/index.js.map +1 -0
- package/dist/module/utils/push/internal/rxSubjects.js.map +1 -0
- package/dist/module/utils/push/internal/utils.js +146 -0
- package/dist/module/utils/push/internal/utils.js.map +1 -0
- package/dist/module/utils/push/ios.js +40 -81
- package/dist/module/utils/push/ios.js.map +1 -1
- package/dist/module/utils/push/libs/expoNotifications.js.map +1 -1
- package/dist/module/utils/push/libs/index.js +0 -1
- package/dist/module/utils/push/libs/index.js.map +1 -1
- package/dist/module/utils/push/libs/iosPushNotification.js.map +1 -1
- package/dist/module/utils/push/utils.js +25 -144
- package/dist/module/utils/push/utils.js.map +1 -1
- package/dist/module/version.js +1 -1
- package/dist/module/version.js.map +1 -1
- package/dist/typescript/hooks/push/useIosCallKeepEventsSetupEffect.d.ts.map +1 -1
- package/dist/typescript/hooks/useAndroidKeepCallAliveEffect.d.ts.map +1 -1
- package/dist/typescript/utils/StreamVideoRN/index.d.ts.map +1 -1
- package/dist/typescript/utils/StreamVideoRN/types.d.ts +6 -4
- package/dist/typescript/utils/StreamVideoRN/types.d.ts.map +1 -1
- package/dist/typescript/utils/index.d.ts +1 -0
- package/dist/typescript/utils/index.d.ts.map +1 -1
- package/dist/typescript/utils/push/android.d.ts +12 -2
- package/dist/typescript/utils/push/android.d.ts.map +1 -1
- package/dist/typescript/utils/push/index.d.ts +4 -0
- package/dist/typescript/utils/push/index.d.ts.map +1 -0
- package/dist/typescript/utils/push/{rxSubjects.d.ts → internal/rxSubjects.d.ts} +1 -1
- package/dist/typescript/utils/push/internal/rxSubjects.d.ts.map +1 -0
- package/dist/typescript/utils/push/internal/utils.d.ts +43 -0
- package/dist/typescript/utils/push/internal/utils.d.ts.map +1 -0
- package/dist/typescript/utils/push/ios.d.ts +8 -3
- package/dist/typescript/utils/push/ios.d.ts.map +1 -1
- package/dist/typescript/utils/push/libs/expoNotifications.d.ts +2 -0
- package/dist/typescript/utils/push/libs/expoNotifications.d.ts.map +1 -1
- package/dist/typescript/utils/push/libs/index.d.ts +0 -1
- package/dist/typescript/utils/push/libs/index.d.ts.map +1 -1
- package/dist/typescript/utils/push/libs/iosPushNotification.d.ts +2 -0
- package/dist/typescript/utils/push/libs/iosPushNotification.d.ts.map +1 -1
- package/dist/typescript/utils/push/utils.d.ts +14 -42
- package/dist/typescript/utils/push/utils.d.ts.map +1 -1
- package/dist/typescript/version.d.ts +1 -1
- package/dist/typescript/version.d.ts.map +1 -1
- package/package.json +6 -11
- package/src/hooks/push/useIosCallKeepEventsSetupEffect.ts +62 -6
- package/src/hooks/push/useIosCallkeepWithCallingStateEffect.ts +1 -1
- package/src/hooks/push/useIosVoipPushEventsSetupEffect.ts +2 -2
- package/src/hooks/push/useProcessPushCallEffect.ts +2 -7
- package/src/hooks/push/useProcessPushNonRingingCallEffect.ts +3 -3
- package/src/hooks/useAndroidKeepCallAliveEffect.ts +1 -0
- package/src/providers/StreamCall.tsx +1 -1
- package/src/utils/StreamVideoRN/index.ts +11 -6
- package/src/utils/StreamVideoRN/types.ts +6 -4
- package/src/utils/index.ts +1 -0
- package/src/utils/push/android.ts +28 -99
- package/src/utils/push/index.ts +3 -0
- package/src/utils/push/{rxSubjects.ts → internal/rxSubjects.ts} +1 -1
- package/src/utils/push/internal/utils.ts +178 -0
- package/src/utils/push/ios.ts +49 -115
- package/src/utils/push/libs/expoNotifications.ts +4 -0
- package/src/utils/push/libs/index.ts +0 -1
- package/src/utils/push/libs/iosPushNotification.ts +4 -0
- package/src/utils/push/utils.ts +44 -175
- package/src/version.ts +1 -1
- package/dist/commonjs/utils/push/libs/expoTaskManager.js +0 -17
- package/dist/commonjs/utils/push/libs/expoTaskManager.js.map +0 -1
- package/dist/commonjs/utils/push/rxSubjects.js.map +0 -1
- package/dist/module/utils/push/libs/expoTaskManager.js +0 -11
- package/dist/module/utils/push/libs/expoTaskManager.js.map +0 -1
- package/dist/module/utils/push/rxSubjects.js.map +0 -1
- package/dist/typescript/utils/push/libs/expoTaskManager.d.ts +0 -3
- package/dist/typescript/utils/push/libs/expoTaskManager.d.ts.map +0 -1
- package/dist/typescript/utils/push/rxSubjects.d.ts.map +0 -1
- package/src/utils/push/libs/expoTaskManager.ts +0 -16
- /package/dist/commonjs/utils/push/{rxSubjects.js → internal/rxSubjects.js} +0 -0
- /package/dist/module/utils/push/{rxSubjects.js → internal/rxSubjects.js} +0 -0
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { RxUtils, getLogger } from '@stream-io/video-client';
|
|
2
|
+
import { onNewCallNotification } from '../../internal/newNotificationCallbacks';
|
|
3
|
+
import { pushUnsubscriptionCallbacks$ } from './rxSubjects';
|
|
4
|
+
/**
|
|
5
|
+
* This function is used to check if the call should be ended based on the push notification
|
|
6
|
+
* Useful for callkeep management to end the call if necessary (with reportEndCallWithUUID)
|
|
7
|
+
*/
|
|
8
|
+
export const shouldCallBeEnded = (callFromPush, created_by_id, receiver_id) => {
|
|
9
|
+
/* callkeep reasons for ending a call
|
|
10
|
+
FAILED: 1,
|
|
11
|
+
REMOTE_ENDED: 2,
|
|
12
|
+
UNANSWERED: 3,
|
|
13
|
+
ANSWERED_ELSEWHERE: 4,
|
|
14
|
+
DECLINED_ELSEWHERE: 5,
|
|
15
|
+
MISSED: 6
|
|
16
|
+
*/
|
|
17
|
+
const callSession = callFromPush.state.session;
|
|
18
|
+
const rejected_by = callSession?.rejected_by;
|
|
19
|
+
const accepted_by = callSession?.accepted_by;
|
|
20
|
+
let mustEndCall = false;
|
|
21
|
+
let callkeepReason = 0;
|
|
22
|
+
if (created_by_id && rejected_by) {
|
|
23
|
+
if (rejected_by[created_by_id]) {
|
|
24
|
+
// call was cancelled by the caller
|
|
25
|
+
mustEndCall = true;
|
|
26
|
+
callkeepReason = 2;
|
|
27
|
+
}
|
|
28
|
+
} else if (receiver_id && rejected_by) {
|
|
29
|
+
if (rejected_by[receiver_id]) {
|
|
30
|
+
// call was rejected by the receiver in some other device
|
|
31
|
+
mustEndCall = true;
|
|
32
|
+
callkeepReason = 5;
|
|
33
|
+
}
|
|
34
|
+
} else if (receiver_id && accepted_by) {
|
|
35
|
+
if (accepted_by[receiver_id]) {
|
|
36
|
+
// call was accepted by the receiver in some other device
|
|
37
|
+
mustEndCall = true;
|
|
38
|
+
callkeepReason = 4;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
return {
|
|
42
|
+
mustEndCall,
|
|
43
|
+
callkeepReason
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
/* An action for the notification or callkeep and app does not have JS context setup yet, so we need to do two steps:
|
|
48
|
+
1. we need to create a new client and connect the user to decline the call
|
|
49
|
+
2. this is because the app is in background state and we don't have a client to get the call and do an action
|
|
50
|
+
*/
|
|
51
|
+
export const processCallFromPushInBackground = async (pushConfig, call_cid, action) => {
|
|
52
|
+
let videoClient;
|
|
53
|
+
try {
|
|
54
|
+
videoClient = await pushConfig.createStreamVideoClient();
|
|
55
|
+
if (!videoClient) {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
} catch (e) {
|
|
59
|
+
const logger = getLogger(['processCallFromPushInBackground']);
|
|
60
|
+
logger('error', 'failed to create video client', e);
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
await processCallFromPush(videoClient, call_cid, action, pushConfig);
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* This function is used process the call from push notifications due to incoming call
|
|
68
|
+
* It does the following steps:
|
|
69
|
+
* 1. Get the call from the client if present or create a new call
|
|
70
|
+
* 2. Fetch the latest state of the call from the server if its not already in ringing state
|
|
71
|
+
* 3. Join or leave the call based on the user's action.
|
|
72
|
+
*/
|
|
73
|
+
export const processCallFromPush = async (client, call_cid, action, pushConfig) => {
|
|
74
|
+
let callFromPush;
|
|
75
|
+
try {
|
|
76
|
+
callFromPush = await client.onRingingCall(call_cid);
|
|
77
|
+
} catch (e) {
|
|
78
|
+
const logger = getLogger(['processCallFromPush']);
|
|
79
|
+
logger('error', 'failed to fetch call from push notification', e);
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
// note: when action was pressed or delivered, we dont need to do anything as the only thing is to do is to get the call which adds it to the client
|
|
83
|
+
try {
|
|
84
|
+
if (action === 'accept') {
|
|
85
|
+
if (pushConfig.publishOptions) {
|
|
86
|
+
callFromPush.updatePublishOptions(pushConfig.publishOptions);
|
|
87
|
+
}
|
|
88
|
+
await callFromPush.join();
|
|
89
|
+
} else if (action === 'decline') {
|
|
90
|
+
await callFromPush.leave({
|
|
91
|
+
reject: true
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
} catch (e) {
|
|
95
|
+
const logger = getLogger(['processCallFromPush']);
|
|
96
|
+
logger('error', `failed to process ${action} call from push notification`, e);
|
|
97
|
+
}
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* This function is used process the call from push notifications due to non ringing calls
|
|
102
|
+
* It does the following steps:
|
|
103
|
+
* 1. Get the call from the client if present or create a new call
|
|
104
|
+
* 2. Fetch the latest state of the call from the server
|
|
105
|
+
* 3. Call all the callbacks to inform the app about the call
|
|
106
|
+
*/
|
|
107
|
+
export const processNonIncomingCallFromPush = async (client, call_cid, nonRingingNotificationType) => {
|
|
108
|
+
let callFromPush;
|
|
109
|
+
try {
|
|
110
|
+
const _callFromPush = client.state.calls.find(c => c.cid === call_cid);
|
|
111
|
+
if (_callFromPush) {
|
|
112
|
+
callFromPush = _callFromPush;
|
|
113
|
+
} else {
|
|
114
|
+
// if not it means that WS is not alive when receiving the push notifications and we need to fetch the call
|
|
115
|
+
const [callType, callId] = call_cid.split(':');
|
|
116
|
+
callFromPush = client.call(callType, callId);
|
|
117
|
+
await callFromPush.get();
|
|
118
|
+
}
|
|
119
|
+
} catch (e) {
|
|
120
|
+
const logger = getLogger(['processNonIncomingCallFromPush']);
|
|
121
|
+
logger('error', 'failed to fetch call from push notification', e);
|
|
122
|
+
return;
|
|
123
|
+
}
|
|
124
|
+
onNewCallNotification(callFromPush, nonRingingNotificationType);
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* This function is used to clear all the push related WS subscriptions
|
|
129
|
+
* note: events are subscribed in push for accept/decline through WS
|
|
130
|
+
*/
|
|
131
|
+
export const clearPushWSEventSubscriptions = () => {
|
|
132
|
+
const unsubscriptionCallbacks = RxUtils.getCurrentValue(pushUnsubscriptionCallbacks$);
|
|
133
|
+
if (unsubscriptionCallbacks) {
|
|
134
|
+
unsubscriptionCallbacks.forEach(cb => cb());
|
|
135
|
+
}
|
|
136
|
+
pushUnsubscriptionCallbacks$.next(undefined);
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* This ref is used to check if the push WS subscriptions can be added
|
|
141
|
+
* It is used to avoid adding the push WS subscriptions when the client is connected to WS in the foreground
|
|
142
|
+
*/
|
|
143
|
+
export const canAddPushWSSubscriptionsRef = {
|
|
144
|
+
current: true
|
|
145
|
+
};
|
|
146
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["RxUtils","getLogger","onNewCallNotification","pushUnsubscriptionCallbacks$","shouldCallBeEnded","callFromPush","created_by_id","receiver_id","callSession","state","session","rejected_by","accepted_by","mustEndCall","callkeepReason","processCallFromPushInBackground","pushConfig","call_cid","action","videoClient","createStreamVideoClient","e","logger","processCallFromPush","client","onRingingCall","publishOptions","updatePublishOptions","join","leave","reject","processNonIncomingCallFromPush","nonRingingNotificationType","_callFromPush","calls","find","c","cid","callType","callId","split","call","get","clearPushWSEventSubscriptions","unsubscriptionCallbacks","getCurrentValue","forEach","cb","next","undefined","canAddPushWSSubscriptionsRef","current"],"sourceRoot":"../../../../../src","sources":["utils/push/internal/utils.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { Platform } from 'react-native';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { getExpoNotificationsLib, getNotifeeLibThrowIfNotInstalledForPush, getPushNotificationIosLib } from './libs';
|
|
2
|
+
import { pushNonRingingCallData$ } from './internal/rxSubjects';
|
|
3
|
+
import { getExpoNotificationsLib, getPushNotificationIosLib } from './libs';
|
|
5
4
|
import { getLogger } from '@stream-io/video-client';
|
|
6
5
|
import { setPushLogoutCallback } from '../internal/pushLogoutCallback';
|
|
6
|
+
import { EventType } from '@notifee/react-native';
|
|
7
|
+
import { StreamVideoRN } from '../StreamVideoRN';
|
|
7
8
|
let lastApnToken = {
|
|
8
9
|
token: '',
|
|
9
10
|
userId: ''
|
|
@@ -22,75 +23,49 @@ function processNonRingingNotificationStreamPayload(streamPayload) {
|
|
|
22
23
|
};
|
|
23
24
|
}
|
|
24
25
|
}
|
|
25
|
-
export const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
uuid: callUUIDFromCallkeep,
|
|
33
|
-
cid: call_cid
|
|
34
|
-
});
|
|
35
|
-
// to process the call in the app
|
|
36
|
-
pushAcceptedIncomingCallCId$.next(call_cid);
|
|
37
|
-
// no need to keep these references anymore
|
|
38
|
-
voipCallkeepCallOnForegroundMap$.next(undefined);
|
|
39
|
-
};
|
|
40
|
-
export const iosCallkeepRejectCall = async (call_cid, callUUIDFromCallkeep, pushConfig) => {
|
|
41
|
-
if (!shouldProcessCallFromCallkeep(call_cid, callUUIDFromCallkeep)) {
|
|
42
|
-
return;
|
|
43
|
-
}
|
|
44
|
-
clearPushWSEventSubscriptions();
|
|
45
|
-
// no need to keep these references anymore
|
|
46
|
-
voipCallkeepAcceptedCallOnNativeDialerMap$.next(undefined);
|
|
47
|
-
voipCallkeepCallOnForegroundMap$.next(undefined);
|
|
48
|
-
voipPushNotificationCallCId$.next(undefined);
|
|
49
|
-
await processCallFromPushInBackground(pushConfig, call_cid, 'decline');
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* Helper function to determine if the answer/end call event from callkeep must be processed
|
|
54
|
-
* Just checks if we have a valid call_cid and acts as a type guard for call_cid
|
|
55
|
-
*/
|
|
56
|
-
const shouldProcessCallFromCallkeep = (call_cid, callUUIDFromCallkeep) => {
|
|
57
|
-
if (!call_cid || !callUUIDFromCallkeep) {
|
|
58
|
-
return false;
|
|
26
|
+
export const oniOSExpoNotificationEvent = event => {
|
|
27
|
+
const pushConfig = StreamVideoRN.getConfig().push;
|
|
28
|
+
if (pushConfig) {
|
|
29
|
+
if (event.request.trigger.type === 'push') {
|
|
30
|
+
const streamPayload = event.request.trigger.payload?.stream;
|
|
31
|
+
processNonRingingNotificationStreamPayload(streamPayload);
|
|
32
|
+
}
|
|
59
33
|
}
|
|
60
|
-
return true;
|
|
61
34
|
};
|
|
62
|
-
export const
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
const
|
|
67
|
-
|
|
35
|
+
export const oniOSNotifeeEvent = ({
|
|
36
|
+
event
|
|
37
|
+
}) => {
|
|
38
|
+
if (Platform.OS !== 'ios') return;
|
|
39
|
+
const pushConfig = StreamVideoRN.getConfig().push;
|
|
40
|
+
const {
|
|
68
41
|
type,
|
|
69
42
|
detail
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
43
|
+
} = event;
|
|
44
|
+
if (pushConfig && type === EventType.PRESS) {
|
|
45
|
+
const streamPayload = detail.notification?.data?.stream;
|
|
46
|
+
const result = processNonRingingNotificationStreamPayload(streamPayload);
|
|
47
|
+
if (result) {
|
|
48
|
+
pushConfig.onTapNonRingingCallNotification?.(result.cid, result.type);
|
|
77
49
|
}
|
|
78
|
-
});
|
|
79
|
-
if (pushConfig.isExpo) {
|
|
80
|
-
const Notifications = getExpoNotificationsLib();
|
|
81
|
-
|
|
82
|
-
// foreground handler (just to show the notifications on foreground)
|
|
83
|
-
Notifications.setNotificationHandler({
|
|
84
|
-
handleNotification: async () => {
|
|
85
|
-
return {
|
|
86
|
-
shouldShowAlert: true,
|
|
87
|
-
shouldPlaySound: true,
|
|
88
|
-
shouldSetBadge: false
|
|
89
|
-
};
|
|
90
|
-
}
|
|
91
|
-
});
|
|
92
50
|
}
|
|
93
51
|
};
|
|
52
|
+
export function onPushNotificationiOSStreamVideoEvent(notification) {
|
|
53
|
+
const pushNotificationIosLib = getPushNotificationIosLib();
|
|
54
|
+
const data = notification.getData();
|
|
55
|
+
const streamPayload = data?.stream;
|
|
56
|
+
const isClicked = data.userInteraction === 1;
|
|
57
|
+
const pushConfig = StreamVideoRN.getConfig().push;
|
|
58
|
+
if (!streamPayload || !isClicked || !pushConfig) {
|
|
59
|
+
notification.finish(pushNotificationIosLib.FetchResult.NoData);
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
62
|
+
// listen to foreground notifications
|
|
63
|
+
const result = processNonRingingNotificationStreamPayload(streamPayload);
|
|
64
|
+
if (result) {
|
|
65
|
+
pushConfig.onTapNonRingingCallNotification?.(result.cid, result.type);
|
|
66
|
+
}
|
|
67
|
+
notification.finish(pushNotificationIosLib.FetchResult.NoData);
|
|
68
|
+
}
|
|
94
69
|
|
|
95
70
|
/** Send token to stream */
|
|
96
71
|
export async function initIosNonVoipToken(client, pushConfig, setUnsubscribeListener) {
|
|
@@ -129,32 +104,16 @@ export async function initIosNonVoipToken(client, pushConfig, setUnsubscribeList
|
|
|
129
104
|
const subscription = expoNotificationsLib.addPushTokenListener(devicePushToken => {
|
|
130
105
|
setDeviceToken(devicePushToken.data);
|
|
131
106
|
});
|
|
132
|
-
const subscriptionForReceive = expoNotificationsLib.addNotificationReceivedListener(event => {
|
|
133
|
-
// listen to foreground notifications
|
|
134
|
-
if (event.request.trigger.type === 'push') {
|
|
135
|
-
const streamPayload = event.request.trigger.payload?.stream;
|
|
136
|
-
processNonRingingNotificationStreamPayload(streamPayload);
|
|
137
|
-
}
|
|
138
|
-
});
|
|
139
107
|
setUnsubscribeListener(() => {
|
|
140
108
|
subscription.remove();
|
|
141
|
-
subscriptionForReceive.remove();
|
|
142
109
|
});
|
|
143
110
|
} else {
|
|
144
111
|
const pushNotificationIosLib = getPushNotificationIosLib();
|
|
145
112
|
pushNotificationIosLib.addEventListener('register', token => {
|
|
146
113
|
setDeviceToken(token);
|
|
147
114
|
});
|
|
148
|
-
pushNotificationIosLib.addEventListener('notification', notification => {
|
|
149
|
-
const data = notification.getData();
|
|
150
|
-
const streamPayload = data?.stream;
|
|
151
|
-
// listen to foreground notifications
|
|
152
|
-
processNonRingingNotificationStreamPayload(streamPayload);
|
|
153
|
-
notification.finish(pushNotificationIosLib.FetchResult.NoData);
|
|
154
|
-
});
|
|
155
115
|
setUnsubscribeListener(() => {
|
|
156
116
|
pushNotificationIosLib.removeEventListener('register');
|
|
157
|
-
pushNotificationIosLib.removeEventListener('notification');
|
|
158
117
|
});
|
|
159
118
|
}
|
|
160
119
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Platform","
|
|
1
|
+
{"version":3,"names":["Platform","pushNonRingingCallData$","getExpoNotificationsLib","getPushNotificationIosLib","getLogger","setPushLogoutCallback","EventType","StreamVideoRN","lastApnToken","token","userId","processNonRingingNotificationStreamPayload","streamPayload","sender","type","cid","call_cid","next","oniOSExpoNotificationEvent","event","pushConfig","getConfig","push","request","trigger","payload","stream","oniOSNotifeeEvent","OS","detail","PRESS","notification","data","result","onTapNonRingingCallNotification","onPushNotificationiOSStreamVideoEvent","pushNotificationIosLib","getData","isClicked","userInteraction","finish","FetchResult","NoData","initIosNonVoipToken","client","setUnsubscribeListener","ios","pushProviderName","setDeviceToken","streamClient","_user","id","removeDevice","err","logger","push_provider_name","addDevice","isExpo","expoNotificationsLib","getDevicePushTokenAsync","then","devicePushToken","subscription","addPushTokenListener","remove","addEventListener","removeEventListener"],"sourceRoot":"../../../../src","sources":["utils/push/ios.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["expoNotificationsLib","require","_e","getExpoNotificationsLib","Error"],"sourceRoot":"../../../../../src","sources":["utils/push/libs/expoNotifications.ts"],"mappings":"
|
|
1
|
+
{"version":3,"names":["expoNotificationsLib","require","_e","getExpoNotificationsLib","Error"],"sourceRoot":"../../../../../src","sources":["utils/push/libs/expoNotifications.ts"],"mappings":"AAMA,IAAIA,oBAAsD;AAE1D,IAAI;EACFA,oBAAoB,GAAGC,OAAO,CAAC,oBAAoB,CAAC;AACtD,CAAC,CAAC,OAAOC,EAAE,EAAE,CAAC;AAEd,OAAO,SAASC,uBAAuBA,CAAA,EAAG;EACxC,IAAI,CAACH,oBAAoB,EAAE;IACzB,MAAMI,KAAK,CACT,gJACF,CAAC;EACH;EACA,OAAOJ,oBAAoB;AAC7B","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["utils/push/libs/index.ts"],"mappings":"AAAA,cAAc,qBAAqB;AACnC,cAAc,
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["utils/push/libs/index.ts"],"mappings":"AAAA,cAAc,qBAAqB;AACnC,cAAc,qBAAqB;AACnC,cAAc,uBAAuB;AACrC,cAAc,wBAAwB;AACtC,cAAc,YAAY;AAC1B,cAAc,WAAW;;AAEzB;AACA;AACA;AACA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["pushNotificationIosLib","require","default","_e","getPushNotificationIosLib","Error"],"sourceRoot":"../../../../../src","sources":["utils/push/libs/iosPushNotification.ts"],"mappings":"AAGA,IAAIA,sBAA0D;
|
|
1
|
+
{"version":3,"names":["pushNotificationIosLib","require","default","_e","getPushNotificationIosLib","Error"],"sourceRoot":"../../../../../src","sources":["utils/push/libs/iosPushNotification.ts"],"mappings":"AAGA,IAAIA,sBAA0D;AAM9D,IAAI;EACFA,sBAAsB,GACpBC,OAAO,CAAC,+CAA+C,CAAC,CAACC,OAAO;AACpE,CAAC,CAAC,OAAOC,EAAE,EAAE,CAAC;AAEd,OAAO,SAASC,yBAAyBA,CAAA,EAAG;EAC1C,IAAI,CAACJ,sBAAsB,EAAE;IAC3B,MAAMK,KAAK,CACT,0NACF,CAAC;EACH;EACA,OAAOL,sBAAsB;AAC/B","ignoreList":[]}
|
|
@@ -1,146 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
let mustEndCall = false;
|
|
21
|
-
let callkeepReason = 0;
|
|
22
|
-
if (created_by_id && rejected_by) {
|
|
23
|
-
if (rejected_by[created_by_id]) {
|
|
24
|
-
// call was cancelled by the caller
|
|
25
|
-
mustEndCall = true;
|
|
26
|
-
callkeepReason = 2;
|
|
27
|
-
}
|
|
28
|
-
} else if (receiver_id && rejected_by) {
|
|
29
|
-
if (rejected_by[receiver_id]) {
|
|
30
|
-
// call was rejected by the receiver in some other device
|
|
31
|
-
mustEndCall = true;
|
|
32
|
-
callkeepReason = 5;
|
|
33
|
-
}
|
|
34
|
-
} else if (receiver_id && accepted_by) {
|
|
35
|
-
if (accepted_by[receiver_id]) {
|
|
36
|
-
// call was accepted by the receiver in some other device
|
|
37
|
-
mustEndCall = true;
|
|
38
|
-
callkeepReason = 4;
|
|
39
|
-
}
|
|
1
|
+
export function isFirebaseStreamVideoMessage(message) {
|
|
2
|
+
return message.data?.sender === 'stream.video';
|
|
3
|
+
}
|
|
4
|
+
export function isNotifeeStreamVideoEvent(event) {
|
|
5
|
+
const {
|
|
6
|
+
detail
|
|
7
|
+
} = event;
|
|
8
|
+
const {
|
|
9
|
+
notification
|
|
10
|
+
} = detail;
|
|
11
|
+
return notification?.data?.sender === 'stream.video';
|
|
12
|
+
}
|
|
13
|
+
export function isExpoNotificationStreamVideoEvent(event) {
|
|
14
|
+
if (event.request.trigger.type === 'push') {
|
|
15
|
+
// iOS
|
|
16
|
+
const streamPayload = event.request.trigger.payload?.stream;
|
|
17
|
+
// Android
|
|
18
|
+
const remoteMessageData = event.request.trigger.remoteMessage?.data;
|
|
19
|
+
return streamPayload?.sender === 'stream.video' || remoteMessageData?.sender === 'stream.video';
|
|
40
20
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
/* An action for the notification or callkeep and app does not have JS context setup yet, so we need to do two steps:
|
|
48
|
-
1. we need to create a new client and connect the user to decline the call
|
|
49
|
-
2. this is because the app is in background state and we don't have a client to get the call and do an action
|
|
50
|
-
*/
|
|
51
|
-
export const processCallFromPushInBackground = async (pushConfig, call_cid, action) => {
|
|
52
|
-
let videoClient;
|
|
53
|
-
try {
|
|
54
|
-
videoClient = await pushConfig.createStreamVideoClient();
|
|
55
|
-
if (!videoClient) {
|
|
56
|
-
return;
|
|
57
|
-
}
|
|
58
|
-
} catch (e) {
|
|
59
|
-
const logger = getLogger(['processCallFromPushInBackground']);
|
|
60
|
-
logger('error', 'failed to create video client', e);
|
|
61
|
-
return;
|
|
62
|
-
}
|
|
63
|
-
await processCallFromPush(videoClient, call_cid, action, pushConfig);
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
/**
|
|
67
|
-
* This function is used process the call from push notifications due to incoming call
|
|
68
|
-
* It does the following steps:
|
|
69
|
-
* 1. Get the call from the client if present or create a new call
|
|
70
|
-
* 2. Fetch the latest state of the call from the server if its not already in ringing state
|
|
71
|
-
* 3. Join or leave the call based on the user's action.
|
|
72
|
-
*/
|
|
73
|
-
export const processCallFromPush = async (client, call_cid, action, pushConfig) => {
|
|
74
|
-
let callFromPush;
|
|
75
|
-
try {
|
|
76
|
-
callFromPush = await client.onRingingCall(call_cid);
|
|
77
|
-
} catch (e) {
|
|
78
|
-
const logger = getLogger(['processCallFromPush']);
|
|
79
|
-
logger('error', 'failed to fetch call from push notification', e);
|
|
80
|
-
return;
|
|
81
|
-
}
|
|
82
|
-
// note: when action was pressed or delivered, we dont need to do anything as the only thing is to do is to get the call which adds it to the client
|
|
83
|
-
try {
|
|
84
|
-
if (action === 'accept') {
|
|
85
|
-
if (pushConfig.publishOptions) {
|
|
86
|
-
callFromPush.updatePublishOptions(pushConfig.publishOptions);
|
|
87
|
-
}
|
|
88
|
-
await callFromPush.join();
|
|
89
|
-
} else if (action === 'decline') {
|
|
90
|
-
await callFromPush.leave({
|
|
91
|
-
reject: true
|
|
92
|
-
});
|
|
93
|
-
}
|
|
94
|
-
} catch (e) {
|
|
95
|
-
const logger = getLogger(['processCallFromPush']);
|
|
96
|
-
logger('error', `failed to process ${action} call from push notification`, e);
|
|
97
|
-
}
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
/**
|
|
101
|
-
* This function is used process the call from push notifications due to non ringing calls
|
|
102
|
-
* It does the following steps:
|
|
103
|
-
* 1. Get the call from the client if present or create a new call
|
|
104
|
-
* 2. Fetch the latest state of the call from the server if its not already in ringing state
|
|
105
|
-
* 3. Call all the callbacks to inform the app about the call
|
|
106
|
-
*/
|
|
107
|
-
export const processNonIncomingCallFromPush = async (client, call_cid, nonRingingNotificationType) => {
|
|
108
|
-
let callFromPush;
|
|
109
|
-
try {
|
|
110
|
-
const _callFromPush = client.state.calls.find(c => c.cid === call_cid);
|
|
111
|
-
if (_callFromPush) {
|
|
112
|
-
callFromPush = _callFromPush;
|
|
113
|
-
} else {
|
|
114
|
-
// if not it means that WS is not alive when receiving the push notifications and we need to fetch the call
|
|
115
|
-
const [callType, callId] = call_cid.split(':');
|
|
116
|
-
callFromPush = client.call(callType, callId);
|
|
117
|
-
await callFromPush.get();
|
|
118
|
-
}
|
|
119
|
-
} catch (e) {
|
|
120
|
-
const logger = getLogger(['processNonIncomingCallFromPush']);
|
|
121
|
-
logger('error', 'failed to fetch call from push notification', e);
|
|
122
|
-
return;
|
|
123
|
-
}
|
|
124
|
-
onNewCallNotification(callFromPush, nonRingingNotificationType);
|
|
125
|
-
};
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* This function is used to clear all the push related WS subscriptions
|
|
129
|
-
* note: events are subscribed in push for accept/decline through WS
|
|
130
|
-
*/
|
|
131
|
-
export const clearPushWSEventSubscriptions = () => {
|
|
132
|
-
const unsubscriptionCallbacks = RxUtils.getCurrentValue(pushUnsubscriptionCallbacks$);
|
|
133
|
-
if (unsubscriptionCallbacks) {
|
|
134
|
-
unsubscriptionCallbacks.forEach(cb => cb());
|
|
135
|
-
}
|
|
136
|
-
pushUnsubscriptionCallbacks$.next(undefined);
|
|
137
|
-
};
|
|
138
|
-
|
|
139
|
-
/**
|
|
140
|
-
* This ref is used to check if the push WS subscriptions can be added
|
|
141
|
-
* It is used to avoid adding the push WS subscriptions when the client is connected to WS in the foreground
|
|
142
|
-
*/
|
|
143
|
-
export const canAddPushWSSubscriptionsRef = {
|
|
144
|
-
current: true
|
|
145
|
-
};
|
|
21
|
+
}
|
|
22
|
+
export function isPushNotificationiOSStreamVideoEvent(notification) {
|
|
23
|
+
const data = notification.getData();
|
|
24
|
+
const streamPayload = data?.stream;
|
|
25
|
+
return streamPayload?.sender === 'stream.video';
|
|
26
|
+
}
|
|
146
27
|
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["isFirebaseStreamVideoMessage","message","data","sender","isNotifeeStreamVideoEvent","event","detail","notification","isExpoNotificationStreamVideoEvent","request","trigger","type","streamPayload","payload","stream","remoteMessageData","remoteMessage","isPushNotificationiOSStreamVideoEvent","getData"],"sourceRoot":"../../../../src","sources":["utils/push/utils.ts"],"mappings":"AAcA,OAAO,SAASA,4BAA4BA,CAC1CC,OAA6C,EAC7C;EACA,OAAOA,OAAO,CAACC,IAAI,EAAEC,MAAM,KAAK,cAAc;AAChD;AAEA,OAAO,SAASC,yBAAyBA,CAACC,KAAY,EAAE;EACtD,MAAM;IAAEC;EAAO,CAAC,GAAGD,KAAK;EACxB,MAAM;IAAEE;EAAa,CAAC,GAAGD,MAAM;EAC/B,OAAOC,YAAY,EAAEL,IAAI,EAAEC,MAAM,KAAK,cAAc;AACtD;AAEA,OAAO,SAASK,kCAAkCA,CAACH,KAAuB,EAAE;EAC1E,IAAIA,KAAK,CAACI,OAAO,CAACC,OAAO,CAACC,IAAI,KAAK,MAAM,EAAE;IACzC;IACA,MAAMC,aAAa,GAAGP,KAAK,CAACI,OAAO,CAACC,OAAO,CAACG,OAAO,EAC/CC,MAA2B;IAC/B;IACA,MAAMC,iBAAiB,GAAGV,KAAK,CAACI,OAAO,CAACC,OAAO,CAACM,aAAa,EAAEd,IAAI;IACnE,OACEU,aAAa,EAAET,MAAM,KAAK,cAAc,IACxCY,iBAAiB,EAAEZ,MAAM,KAAK,cAAc;EAEhD;AACF;AAEA,OAAO,SAASc,qCAAqCA,CACnDV,YAAqC,EACrC;EACA,MAAML,IAAI,GAAGK,YAAY,CAACW,OAAO,CAAC,CAAC;EACnC,MAAMN,aAAa,GAAGV,IAAI,EAAEY,MAA2B;EACvD,OAAOF,aAAa,EAAET,MAAM,KAAK,cAAc;AACjD","ignoreList":[]}
|
package/dist/module/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '1.
|
|
1
|
+
export const version = '1.3.0';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["version"],"sourceRoot":"../../src","sources":["version.ts"],"mappings":"AAAA,OAAO,MAAMA,OAAO,GAAG,
|
|
1
|
+
{"version":3,"names":["version"],"sourceRoot":"../../src","sources":["version.ts"],"mappings":"AAAA,OAAO,MAAMA,OAAO,GAAG,OAAO","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useIosCallKeepEventsSetupEffect.d.ts","sourceRoot":"","sources":["../../../../src/hooks/push/useIosCallKeepEventsSetupEffect.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useIosCallKeepEventsSetupEffect.d.ts","sourceRoot":"","sources":["../../../../src/hooks/push/useIosCallKeepEventsSetupEffect.ts"],"names":[],"mappings":"AAqBA;;GAEG;AACH,eAAO,MAAM,+BAA+B,YA8C3C,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAndroidKeepCallAliveEffect.d.ts","sourceRoot":"","sources":["../../../src/hooks/useAndroidKeepCallAliveEffect.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useAndroidKeepCallAliveEffect.d.ts","sourceRoot":"","sources":["../../../src/hooks/useAndroidKeepCallAliveEffect.ts"],"names":[],"mappings":"AA2DA;;;;;GAKG;AACH,eAAO,MAAM,6BAA6B,YAgFzC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/utils/StreamVideoRN/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/utils/StreamVideoRN/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAE5C,OAAiC,EAC/B,2BAA2B,EAC5B,MAAM,sCAAsC,CAAC;AAa9C,qBAAa,aAAa;IACxB,OAAO,CAAC,MAAM,CAAC,MAAM,CAA+B;IAEpD;;;;OAIG;IACH,MAAM,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,IAAI,CAAC,iBAAiB,EAAE,MAAM,CAAC,CAAC;IAO1E,MAAM,CAAC,gCAAgC,CACrC,aAAa,EAAE,OAAO,CACpB,WAAW,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,qBAAqB,CAAC,CACzE;IAWH;;;;;;;;;;;;;;OAcG;IACH,MAAM,CAAC,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC;IAmBvE,MAAM,CAAC,SAAS;IAIhB;;;OAGG;IACH,MAAM,CAAC,YAAY;IASnB;;;;OAIG;IACH,MAAM,CAAC,gCAAgC,CACrC,QAAQ,EAAE,2BAA2B;CAYxC"}
|
|
@@ -102,10 +102,12 @@ export type StreamVideoConfig = {
|
|
|
102
102
|
* }
|
|
103
103
|
*/
|
|
104
104
|
createStreamVideoClient: () => Promise<StreamVideoClient | undefined>;
|
|
105
|
-
/**
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
105
|
+
/** @deprecated This method will be removed in the future. Please watch for incoming and outgoing calls in the root component of your app.
|
|
106
|
+
Please see https://getstream.io/video/docs/react-native/advanced/ringing-calls/#watch-for-incoming-and-outgoing-calls for more information */
|
|
107
|
+
navigateAcceptCall?: () => void;
|
|
108
|
+
/** @deprecated This method will be removed in the future. Please watch for incoming and outgoing calls in the root component of your app.
|
|
109
|
+
Please see https://getstream.io/video/docs/react-native/advanced/ringing-calls/#watch-for-incoming-and-outgoing-calls for more information */
|
|
110
|
+
navigateToIncomingCall?: () => void;
|
|
109
111
|
/** Callback that is called when a non ringing push notification was tapped */
|
|
110
112
|
onTapNonRingingCallNotification?: (call_cid: string, type: NonRingingPushEvent) => void;
|
|
111
113
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/utils/StreamVideoRN/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAE5D,MAAM,MAAM,mBAAmB,GAAG,mBAAmB,GAAG,mBAAmB,CAAC;AAE5E,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;;;OAIG;IACH,IAAI,CAAC,EAAE;QACL,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB;;;;WAIG;QACH,cAAc,CAAC,EAAE,cAAc,CAAC;QAChC,GAAG,EAAE;YACH;;;;eAIG;YACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;SAC3B,CAAC;QACF,OAAO,EAAE;YACP;;;;eAIG;YACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;YAC1B;;;;;;;;;eASG;YACH,WAAW,CAAC,EAAE,cAAc,CAAC;YAC7B;;;;;;;;;eASG;YACH,mBAAmB,CAAC,EAAE,cAAc,CAAC;YACrC;;;;;;;eAOG;YACH,mCAAmC,CAAC,EAAE;gBACpC,QAAQ,EAAE,CAAC,eAAe,EAAE,MAAM,KAAK,MAAM,CAAC;gBAC9C,OAAO,EAAE,CAAC,eAAe,EAAE,MAAM,KAAK,MAAM,CAAC;aAC9C,CAAC;YACF;;;;;;;;;;;;;eAaG;YACH,2BAA2B,CAAC,EAAE;gBAC5B,QAAQ,EAAE,CACR,IAAI,EAAE,mBAAmB,EACzB,eAAe,EAAE,MAAM,KACpB,MAAM,CAAC;gBACZ,OAAO,EAAE,CAAC,IAAI,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,KAAK,MAAM,CAAC;aACzE,CAAC;SACH,CAAC;QACF;;;;;;;;;;;;;;;;;WAiBG;QACH,uBAAuB,EAAE,MAAM,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC,CAAC;QACtE
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/utils/StreamVideoRN/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAE5D,MAAM,MAAM,mBAAmB,GAAG,mBAAmB,GAAG,mBAAmB,CAAC;AAE5E,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;;;OAIG;IACH,IAAI,CAAC,EAAE;QACL,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB;;;;WAIG;QACH,cAAc,CAAC,EAAE,cAAc,CAAC;QAChC,GAAG,EAAE;YACH;;;;eAIG;YACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;SAC3B,CAAC;QACF,OAAO,EAAE;YACP;;;;eAIG;YACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;YAC1B;;;;;;;;;eASG;YACH,WAAW,CAAC,EAAE,cAAc,CAAC;YAC7B;;;;;;;;;eASG;YACH,mBAAmB,CAAC,EAAE,cAAc,CAAC;YACrC;;;;;;;eAOG;YACH,mCAAmC,CAAC,EAAE;gBACpC,QAAQ,EAAE,CAAC,eAAe,EAAE,MAAM,KAAK,MAAM,CAAC;gBAC9C,OAAO,EAAE,CAAC,eAAe,EAAE,MAAM,KAAK,MAAM,CAAC;aAC9C,CAAC;YACF;;;;;;;;;;;;;eAaG;YACH,2BAA2B,CAAC,EAAE;gBAC5B,QAAQ,EAAE,CACR,IAAI,EAAE,mBAAmB,EACzB,eAAe,EAAE,MAAM,KACpB,MAAM,CAAC;gBACZ,OAAO,EAAE,CAAC,IAAI,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,KAAK,MAAM,CAAC;aACzE,CAAC;SACH,CAAC;QACF;;;;;;;;;;;;;;;;;WAiBG;QACH,uBAAuB,EAAE,MAAM,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC,CAAC;QACtE;yJACiJ;QACjJ,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAC;QAChC;yJACiJ;QACjJ,sBAAsB,CAAC,EAAE,MAAM,IAAI,CAAC;QACpC,8EAA8E;QAC9E,+BAA+B,CAAC,EAAE,CAChC,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,mBAAmB,KACtB,IAAI,CAAC;KACX,CAAC;IACF,iBAAiB,EAAE;QACjB,OAAO,EAAE;YACP;;;;eAIG;YACH,iBAAiB,EAAE;gBACjB,KAAK,EAAE,MAAM,CAAC;gBACd,IAAI,EAAE,MAAM,CAAC;aACd,CAAC;SACH,CAAC;KACH,CAAC;CACH,CAAC"}
|