agora-appbuilder-core 3.0.8 → 3.0.10
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/Readme.md +6 -0
- package/package.json +2 -2
- package/template/_package-lock.json +32828 -2777
- package/template/agora-rn-uikit/src/Contexts/LocalUserContext.tsx +4 -0
- package/template/agora-rn-uikit/src/Contexts/PropsContext.tsx +18 -0
- package/template/agora-rn-uikit/src/Contexts/RtcContext.tsx +2 -0
- package/template/agora-rn-uikit/src/Controls/BtnTemplate.tsx +30 -26
- package/template/agora-rn-uikit/src/Controls/Icons.ts +30 -83
- package/template/agora-rn-uikit/src/Controls/ImageIcon.tsx +6 -6
- package/template/agora-rn-uikit/src/Reducer/ActiveSpeakerDetected.ts +11 -0
- package/template/agora-rn-uikit/src/Reducer/LocalMuteAudio.ts +1 -0
- package/template/agora-rn-uikit/src/Reducer/LocalMuteVideo.ts +1 -0
- package/template/agora-rn-uikit/src/Reducer/LocalPermissionState.ts +24 -0
- package/template/agora-rn-uikit/src/Reducer/RemoteAudioStateChanged.ts +1 -0
- package/template/agora-rn-uikit/src/Reducer/RemoteVideoStateChanged.ts +1 -0
- package/template/agora-rn-uikit/src/Reducer/UpdateDualStreamMode.ts +1 -0
- package/template/agora-rn-uikit/src/Reducer/UserJoined.ts +2 -0
- package/template/agora-rn-uikit/src/Reducer/UserMuteRemoteAudio.ts +1 -0
- package/template/agora-rn-uikit/src/Reducer/UserMuteRemoteVideo.ts +1 -0
- package/template/agora-rn-uikit/src/Reducer/UserOffline.ts +1 -0
- package/template/agora-rn-uikit/src/Reducer/UserPin.ts +11 -0
- package/template/agora-rn-uikit/src/Reducer/index.ts +3 -0
- package/template/agora-rn-uikit/src/Rtc/Create.tsx +89 -1
- package/template/agora-rn-uikit/src/RtcConfigure.tsx +39 -2
- package/template/agora-rn-uikit/src/Views/MaxVideoView.native.tsx +15 -5
- package/template/agora-rn-uikit/src/Views/MaxVideoView.tsx +15 -9
- package/template/agora-rn-uikit/src/index.ts +3 -1
- package/template/android/app/build.gradle +1 -0
- package/template/android/app/src/main/AndroidManifest.xml +22 -15
- package/template/android/app/src/main/assets/fonts/SourceSansPro-Regular.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/icomoon.ttf +0 -0
- package/template/android/app/src/main/java/com/helloworld/MainActivity.java +50 -0
- package/template/android/app/src/main/res/values/colors.xml +7 -0
- package/template/android/build.gradle +3 -3
- package/template/babel.config.js +1 -0
- package/template/bridge/rtc/webNg/RtcEngine.ts +110 -17
- package/template/customization-api/sub-components.ts +1 -1
- package/template/customization-api/typeDefinition.ts +2 -1
- package/template/electron/index.html +27 -27
- package/template/electron/renderer/index.js +1 -0
- package/template/global.d.ts +25 -4
- package/template/index.rsdk.tsx +1 -0
- package/template/index.web.js +2 -1
- package/template/index.wsdk.tsx +1 -1
- package/template/ios/HelloWorld/Info.plist +14 -1
- package/template/ios/HelloWorld.xcodeproj/project.pbxproj +17 -0
- package/template/metro.config.js +1 -1
- package/template/package.json +18 -7
- package/template/react-native-toast-message/index.d.ts +43 -43
- package/template/react-native-toast-message/src/colors/index.js +3 -2
- package/template/react-native-toast-message/src/components/base/index.js +46 -59
- package/template/react-native-toast-message/src/components/base/styles.js +16 -32
- package/template/react-native-toast-message/src/components/checkbox.js +178 -0
- package/template/react-native-toast-message/src/components/error.js +3 -2
- package/template/react-native-toast-message/src/components/info.js +3 -2
- package/template/react-native-toast-message/src/components/success.js +3 -2
- package/template/react-native-toast-message/src/index.js +122 -31
- package/template/react-native-toast-message/src/index.sdk.tsx +125 -35
- package/template/react-native-toast-message/src/styles.js +3 -4
- package/template/react-native-toast-message/src/styles.sdk.ts +3 -4
- package/template/react-native.config.js +7 -0
- package/template/src/App.tsx +6 -0
- package/template/src/AppWrapper.tsx +63 -28
- package/template/src/assets/font-styles.css +329 -0
- package/template/src/assets/fonts/SourceSansPro-Regular.ttf +0 -0
- package/template/src/assets/fonts/icomoon.ttf +0 -0
- package/template/src/assets/permission.png +0 -0
- package/template/src/assets/selection.json +1 -0
- package/template/src/atoms/ActionMenu.tsx +236 -0
- package/template/src/atoms/AnimatedActiveSpeaker.native.tsx +71 -0
- package/template/src/atoms/AnimatedActiveSpeaker.tsx +84 -0
- package/template/src/atoms/AnimatedRings.native.tsx +68 -0
- package/template/src/atoms/AnimatedRings.tsx +70 -0
- package/template/src/atoms/Card.tsx +61 -0
- package/template/src/atoms/CircularProgress.native.tsx +121 -0
- package/template/src/atoms/CircularProgress.tsx +102 -0
- package/template/src/atoms/CustomIcon.tsx +88 -0
- package/template/src/atoms/CustomSwitch.tsx +287 -0
- package/template/src/atoms/Dropdown.tsx +306 -0
- package/template/src/atoms/HorizontalRule.tsx +3 -1
- package/template/src/atoms/IconButton.tsx +162 -0
- package/template/src/atoms/ImageIcon.tsx +98 -0
- package/template/src/atoms/InfoBubble.tsx +291 -0
- package/template/src/atoms/Input.tsx +87 -0
- package/template/src/atoms/InviteInfo.tsx +166 -0
- package/template/src/atoms/LinkButton.tsx +28 -0
- package/template/src/atoms/OutlineButton.tsx +61 -0
- package/template/src/atoms/ParticipantsCount.tsx +73 -0
- package/template/src/atoms/Popup.tsx +147 -0
- package/template/src/atoms/PrimaryButton.tsx +51 -26
- package/template/src/atoms/RecordingInfo.tsx +49 -0
- package/template/src/atoms/SecondaryButton.tsx +8 -5
- package/template/src/atoms/Spacer.tsx +22 -0
- package/template/src/atoms/TertiaryButton.tsx +78 -0
- package/template/src/atoms/TextInput.tsx +12 -14
- package/template/src/atoms/Toggle.tsx +47 -0
- package/template/src/atoms/Tooltip.native.tsx +65 -0
- package/template/src/atoms/Tooltip.tsx +94 -0
- package/template/src/atoms/UserAvatar.tsx +60 -0
- package/template/src/components/Chat.tsx +86 -214
- package/template/src/components/ChatContext.ts +8 -1
- package/template/src/components/ColorConfigure.tsx +1 -1
- package/template/src/components/ColorContext.ts +1 -1
- package/template/src/components/CommonStyles.ts +44 -0
- package/template/src/components/Controls.tsx +342 -42
- package/template/src/components/{Controls.native.tsx → Controls1.native.tsx} +6 -4
- package/template/src/components/DeviceConfigure.tsx +461 -97
- package/template/src/components/DeviceContext.tsx +8 -4
- package/template/src/components/EventsConfigure.tsx +144 -7
- package/template/src/components/GraphQLProvider.tsx +1 -1
- package/template/src/components/GridVideo.tsx +59 -44
- package/template/src/components/HostControlView.tsx +114 -35
- package/template/src/components/Navbar.tsx +216 -398
- package/template/src/components/NetworkQualityContext.tsx +20 -20
- package/template/src/components/ParticipantsView.tsx +177 -154
- package/template/src/components/PinnedVideo.tsx +207 -120
- package/template/src/components/Precall.native.tsx +358 -119
- package/template/src/components/Precall.tsx +269 -135
- package/template/src/components/RTMConfigure.tsx +27 -4
- package/template/src/components/Router.electron.ts +1 -0
- package/template/src/components/Router.native.ts +1 -0
- package/template/src/components/Router.sdk.ts +1 -0
- package/template/src/components/Router.ts +1 -0
- package/template/src/components/Settings.tsx +26 -95
- package/template/src/components/SettingsView.tsx +251 -56
- package/template/src/components/Share.tsx +302 -273
- package/template/src/components/StorageContext.tsx +30 -3
- package/template/src/components/ToastComponent.tsx +8 -0
- package/template/src/components/chat-messages/useChatMessages.tsx +69 -23
- package/template/src/components/chat-ui/useChatUIControl.tsx +7 -0
- package/template/src/components/common/Error.tsx +20 -6
- package/template/src/components/common/Logo.tsx +16 -15
- package/template/src/components/contexts/LiveStreamDataContext.tsx +10 -5
- package/template/src/components/contexts/VideoMeetingDataContext.tsx +37 -7
- package/template/src/components/livestream/LiveStreamContext.tsx +270 -36
- package/template/src/components/livestream/Types.ts +39 -14
- package/template/src/components/livestream/index.ts +1 -0
- package/template/src/components/livestream/views/LiveStreamControls.tsx +12 -4
- package/template/src/components/participants/AllAudienceParticipants.tsx +101 -30
- package/template/src/components/participants/AllHostParticipants.tsx +103 -34
- package/template/src/components/participants/Participant.tsx +302 -0
- package/template/src/components/participants/ParticipantName.tsx +13 -7
- package/template/src/components/participants/ParticipantSectionTitle.tsx +35 -10
- package/template/src/components/participants/ScreenshareParticipants.tsx +144 -12
- package/template/src/components/participants/UserActionMenuOptions.tsx +398 -0
- package/template/src/components/popups/InvitePopup.tsx +115 -0
- package/template/src/components/popups/StopRecordingPopup.tsx +114 -0
- package/template/src/components/precall/LocalMute.tsx +84 -14
- package/template/src/components/precall/{LocalMute.native.tsx → LocalMute1.native.tsx} +21 -5
- package/template/src/components/precall/PermissionHelper.native.tsx +5 -0
- package/template/src/components/precall/PermissionHelper.tsx +126 -0
- package/template/src/components/precall/PreCallSettings.tsx +52 -0
- package/template/src/components/precall/VideoPreview.native.tsx +48 -3
- package/template/src/components/precall/VideoPreview.tsx +163 -7
- package/template/src/components/precall/joinCallBtn.tsx +15 -2
- package/template/src/components/precall/meetingTitle.tsx +15 -12
- package/template/src/components/precall/selectDevice.tsx +1 -21
- package/template/src/components/precall/textInput.tsx +32 -4
- package/template/src/components/precall/usePreCall.tsx +16 -0
- package/template/src/components/styles.ts +42 -21
- package/template/src/components/useShareLink.tsx +12 -14
- package/template/src/components/useToast.tsx +41 -0
- package/template/src/components/useVideoCall.tsx +65 -0
- package/template/src/language/default-labels/precallScreenLabels.ts +3 -3
- package/template/src/pages/Authenticate.tsx +5 -15
- package/template/src/pages/Create.tsx +293 -165
- package/template/src/pages/Endcall.tsx +148 -0
- package/template/src/pages/Join.tsx +93 -67
- package/template/src/pages/VideoCall.tsx +89 -64
- package/template/src/pages/video-call/ActionSheet.native.tsx +215 -0
- package/template/src/pages/video-call/ActionSheet.tsx +226 -0
- package/template/src/pages/video-call/ActionSheetContent.tsx +479 -0
- package/template/src/pages/video-call/ActionSheetHandle.tsx +38 -0
- package/template/src/pages/video-call/ActionSheetStyles.css +138 -0
- package/template/src/pages/video-call/DefaultLayouts.ts +4 -4
- package/template/src/pages/video-call/NameWithMicIcon.tsx +120 -44
- package/template/src/pages/video-call/RenderComponent.tsx +3 -2
- package/template/src/pages/video-call/SidePanelHeader.tsx +190 -0
- package/template/src/pages/video-call/VideoCallMobileView.tsx +139 -0
- package/template/src/pages/video-call/VideoCallScreen.native.tsx +37 -0
- package/template/src/pages/video-call/VideoCallScreen.tsx +45 -9
- package/template/src/pages/video-call/VideoComponent.tsx +18 -3
- package/template/src/pages/video-call/VideoRenderer.tsx +218 -60
- package/template/src/rtm-events/constants.ts +2 -0
- package/template/src/subComponents/ChatBubble.tsx +123 -83
- package/template/src/subComponents/ChatContainer.tsx +257 -84
- package/template/src/subComponents/ChatInput.ios.tsx +237 -0
- package/template/src/subComponents/ChatInput.tsx +61 -46
- package/template/src/subComponents/Checkbox.native.tsx +16 -5
- package/template/src/subComponents/Checkbox.tsx +2 -2
- package/template/src/subComponents/CopyJoinInfo.tsx +36 -58
- package/template/src/subComponents/EndcallPopup.tsx +107 -0
- package/template/src/subComponents/FallbackLogo.tsx +122 -40
- package/template/src/subComponents/LanguageSelector.tsx +1 -1
- package/template/src/subComponents/LayoutIconButton.tsx +201 -0
- package/template/src/subComponents/LayoutIconDropdown.tsx +131 -134
- package/template/src/subComponents/{LayoutIconDropdown.native.tsx → LayoutIconDropdown1.native.tsx} +4 -18
- package/template/src/subComponents/LocalAudioMute.tsx +119 -27
- package/template/src/subComponents/LocalEndCall.tsx +71 -33
- package/template/src/subComponents/LocalSwitchCamera.tsx +17 -30
- package/template/src/subComponents/LocalVideoMute.tsx +117 -27
- package/template/src/subComponents/Logo.tsx +3 -4
- package/template/src/subComponents/LogoutButton.tsx +1 -1
- package/template/src/subComponents/NetworkQualityPill.tsx +60 -63
- package/template/src/subComponents/OpenInNativeButton.tsx +3 -3
- package/template/src/subComponents/Recording.tsx +28 -29
- package/template/src/subComponents/RemoteAudioMute.tsx +83 -29
- package/template/src/subComponents/RemoteEndCall.tsx +8 -5
- package/template/src/subComponents/RemoteMutePopup.tsx +193 -0
- package/template/src/subComponents/RemoteVideoMute.tsx +74 -21
- package/template/src/subComponents/RemoveMeetingPopup.tsx +109 -0
- package/template/src/subComponents/RemoveScreensharePopup.tsx +109 -0
- package/template/src/subComponents/ScreenShareNotice.tsx +83 -8
- package/template/src/subComponents/SelectDevice.tsx +404 -61
- package/template/src/subComponents/SelectDeviceSettings.backup.tsx +207 -0
- package/template/src/subComponents/SelectOAuth.tsx +9 -8
- package/template/src/subComponents/SidePanelHeader.tsx +112 -0
- package/template/src/subComponents/ToastConfig.tsx +150 -10
- package/template/src/subComponents/chat/ChatParticipants.tsx +187 -78
- package/template/src/subComponents/livestream/CurrentLiveStreamRequestsView.tsx +95 -32
- package/template/src/subComponents/livestream/controls/LocalRaiseHand.tsx +29 -33
- package/template/src/subComponents/livestream/controls/RemoteLiveStreamApprovedRequestRecall.tsx +6 -6
- package/template/src/subComponents/livestream/controls/RemoteLiveStreamRequestApprove.tsx +24 -11
- package/template/src/subComponents/livestream/controls/RemoteLiveStreamRequestReject.tsx +17 -10
- package/template/src/subComponents/recording/useRecording.tsx +79 -27
- package/template/src/subComponents/screenshare/ScreenshareButton.tsx +52 -70
- package/template/src/subComponents/screenshare/ScreenshareConfigure.native.tsx +11 -2
- package/template/src/subComponents/screenshare/ScreenshareConfigure.tsx +26 -4
- package/template/src/theme/index.ts +46 -0
- package/template/src/utils/PlatformWrapper.tsx +21 -0
- package/template/src/utils/common.tsx +155 -1
- package/template/src/utils/hexadecimalTransparency.ts +108 -0
- package/template/src/utils/index.tsx +19 -0
- package/template/src/utils/isMobileOrTablet.ts +7 -2
- package/template/src/utils/pendingStateUpdateHelper.ts +19 -0
- package/template/src/utils/useButtonTemplate.tsx +1 -0
- package/template/src/utils/useFocus.tsx +46 -0
- package/template/src/utils/useIsActiveSpeaker.ts +27 -0
- package/template/src/utils/useIsHandRaised.ts +13 -0
- package/template/src/utils/useMuteToggleLocal.ts +54 -3
- package/template/src/utils/useRemoteEndScreenshare.ts +26 -0
- package/template/src/utils/useRemoteRequest.ts +84 -0
- package/template/web/index.html +5 -0
- package/template/webpack.commons.js +13 -8
- package/template/webpack.web.config.js +1 -0
- package/template/agora-rn-uikit/.git/HEAD +0 -1
- package/template/agora-rn-uikit/.git/config +0 -16
- package/template/agora-rn-uikit/.git/description +0 -1
- package/template/agora-rn-uikit/.git/hooks/applypatch-msg.sample +0 -15
- package/template/agora-rn-uikit/.git/hooks/commit-msg.sample +0 -24
- package/template/agora-rn-uikit/.git/hooks/fsmonitor-watchman.sample +0 -174
- package/template/agora-rn-uikit/.git/hooks/post-update.sample +0 -8
- package/template/agora-rn-uikit/.git/hooks/pre-applypatch.sample +0 -14
- package/template/agora-rn-uikit/.git/hooks/pre-commit.sample +0 -49
- package/template/agora-rn-uikit/.git/hooks/pre-merge-commit.sample +0 -13
- package/template/agora-rn-uikit/.git/hooks/pre-push.sample +0 -53
- package/template/agora-rn-uikit/.git/hooks/pre-rebase.sample +0 -169
- package/template/agora-rn-uikit/.git/hooks/pre-receive.sample +0 -24
- package/template/agora-rn-uikit/.git/hooks/prepare-commit-msg.sample +0 -42
- package/template/agora-rn-uikit/.git/hooks/push-to-checkout.sample +0 -78
- package/template/agora-rn-uikit/.git/hooks/update.sample +0 -128
- package/template/agora-rn-uikit/.git/index +0 -0
- package/template/agora-rn-uikit/.git/info/exclude +0 -6
- package/template/agora-rn-uikit/.git/logs/HEAD +0 -2
- package/template/agora-rn-uikit/.git/logs/refs/heads/master +0 -1
- package/template/agora-rn-uikit/.git/logs/refs/heads/release/fpe-1.0.1 +0 -1
- package/template/agora-rn-uikit/.git/logs/refs/remotes/origin/HEAD +0 -1
- package/template/agora-rn-uikit/.git/objects/pack/pack-baa9cf4109c3e8528f39535764621cee252b2b77.idx +0 -0
- package/template/agora-rn-uikit/.git/objects/pack/pack-baa9cf4109c3e8528f39535764621cee252b2b77.pack +0 -0
- package/template/agora-rn-uikit/.git/packed-refs +0 -49
- package/template/agora-rn-uikit/.git/refs/heads/master +0 -1
- package/template/agora-rn-uikit/.git/refs/heads/release/fpe-1.0.1 +0 -1
- package/template/agora-rn-uikit/.git/refs/remotes/origin/HEAD +0 -1
- package/template/agora-rn-uikit/.gitignore +0 -63
- package/template/agora-rn-uikit/package-lock.json +0 -7612
- package/template/package-lock.json +0 -22543
- package/template/react-native-toast-message/.gitignore +0 -5
- package/template/react-native-toast-message/.npmignore +0 -5
- package/template/react-native-toast-message/package-lock.json +0 -10553
- package/template/src/.DS_Store +0 -0
- package/template/src/assets/icons.ts +0 -102
- package/template/src/components/participants/MeParticipant.tsx +0 -38
- package/template/src/components/participants/RemoteParticipants.tsx +0 -71
- package/template/src/subComponents/.DS_Store +0 -0
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
information visit https://appbuilder.agora.io.
|
|
10
10
|
*********************************************
|
|
11
11
|
*/
|
|
12
|
-
import React, {useRef} from 'react';
|
|
12
|
+
import React, {useCallback, useEffect, useRef, useState} from 'react';
|
|
13
13
|
import {
|
|
14
14
|
View,
|
|
15
15
|
ScrollView,
|
|
@@ -22,15 +22,19 @@ import {
|
|
|
22
22
|
import {RFValue} from 'react-native-responsive-fontsize';
|
|
23
23
|
import ChatBubble from './ChatBubble';
|
|
24
24
|
import {ChatBubbleProps} from '../components/ChatContext';
|
|
25
|
-
import {useLocalUid} from '../../agora-rn-uikit';
|
|
26
|
-
import {ImageIcon} from '../../agora-rn-uikit';
|
|
25
|
+
import {RenderInterface, useLocalUid} from '../../agora-rn-uikit';
|
|
27
26
|
import TextWithTooltip from './TextWithTooltip';
|
|
28
27
|
import {useCustomization} from 'customization-implementation';
|
|
29
28
|
import {isValidReactComponent, isWebInternal} from '../utils/common';
|
|
30
29
|
import {useString} from '../utils/useString';
|
|
31
30
|
import {useChatUIControl} from '../components/chat-ui/useChatUIControl';
|
|
32
|
-
import {useRender} from 'customization-api';
|
|
31
|
+
import {useRender, useRtc} from 'customization-api';
|
|
33
32
|
import {useChatMessages} from '../components/chat-messages/useChatMessages';
|
|
33
|
+
import hexadecimalTransparency from '../utils/hexadecimalTransparency';
|
|
34
|
+
import ThemeConfig from '../theme';
|
|
35
|
+
import UserAvatar from '../atoms/UserAvatar';
|
|
36
|
+
import Spacer from '../atoms/Spacer';
|
|
37
|
+
import {useChatNotification} from '../components/chat-notification/useChatNotification';
|
|
34
38
|
|
|
35
39
|
/**
|
|
36
40
|
* Chat container is the component which renders all the chat messages
|
|
@@ -40,20 +44,65 @@ import {useChatMessages} from '../components/chat-messages/useChatMessages';
|
|
|
40
44
|
const ChatContainer = (props?: {
|
|
41
45
|
chatBubble?: React.ComponentType<ChatBubbleProps>;
|
|
42
46
|
}) => {
|
|
47
|
+
const [scrollToEnd, setScrollToEnd] = useState(false);
|
|
48
|
+
const {dispatch} = useRtc();
|
|
49
|
+
const [grpUnreadCount, setGrpUnreadCount] = useState(0);
|
|
50
|
+
const [privateUnreadCount, setPrivateUnreadCount] = useState(0);
|
|
43
51
|
const {renderList} = useRender();
|
|
44
52
|
const {messageStore, privateMessageStore} = useChatMessages();
|
|
53
|
+
const messageStoreLengthRef = useRef(messageStore.length);
|
|
45
54
|
const {height, width} = useWindowDimensions();
|
|
46
55
|
const {
|
|
56
|
+
groupActive,
|
|
47
57
|
privateActive,
|
|
48
58
|
selectedChatUserId: selectedUserID,
|
|
49
59
|
setPrivateActive,
|
|
60
|
+
inputActive,
|
|
50
61
|
} = useChatUIControl();
|
|
62
|
+
const privateMessageStoreRef = useRef(
|
|
63
|
+
privateMessageStore[selectedUserID]?.length,
|
|
64
|
+
);
|
|
65
|
+
const {
|
|
66
|
+
setUnreadGroupMessageCount,
|
|
67
|
+
unreadGroupMessageCount,
|
|
68
|
+
unreadIndividualMessageCount,
|
|
69
|
+
setUnreadIndividualMessageCount,
|
|
70
|
+
} = useChatNotification();
|
|
51
71
|
const localUid = useLocalUid();
|
|
52
72
|
//commented for v1 release
|
|
53
73
|
//const remoteUserDefaultLabel = useString('remoteUserDefaultLabel')();
|
|
54
74
|
const remoteUserDefaultLabel = 'User';
|
|
55
75
|
const scrollViewRef = useRef<ScrollView>(null);
|
|
56
76
|
|
|
77
|
+
useEffect(() => {
|
|
78
|
+
if (groupActive) {
|
|
79
|
+
setGrpUnreadCount(unreadGroupMessageCount);
|
|
80
|
+
setUnreadGroupMessageCount(0);
|
|
81
|
+
}
|
|
82
|
+
}, [groupActive]);
|
|
83
|
+
|
|
84
|
+
useEffect(() => {
|
|
85
|
+
if (selectedUserID) {
|
|
86
|
+
setPrivateUnreadCount(unreadIndividualMessageCount[selectedUserID]);
|
|
87
|
+
setUnreadIndividualMessageCount((prevState) => {
|
|
88
|
+
return {
|
|
89
|
+
...prevState,
|
|
90
|
+
[selectedUserID]: 0,
|
|
91
|
+
};
|
|
92
|
+
});
|
|
93
|
+
//Once message is seen, reset lastMessageTimeStamp.
|
|
94
|
+
//so whoever has unread count will show in the top of participant list
|
|
95
|
+
updateRenderListState(selectedUserID, {lastMessageTimeStamp: 0});
|
|
96
|
+
}
|
|
97
|
+
}, [selectedUserID]);
|
|
98
|
+
|
|
99
|
+
const updateRenderListState = (
|
|
100
|
+
uid: number,
|
|
101
|
+
data: Partial<RenderInterface>,
|
|
102
|
+
) => {
|
|
103
|
+
dispatch({type: 'UpdateRenderList', value: [uid, data]});
|
|
104
|
+
};
|
|
105
|
+
|
|
57
106
|
const {ChatBubbleComponent} = useCustomization((data) => {
|
|
58
107
|
let components: {
|
|
59
108
|
ChatBubbleComponent: React.ComponentType<ChatBubbleProps>;
|
|
@@ -88,66 +137,150 @@ const ChatContainer = (props?: {
|
|
|
88
137
|
//commented for v1 release
|
|
89
138
|
//const userOfflineLabel = useString('userOfflineLabel')();
|
|
90
139
|
const userOfflineLabel = 'User is offline';
|
|
140
|
+
|
|
141
|
+
//if we don't have unread count then enable scroll to end
|
|
142
|
+
useEffect(() => {
|
|
143
|
+
if (!privateActive && !grpUnreadCount) {
|
|
144
|
+
setScrollToEnd(true);
|
|
145
|
+
} else if (privateActive && !privateUnreadCount) {
|
|
146
|
+
setScrollToEnd(true);
|
|
147
|
+
}
|
|
148
|
+
}, [privateActive, grpUnreadCount, privateUnreadCount]);
|
|
149
|
+
|
|
150
|
+
const onContentSizeChange = useCallback(() => {
|
|
151
|
+
if (scrollToEnd) {
|
|
152
|
+
scrollViewRef.current?.scrollToEnd({animated: false});
|
|
153
|
+
}
|
|
154
|
+
}, [scrollToEnd]);
|
|
155
|
+
|
|
156
|
+
//if we have unread container then scrollTo that container and scrollToEnd will be disabled since its has unread count
|
|
157
|
+
const unreadViewOnLayout = ({
|
|
158
|
+
nativeEvent: {
|
|
159
|
+
layout: {y},
|
|
160
|
+
},
|
|
161
|
+
}) => {
|
|
162
|
+
//scroll to unread message label
|
|
163
|
+
if (y) {
|
|
164
|
+
scrollViewRef.current?.scrollTo({y, animated: false});
|
|
165
|
+
}
|
|
166
|
+
};
|
|
167
|
+
|
|
91
168
|
return (
|
|
92
169
|
<View style={style.containerView}>
|
|
93
|
-
{privateActive && (
|
|
94
|
-
|
|
95
|
-
style={style.
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
]}
|
|
109
|
-
value={
|
|
110
|
-
renderList[selectedUserID]
|
|
111
|
-
? renderList[selectedUserID]?.name + ' '
|
|
112
|
-
: remoteUserDefaultLabel + ' '
|
|
113
|
-
}
|
|
114
|
-
/>
|
|
170
|
+
{privateActive && selectedUserID ? (
|
|
171
|
+
<>
|
|
172
|
+
<View style={style.participantContainer}>
|
|
173
|
+
<View style={style.bgContainerStyle}>
|
|
174
|
+
<UserAvatar
|
|
175
|
+
name={renderList[selectedUserID].name}
|
|
176
|
+
containerStyle={style.userAvatarContainer}
|
|
177
|
+
textStyle={style.userAvatarText}
|
|
178
|
+
/>
|
|
179
|
+
</View>
|
|
180
|
+
<View style={style.participantTextContainer}>
|
|
181
|
+
<Text style={[style.participantText]} numberOfLines={1}>
|
|
182
|
+
{renderList[selectedUserID].name}
|
|
183
|
+
</Text>
|
|
184
|
+
</View>
|
|
115
185
|
</View>
|
|
116
|
-
|
|
186
|
+
<Spacer size={10} />
|
|
187
|
+
</>
|
|
188
|
+
) : (
|
|
189
|
+
<></>
|
|
117
190
|
)}
|
|
118
|
-
<ScrollView
|
|
119
|
-
ref={scrollViewRef}
|
|
120
|
-
onContentSizeChange={() => {
|
|
121
|
-
scrollViewRef.current?.scrollToEnd({animated: true});
|
|
122
|
-
}}>
|
|
191
|
+
<ScrollView ref={scrollViewRef} onContentSizeChange={onContentSizeChange}>
|
|
123
192
|
{!privateActive ? (
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
<
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
193
|
+
<>
|
|
194
|
+
<View style={style.defaultMessageContainer}>
|
|
195
|
+
<Text style={style.defaultMessageText}>
|
|
196
|
+
{!messageStore?.length
|
|
197
|
+
? `Welcome to Chat! \nAll messages are deleted when call ends.`
|
|
198
|
+
: 'All messages are deleted when call ends.'}
|
|
199
|
+
</Text>
|
|
200
|
+
</View>
|
|
201
|
+
{messageStore.map((message: any, index) => (
|
|
202
|
+
<>
|
|
203
|
+
{messageStoreLengthRef.current === messageStore.length &&
|
|
204
|
+
grpUnreadCount &&
|
|
205
|
+
messageStore.length - grpUnreadCount === index ? (
|
|
206
|
+
<View
|
|
207
|
+
style={style.unreadMessageContainer}
|
|
208
|
+
onLayout={unreadViewOnLayout}>
|
|
209
|
+
<Text style={style.unreadMessageText}>
|
|
210
|
+
{grpUnreadCount} Unread Message
|
|
211
|
+
</Text>
|
|
212
|
+
</View>
|
|
213
|
+
) : (
|
|
214
|
+
<></>
|
|
215
|
+
)}
|
|
216
|
+
<ChatBubbleComponent
|
|
217
|
+
isLocal={localUid === message.uid}
|
|
218
|
+
isSameUser={
|
|
219
|
+
index !== 0 && messageStore[index - 1].uid === message.uid
|
|
220
|
+
? true
|
|
221
|
+
: false
|
|
222
|
+
}
|
|
223
|
+
message={message.msg}
|
|
224
|
+
createdTimestamp={message.createdTimestamp}
|
|
225
|
+
updatedTimestamp={message.updatedTimestamp}
|
|
226
|
+
uid={message.uid}
|
|
227
|
+
key={message.ts}
|
|
228
|
+
msgId={message.msgId}
|
|
229
|
+
isDeleted={message.isDeleted}
|
|
230
|
+
/>
|
|
231
|
+
{messageStore?.length - 1 === index ? (
|
|
232
|
+
<Spacer size={10} />
|
|
233
|
+
) : (
|
|
234
|
+
<></>
|
|
235
|
+
)}
|
|
236
|
+
</>
|
|
237
|
+
))}
|
|
238
|
+
</>
|
|
138
239
|
) : privateMessageStore[selectedUserID] ? (
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
240
|
+
<>
|
|
241
|
+
{privateMessageStore[selectedUserID].map((message: any, index) => (
|
|
242
|
+
<>
|
|
243
|
+
{privateMessageStoreRef.current ===
|
|
244
|
+
privateMessageStore[selectedUserID]?.length &&
|
|
245
|
+
privateUnreadCount &&
|
|
246
|
+
privateMessageStore[selectedUserID]?.length -
|
|
247
|
+
privateUnreadCount ===
|
|
248
|
+
index ? (
|
|
249
|
+
<View
|
|
250
|
+
style={style.unreadMessageContainer}
|
|
251
|
+
onLayout={unreadViewOnLayout}>
|
|
252
|
+
<Text style={style.unreadMessageText}>
|
|
253
|
+
{privateUnreadCount} Unread Message
|
|
254
|
+
</Text>
|
|
255
|
+
</View>
|
|
256
|
+
) : (
|
|
257
|
+
<></>
|
|
258
|
+
)}
|
|
259
|
+
<ChatBubbleComponent
|
|
260
|
+
isLocal={localUid === message.uid}
|
|
261
|
+
isSameUser={
|
|
262
|
+
index !== 0 &&
|
|
263
|
+
privateMessageStore[selectedUserID][index - 1].uid ===
|
|
264
|
+
message.uid
|
|
265
|
+
? true
|
|
266
|
+
: false
|
|
267
|
+
}
|
|
268
|
+
message={message.msg}
|
|
269
|
+
createdTimestamp={message.createdTimestamp}
|
|
270
|
+
updatedTimestamp={message.updatedTimestamp}
|
|
271
|
+
uid={message.uid}
|
|
272
|
+
key={message.ts}
|
|
273
|
+
msgId={message.msgId}
|
|
274
|
+
isDeleted={message.isDeleted}
|
|
275
|
+
/>
|
|
276
|
+
{privateMessageStore[selectedUserID]?.length - 1 === index ? (
|
|
277
|
+
<Spacer size={10} />
|
|
278
|
+
) : (
|
|
279
|
+
<></>
|
|
280
|
+
)}
|
|
281
|
+
</>
|
|
282
|
+
))}
|
|
283
|
+
</>
|
|
151
284
|
) : (
|
|
152
285
|
<></>
|
|
153
286
|
)}
|
|
@@ -162,42 +295,82 @@ const ChatContainer = (props?: {
|
|
|
162
295
|
};
|
|
163
296
|
|
|
164
297
|
const style = StyleSheet.create({
|
|
165
|
-
|
|
166
|
-
|
|
298
|
+
unreadMessageContainer: {
|
|
299
|
+
backgroundColor: $config.CARD_LAYER_2_COLOR,
|
|
300
|
+
padding: 8,
|
|
301
|
+
marginVertical: 20,
|
|
302
|
+
},
|
|
303
|
+
unreadMessageText: {
|
|
304
|
+
fontFamily: ThemeConfig.FontFamily.sansPro,
|
|
305
|
+
fontWeight: '600',
|
|
306
|
+
fontSize: 12,
|
|
307
|
+
color: $config.FONT_COLOR,
|
|
308
|
+
textAlign: 'center',
|
|
309
|
+
},
|
|
310
|
+
defaultMessageContainer: {
|
|
311
|
+
backgroundColor: $config.CARD_LAYER_2_COLOR,
|
|
312
|
+
borderRadius: 8,
|
|
313
|
+
padding: 12,
|
|
314
|
+
marginTop: 20,
|
|
315
|
+
marginHorizontal: 20,
|
|
316
|
+
marginBottom: 0,
|
|
317
|
+
},
|
|
318
|
+
defaultMessageText: {
|
|
319
|
+
fontFamily: ThemeConfig.FontFamily.sansPro,
|
|
320
|
+
fontWeight: '400',
|
|
321
|
+
fontSize: 12,
|
|
322
|
+
color: $config.FONT_COLOR + hexadecimalTransparency['40%'],
|
|
323
|
+
},
|
|
324
|
+
bgContainerStyle: {
|
|
325
|
+
backgroundColor: $config.VIDEO_AUDIO_TILE_AVATAR_COLOR,
|
|
326
|
+
width: 36,
|
|
327
|
+
height: 36,
|
|
328
|
+
borderRadius: 18,
|
|
329
|
+
marginRight: 8,
|
|
330
|
+
marginLeft: 20,
|
|
331
|
+
marginVertical: 8,
|
|
332
|
+
},
|
|
333
|
+
userAvatarContainer: {
|
|
334
|
+
backgroundColor:
|
|
335
|
+
$config.PRIMARY_ACTION_BRAND_COLOR + hexadecimalTransparency['10%'],
|
|
336
|
+
width: 36,
|
|
337
|
+
height: 36,
|
|
338
|
+
borderRadius: 18,
|
|
339
|
+
},
|
|
340
|
+
userAvatarText: {
|
|
341
|
+
fontSize: ThemeConfig.FontSize.tiny,
|
|
342
|
+
lineHeight: 12,
|
|
343
|
+
fontWeight: '400',
|
|
344
|
+
color: $config.CARD_LAYER_1_COLOR,
|
|
345
|
+
},
|
|
346
|
+
participantContainer: {
|
|
167
347
|
flexDirection: 'row',
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
android: {
|
|
173
|
-
height: 40,
|
|
174
|
-
},
|
|
175
|
-
ios: {
|
|
176
|
-
height: 40,
|
|
177
|
-
},
|
|
178
|
-
}),
|
|
348
|
+
overflow: 'hidden',
|
|
349
|
+
justifyContent: 'space-between',
|
|
350
|
+
backgroundColor:
|
|
351
|
+
$config.HARD_CODED_BLACK_COLOR + hexadecimalTransparency['10%'],
|
|
179
352
|
},
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
353
|
+
participantTextContainer: {
|
|
354
|
+
flex: 1,
|
|
355
|
+
alignSelf: 'center',
|
|
356
|
+
marginRight: 8,
|
|
184
357
|
},
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
358
|
+
participantText: {
|
|
359
|
+
// flex: 1,
|
|
360
|
+
fontFamily: ThemeConfig.FontFamily.sansPro,
|
|
361
|
+
fontWeight: '600',
|
|
362
|
+
fontSize: 14,
|
|
363
|
+
color: $config.FONT_COLOR,
|
|
188
364
|
textAlign: 'left',
|
|
189
|
-
|
|
190
|
-
},
|
|
191
|
-
backIcon: {
|
|
192
|
-
width: 20,
|
|
193
|
-
height: 20,
|
|
365
|
+
flexShrink: 1,
|
|
194
366
|
},
|
|
367
|
+
containerView: {flex: 8},
|
|
195
368
|
infoTextView: {
|
|
196
369
|
marginVertical: 2,
|
|
197
370
|
flexDirection: 'row',
|
|
198
371
|
},
|
|
199
372
|
infoText: {
|
|
200
|
-
color: $config.
|
|
373
|
+
color: $config.FONT_COLOR + hexadecimalTransparency['60%'],
|
|
201
374
|
fontWeight: '500',
|
|
202
375
|
fontSize: 14,
|
|
203
376
|
flex: 1,
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
/*
|
|
2
|
+
********************************************
|
|
3
|
+
Copyright © 2021 Agora Lab, Inc., all rights reserved.
|
|
4
|
+
AppBuilder and all associated components, source code, APIs, services, and documentation
|
|
5
|
+
(the “Materials”) are owned by Agora Lab, Inc. and its licensors. The Materials may not be
|
|
6
|
+
accessed, used, modified, or distributed for any purpose without a license from Agora Lab, Inc.
|
|
7
|
+
Use without a license or in violation of any license terms and conditions (including use for
|
|
8
|
+
any purpose competitive to Agora Lab, Inc.’s business) is strictly prohibited. For more
|
|
9
|
+
information visit https://appbuilder.agora.io.
|
|
10
|
+
*********************************************
|
|
11
|
+
*/
|
|
12
|
+
import React, {useContext, useEffect, useRef} from 'react';
|
|
13
|
+
import {View, TouchableOpacity, StyleSheet, Image} from 'react-native';
|
|
14
|
+
import ColorContext from '../components/ColorContext';
|
|
15
|
+
import TextInput from '../atoms/TextInput';
|
|
16
|
+
import {useString} from '../utils/useString';
|
|
17
|
+
import {useChatMessages} from '../components/chat-messages/useChatMessages';
|
|
18
|
+
import {isIOS, isValidReactComponent, isWebInternal} from '../utils/common';
|
|
19
|
+
import {useCustomization} from 'customization-implementation';
|
|
20
|
+
import {useChatUIControl} from '../components/chat-ui/useChatUIControl';
|
|
21
|
+
import {useRender, useUserName} from 'customization-api';
|
|
22
|
+
import ImageIcon from '../atoms/ImageIcon';
|
|
23
|
+
import ThemeConfig from '../theme';
|
|
24
|
+
import {BottomSheetTextInput} from '@gorhom/bottom-sheet';
|
|
25
|
+
|
|
26
|
+
export interface ChatSendButtonProps {
|
|
27
|
+
render?: (onPress: () => void) => JSX.Element;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export const ChatSendButton = (props: ChatSendButtonProps) => {
|
|
31
|
+
const {
|
|
32
|
+
selectedChatUserId: selectedUserId,
|
|
33
|
+
message,
|
|
34
|
+
setMessage,
|
|
35
|
+
inputActive,
|
|
36
|
+
} = useChatUIControl();
|
|
37
|
+
const {sendChatMessage} = useChatMessages();
|
|
38
|
+
const onPress = () => {
|
|
39
|
+
if (!selectedUserId) {
|
|
40
|
+
sendChatMessage(message);
|
|
41
|
+
setMessage && setMessage('');
|
|
42
|
+
} else {
|
|
43
|
+
sendChatMessage(message, selectedUserId);
|
|
44
|
+
setMessage && setMessage('');
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
return props?.render ? (
|
|
48
|
+
props.render(onPress)
|
|
49
|
+
) : (
|
|
50
|
+
<TouchableOpacity style={[style.chatInputButton]} onPress={onPress}>
|
|
51
|
+
<ImageIcon
|
|
52
|
+
iconType="plain"
|
|
53
|
+
tintColor={
|
|
54
|
+
inputActive
|
|
55
|
+
? $config.PRIMARY_ACTION_BRAND_COLOR
|
|
56
|
+
: $config.SEMANTIC_NEUTRAL
|
|
57
|
+
}
|
|
58
|
+
name={'send'}
|
|
59
|
+
/>
|
|
60
|
+
</TouchableOpacity>
|
|
61
|
+
);
|
|
62
|
+
};
|
|
63
|
+
export interface ChatTextInputProps {
|
|
64
|
+
render?: (
|
|
65
|
+
message: string,
|
|
66
|
+
onChangeText: (text: string) => void,
|
|
67
|
+
onSubmitEditing: () => void,
|
|
68
|
+
chatMessageInputPlaceholder: string,
|
|
69
|
+
) => JSX.Element;
|
|
70
|
+
}
|
|
71
|
+
export const ChatTextInput = (props: ChatTextInputProps) => {
|
|
72
|
+
let chatInputRef = useRef(null);
|
|
73
|
+
const {
|
|
74
|
+
selectedChatUserId: selectedUserId,
|
|
75
|
+
message,
|
|
76
|
+
setMessage,
|
|
77
|
+
inputActive,
|
|
78
|
+
privateActive,
|
|
79
|
+
} = useChatUIControl();
|
|
80
|
+
const {sendChatMessage} = useChatMessages();
|
|
81
|
+
const {renderList} = useRender();
|
|
82
|
+
//commented for v1 release
|
|
83
|
+
// const chatMessageInputPlaceholder = useString(
|
|
84
|
+
// 'chatMessageInputPlaceholder',
|
|
85
|
+
// )();
|
|
86
|
+
const [name] = useUserName();
|
|
87
|
+
const chatMessageInputPlaceholder = privateActive
|
|
88
|
+
? `Private Message to ${renderList[selectedUserId].name}`
|
|
89
|
+
: `Chat publicly as ${name}...`;
|
|
90
|
+
const onChangeText = (text: string) => setMessage(text);
|
|
91
|
+
const onSubmitEditing = () => {
|
|
92
|
+
if (!selectedUserId) {
|
|
93
|
+
sendChatMessage(message);
|
|
94
|
+
setMessage('');
|
|
95
|
+
} else {
|
|
96
|
+
sendChatMessage(message, selectedUserId);
|
|
97
|
+
setMessage('');
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
const {setInputActive} = useChatUIControl();
|
|
101
|
+
|
|
102
|
+
useEffect(() => {
|
|
103
|
+
setTimeout(() => {
|
|
104
|
+
if (isWebInternal()) {
|
|
105
|
+
chatInputRef?.current?.focus();
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
}, []);
|
|
109
|
+
|
|
110
|
+
return props?.render ? (
|
|
111
|
+
props.render(
|
|
112
|
+
message,
|
|
113
|
+
onChangeText,
|
|
114
|
+
onSubmitEditing,
|
|
115
|
+
chatMessageInputPlaceholder,
|
|
116
|
+
)
|
|
117
|
+
) : (
|
|
118
|
+
<BottomSheetTextInput
|
|
119
|
+
onFocus={() => setInputActive(true)}
|
|
120
|
+
onBlur={() => setInputActive(false)}
|
|
121
|
+
value={message}
|
|
122
|
+
onChangeText={onChangeText}
|
|
123
|
+
style={{
|
|
124
|
+
minHeight: 56,
|
|
125
|
+
borderRadius: 0,
|
|
126
|
+
borderBottomLeftRadius: 12,
|
|
127
|
+
borderWidth: 0,
|
|
128
|
+
color: $config.FONT_COLOR,
|
|
129
|
+
textAlign: 'left',
|
|
130
|
+
paddingVertical: 21,
|
|
131
|
+
paddingLeft: 20,
|
|
132
|
+
flex: 1,
|
|
133
|
+
alignSelf: 'center',
|
|
134
|
+
fontFamily: ThemeConfig.FontFamily.sansPro,
|
|
135
|
+
fontWeight: '400',
|
|
136
|
+
}}
|
|
137
|
+
blurOnSubmit={false}
|
|
138
|
+
onSubmitEditing={onSubmitEditing}
|
|
139
|
+
placeholder={chatMessageInputPlaceholder}
|
|
140
|
+
placeholderTextColor={
|
|
141
|
+
$config.FONT_COLOR + ThemeConfig.EmphasisPlus.disabled
|
|
142
|
+
}
|
|
143
|
+
autoCorrect={false}
|
|
144
|
+
/>
|
|
145
|
+
);
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Input component for the Chat interface
|
|
150
|
+
*/
|
|
151
|
+
const ChatInput = (props: {
|
|
152
|
+
chatInput?: React.ComponentType<ChatTextInputProps>;
|
|
153
|
+
chatSendButton?: React.ComponentType<ChatSendButtonProps>;
|
|
154
|
+
}) => {
|
|
155
|
+
const {primaryColor} = useContext(ColorContext);
|
|
156
|
+
const {ChatInputComponent, ChatSendButtonComponent} = useCustomization(
|
|
157
|
+
(data) => {
|
|
158
|
+
let components: {
|
|
159
|
+
ChatInputComponent: React.ComponentType<ChatTextInputProps>;
|
|
160
|
+
ChatSendButtonComponent: React.ComponentType<ChatSendButtonProps>;
|
|
161
|
+
} = {
|
|
162
|
+
ChatInputComponent: ChatTextInput,
|
|
163
|
+
ChatSendButtonComponent: ChatSendButton,
|
|
164
|
+
};
|
|
165
|
+
if (
|
|
166
|
+
data?.components?.videoCall &&
|
|
167
|
+
typeof data?.components?.videoCall === 'object'
|
|
168
|
+
) {
|
|
169
|
+
if (
|
|
170
|
+
data?.components?.videoCall?.chat &&
|
|
171
|
+
typeof data?.components?.videoCall?.chat === 'object'
|
|
172
|
+
) {
|
|
173
|
+
if (
|
|
174
|
+
data?.components?.videoCall?.chat?.chatInput &&
|
|
175
|
+
typeof data?.components?.videoCall?.chat?.chatInput !== 'object' &&
|
|
176
|
+
isValidReactComponent(data?.components?.videoCall?.chat?.chatInput)
|
|
177
|
+
) {
|
|
178
|
+
components.ChatInputComponent =
|
|
179
|
+
data?.components?.videoCall?.chat?.chatInput;
|
|
180
|
+
}
|
|
181
|
+
if (
|
|
182
|
+
data?.components?.videoCall?.chat?.chatSendButton &&
|
|
183
|
+
typeof data?.components?.videoCall?.chat?.chatSendButton !==
|
|
184
|
+
'object' &&
|
|
185
|
+
isValidReactComponent(
|
|
186
|
+
data?.components?.videoCall?.chat?.chatSendButton,
|
|
187
|
+
)
|
|
188
|
+
) {
|
|
189
|
+
components.ChatSendButtonComponent =
|
|
190
|
+
data?.components?.videoCall?.chat?.chatSendButton;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
} else {
|
|
194
|
+
if (props?.chatInput && isValidReactComponent(props.chatInput)) {
|
|
195
|
+
components.ChatInputComponent = props.chatInput;
|
|
196
|
+
}
|
|
197
|
+
if (
|
|
198
|
+
props?.chatSendButton &&
|
|
199
|
+
isValidReactComponent(props.chatSendButton)
|
|
200
|
+
) {
|
|
201
|
+
components.ChatSendButtonComponent = props.chatSendButton;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
return components;
|
|
205
|
+
},
|
|
206
|
+
);
|
|
207
|
+
|
|
208
|
+
const {inputActive} = useChatUIControl();
|
|
209
|
+
|
|
210
|
+
return (
|
|
211
|
+
<View style={[style.inputView, inputActive ? style.inputActiveView : {}]}>
|
|
212
|
+
<ChatInputComponent />
|
|
213
|
+
<ChatSendButtonComponent />
|
|
214
|
+
</View>
|
|
215
|
+
);
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
const style = StyleSheet.create({
|
|
219
|
+
inputActiveView: {
|
|
220
|
+
borderTopWidth: 1,
|
|
221
|
+
borderTopColor: $config.PRIMARY_ACTION_BRAND_COLOR,
|
|
222
|
+
},
|
|
223
|
+
inputView: {
|
|
224
|
+
flex: 1,
|
|
225
|
+
flexDirection: 'row',
|
|
226
|
+
backgroundColor: $config.CARD_LAYER_2_COLOR,
|
|
227
|
+
borderTopWidth: 1,
|
|
228
|
+
borderTopColor: 'transparent',
|
|
229
|
+
},
|
|
230
|
+
chatInputButton: {
|
|
231
|
+
flex: 0.1,
|
|
232
|
+
borderBottomRightRadius: 12,
|
|
233
|
+
alignSelf: 'center',
|
|
234
|
+
marginRight: 16,
|
|
235
|
+
},
|
|
236
|
+
});
|
|
237
|
+
export default ChatInput;
|