agora-appbuilder-core 4.0.30-beta-3 → 4.0.30-beta-4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.0.30-beta-3",
3
+ "version": "4.0.30-beta-4",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -76,8 +76,8 @@ const DefaultConfig = {
76
76
  CHAT_ORG_NAME: '',
77
77
  CHAT_APP_NAME: '',
78
78
  CHAT_URL: '',
79
- CLI_VERSION: '3.0.30-beta-3',
80
- CORE_VERSION: '4.0.30-beta-3',
79
+ CLI_VERSION: '3.0.30-beta-4',
80
+ CORE_VERSION: '4.0.30-beta-4',
81
81
  DISABLE_LANDSCAPE_MODE: false,
82
82
  STT_AUTO_START: false,
83
83
  CLOUD_RECORDING_AUTO_START: false,
@@ -65,34 +65,34 @@ export const MeetingInfoLinks = (props?: MeetingInfoBodyProps) => {
65
65
 
66
66
  return (
67
67
  <>
68
- {isSeparateHostLink ? (
68
+ {isHost ? (
69
69
  <>
70
70
  <MeetingLink
71
71
  styleProps={{
72
72
  size,
73
73
  variant,
74
74
  }}
75
- label={getAttendeeLabel()}
76
- link={getShareLink(SHARE_LINK_CONTENT_TYPE.ATTENDEE)}
77
- linkToCopy={SHARE_LINK_CONTENT_TYPE.ATTENDEE}
78
- helperText={showHelperText ? shareRoomAttendeeLinkSubTextLocal : ''}
75
+ label={getHostLabel()}
76
+ link={getShareLink(SHARE_LINK_CONTENT_TYPE.HOST)}
77
+ linkToCopy={SHARE_LINK_CONTENT_TYPE.HOST}
78
+ helperText={showHelperText ? shareRoomHostLinkSubTextLocal : ''}
79
79
  gutterBottom
80
80
  />
81
81
  </>
82
82
  ) : (
83
83
  <></>
84
84
  )}
85
- {isHost ? (
85
+ {isSeparateHostLink ? (
86
86
  <>
87
87
  <MeetingLink
88
88
  styleProps={{
89
89
  size,
90
90
  variant,
91
91
  }}
92
- label={getHostLabel()}
93
- link={getShareLink(SHARE_LINK_CONTENT_TYPE.HOST)}
94
- linkToCopy={SHARE_LINK_CONTENT_TYPE.HOST}
95
- helperText={showHelperText ? shareRoomHostLinkSubTextLocal : ''}
92
+ label={getAttendeeLabel()}
93
+ link={getShareLink(SHARE_LINK_CONTENT_TYPE.ATTENDEE)}
94
+ linkToCopy={SHARE_LINK_CONTENT_TYPE.ATTENDEE}
95
+ helperText={showHelperText ? shareRoomAttendeeLinkSubTextLocal : ''}
96
96
  gutterBottom
97
97
  />
98
98
  </>
@@ -61,7 +61,7 @@ export const ShareLinkScreenLabels: I18nShareLinkScreenLabelsInterface = {
61
61
  if (isHost) {
62
62
  if (isSeparateHostLink) {
63
63
  //seperate link for host and attendee
64
- inviteContent += `Room: ${meetingName}\n\nAttendee Link:\n${url?.attendee}\n\nHost Link:\n${url?.host}`;
64
+ inviteContent += `Room: ${meetingName}\n\nHost Link:\n${url?.host}\n\nAttendee Link:\n${url?.attendee}`;
65
65
  } else {
66
66
  //single link for everyone
67
67
  inviteContent += `Room: ${meetingName}\n\nMeeting Link:\n${url?.host}`;
@@ -74,7 +74,7 @@ export const ShareLinkScreenLabels: I18nShareLinkScreenLabelsInterface = {
74
74
  } else {
75
75
  if (isHost) {
76
76
  if (isSeparateHostLink) {
77
- inviteContent += `Room: ${meetingName}\n\nAttendee Room ID:\n${id?.attendee}\n\nHost Room ID:\n${id?.host}`;
77
+ inviteContent += `Room: ${meetingName}\n\nHost Room ID:\n${id?.host}\n\nAttendee Room ID:\n${id?.attendee}`;
78
78
  } else {
79
79
  inviteContent += `Room: ${meetingName}\n\nRoom ID:\n${id?.host}`;
80
80
  }
@@ -310,7 +310,8 @@ const ActionSheet = props => {
310
310
  }}
311
311
  />
312
312
  }
313
- blocking={false}>
313
+ blocking={false}
314
+ scrollLocking={false}>
314
315
  <CustomSidePanelView
315
316
  showHeader={false}
316
317
  content={sidePanelArray[customSidePanelIndex]?.component}