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
|
@@ -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-
|
|
80
|
-
CORE_VERSION: '4.0.30-beta-
|
|
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
|
-
{
|
|
68
|
+
{isHost ? (
|
|
69
69
|
<>
|
|
70
70
|
<MeetingLink
|
|
71
71
|
styleProps={{
|
|
72
72
|
size,
|
|
73
73
|
variant,
|
|
74
74
|
}}
|
|
75
|
-
label={
|
|
76
|
-
link={getShareLink(SHARE_LINK_CONTENT_TYPE.
|
|
77
|
-
linkToCopy={SHARE_LINK_CONTENT_TYPE.
|
|
78
|
-
helperText={showHelperText ?
|
|
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
|
-
{
|
|
85
|
+
{isSeparateHostLink ? (
|
|
86
86
|
<>
|
|
87
87
|
<MeetingLink
|
|
88
88
|
styleProps={{
|
|
89
89
|
size,
|
|
90
90
|
variant,
|
|
91
91
|
}}
|
|
92
|
-
label={
|
|
93
|
-
link={getShareLink(SHARE_LINK_CONTENT_TYPE.
|
|
94
|
-
linkToCopy={SHARE_LINK_CONTENT_TYPE.
|
|
95
|
-
helperText={showHelperText ?
|
|
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\
|
|
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\
|
|
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
|
}
|