mirror of https://github.com/vector-im/riot-web
Merge pull request #1666 from matrix-org/luke/fix-duplicate-group-profile-requests
Dedupe requests to fetch group profile datapull/21833/head
commit
5abf0440c6
|
@ -39,6 +39,9 @@ class FlairStore {
|
||||||
// avatar_url: 'mxc://...'
|
// avatar_url: 'mxc://...'
|
||||||
// }
|
// }
|
||||||
};
|
};
|
||||||
|
this._groupProfilesPromise = {
|
||||||
|
// $groupId: Promise
|
||||||
|
};
|
||||||
this._usersPending = {
|
this._usersPending = {
|
||||||
// $userId: {
|
// $userId: {
|
||||||
// prom: Promise
|
// prom: Promise
|
||||||
|
@ -149,13 +152,29 @@ class FlairStore {
|
||||||
return this._groupProfiles[groupId];
|
return this._groupProfiles[groupId];
|
||||||
}
|
}
|
||||||
|
|
||||||
const profile = await matrixClient.getGroupProfile(groupId);
|
// No request yet, start one
|
||||||
|
if (!this._groupProfilesPromise[groupId]) {
|
||||||
|
this._groupProfilesPromise[groupId] = matrixClient.getGroupProfile(groupId);
|
||||||
|
}
|
||||||
|
|
||||||
|
let profile;
|
||||||
|
try {
|
||||||
|
profile = await this._groupProfilesPromise[groupId];
|
||||||
|
} catch (e) {
|
||||||
|
console.log('Failed to get group profile for ' + groupId, e);
|
||||||
|
// Don't retry, but allow a retry when the profile is next requested
|
||||||
|
delete this._groupProfilesPromise[groupId];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this._groupProfiles[groupId] = {
|
this._groupProfiles[groupId] = {
|
||||||
groupId,
|
groupId,
|
||||||
avatarUrl: profile.avatar_url,
|
avatarUrl: profile.avatar_url,
|
||||||
name: profile.name,
|
name: profile.name,
|
||||||
shortDescription: profile.short_description,
|
shortDescription: profile.short_description,
|
||||||
};
|
};
|
||||||
|
delete this._groupProfilesPromise[groupId];
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
delete this._groupProfiles[groupId];
|
delete this._groupProfiles[groupId];
|
||||||
}, GROUP_PROFILES_CACHE_BUST_MS);
|
}, GROUP_PROFILES_CACHE_BUST_MS);
|
||||||
|
|
Loading…
Reference in New Issue