Skip to content

Commit

Permalink
fix(external-api) fix error if setting some options too early
Browse files Browse the repository at this point in the history
Specifically: display-name, email and avatar. These are the most common
ones, and the ones currently used by Spot for example.
  • Loading branch information
saghul committed Jun 29, 2022
1 parent 730d42c commit ee26616
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 59 deletions.
60 changes: 2 additions & 58 deletions conference.js
Original file line number Diff line number Diff line change
Expand Up @@ -3094,34 +3094,12 @@ export default {
* @param email {string} the new email
*/
changeLocalEmail(email = '') {
const localParticipant = getLocalParticipant(APP.store.getState());

const formattedEmail = String(email).trim();

if (formattedEmail === localParticipant.email) {
return;
}

const localId = localParticipant.id;

APP.store.dispatch(participantUpdated({
// XXX Only the local participant is allowed to update without
// stating the JitsiConference instance (i.e. participant property
// `conference` for a remote participant) because the local
// participant is uniquely identified by the very fact that there is
// only one local participant.

id: localId,
local: true,
email: formattedEmail
}));

APP.store.dispatch(updateSettings({
email: formattedEmail
}));
APP.API.notifyEmailChanged(localId, {
email: formattedEmail
});

sendData(commands.EMAIL, formattedEmail);
},

Expand All @@ -3130,29 +3108,12 @@ export default {
* @param url {string} the new url
*/
changeLocalAvatarUrl(url = '') {
const { avatarURL, id } = getLocalParticipant(APP.store.getState());

const formattedUrl = String(url).trim();

if (formattedUrl === avatarURL) {
return;
}

APP.store.dispatch(participantUpdated({
// XXX Only the local participant is allowed to update without
// stating the JitsiConference instance (i.e. participant property
// `conference` for a remote participant) because the local
// participant is uniquely identified by the very fact that there is
// only one local participant.

id,
local: true,
avatarURL: formattedUrl
}));

APP.store.dispatch(updateSettings({
avatarURL: formattedUrl
}));

sendData(commands.AVATAR_URL, url);
},

Expand Down Expand Up @@ -3193,23 +3154,6 @@ export default {
*/
changeLocalDisplayName(nickname = '') {
const formattedNickname = getNormalizedDisplayName(nickname);
const { id, name } = getLocalParticipant(APP.store.getState());

if (formattedNickname === name) {
return;
}

APP.store.dispatch(participantUpdated({
// XXX Only the local participant is allowed to update without
// stating the JitsiConference instance (i.e. participant property
// `conference` for a remote participant) because the local
// participant is uniquely identified by the very fact that there is
// only one local participant.

id,
local: true,
name: formattedNickname
}));

APP.store.dispatch(updateSettings({
displayName: formattedNickname
Expand Down
19 changes: 18 additions & 1 deletion react/features/external-api/subscriber.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ StateListenerRegistry.register(
const localParticipant = getLocalParticipant(store.getState());
const { defaultLocalDisplayName } = store.getState()['features/base/config'];

// Initial setting of the display name occurs happens on app
// Initial setting of the display name happens on app
// initialization, before the local participant is ready. The initial
// settings is not desired to be fired anyways, only changes.
if (localParticipant) {
Expand All @@ -39,6 +39,23 @@ StateListenerRegistry.register(
}
});

StateListenerRegistry.register(
/* selector */ state => state['features/base/settings'].email,
/* listener */ (email, store) => {
const localParticipant = getLocalParticipant(store.getState());

// Initial setting of the email happens on app
// initialization, before the local participant is ready. The initial
// settings is not desired to be fired anyways, only changes.
if (localParticipant) {
const { id } = localParticipant;

APP.API.notifyEmailChanged(id, {
email
});
}
});

/**
* Updates the on stage participant value.
*/
Expand Down

0 comments on commit ee26616

Please sign in to comment.