feat(branding) allow invite links to be branded

This commit is contained in:
Tudor-Ovidiu Avram 2020-08-20 10:25:12 +03:00 committed by Hristo Terezov
parent 6453ceb048
commit 8a4fb72eae
5 changed files with 22 additions and 3 deletions

View File

@ -626,6 +626,13 @@ var config = {
tokenAuthUrl
*/
/**
* This property can be used to alter the generated meeting invite links (in combination with a branding domain
* which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
* can become https://brandedDomain/roomAlias)
*/
// brandingRoomAlias: null,
// List of undocumented settings used in lib-jitsi-meet
/**
_peerConnStatusOutOfLastNTimeout

View File

@ -69,6 +69,7 @@ export default [
'channelLastN',
'constraints',
'brandingRoomAlias',
'debug',
'debugAudioLevels',
'defaultLanguage',

View File

@ -54,7 +54,17 @@ export function getInviteURL(stateOrGetState: Function | Object): string {
throw new Error('Can not get invite URL - the app is not ready');
}
return getURLWithoutParams(locationURL).href;
const { inviteDomain } = state['features/dynamic-branding'];
const urlWithoutParams = getURLWithoutParams(locationURL);
if (inviteDomain) {
const meetingId
= state['features/base/config'].brandingRoomAlias || urlWithoutParams.pathname;
return `${inviteDomain}/${meetingId}`;
}
return urlWithoutParams.href;
}
/**

View File

@ -53,7 +53,6 @@ function setDynamicBrandingData(value) {
};
}
/**
* Action used to signal the branding elements are ready to be displayed.
*

View File

@ -14,6 +14,7 @@ const DEFAULT_STATE = {
backgroundColor: '',
backgroundImageUrl: '',
customizationReady: false,
inviteDomain: '',
logoClickUrl: '',
logoImageUrl: ''
};
@ -24,11 +25,12 @@ const DEFAULT_STATE = {
ReducerRegistry.register(STORE_NAME, (state = DEFAULT_STATE, action) => {
switch (action.type) {
case SET_DYNAMIC_BRANDING_DATA: {
const { backgroundColor, backgroundImageUrl, logoClickUrl, logoImageUrl } = action.value;
const { backgroundColor, backgroundImageUrl, inviteDomain, logoClickUrl, logoImageUrl } = action.value;
return {
backgroundColor,
backgroundImageUrl,
inviteDomain,
logoClickUrl,
logoImageUrl,
customizationReady: true