mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-03 20:36:57 +03:00
getGroupStore no longer needs a matrix client
This commit is contained in:
parent
5f4d011606
commit
bbdafeff77
1 changed files with 3 additions and 5 deletions
|
@ -127,7 +127,7 @@ module.exports = React.createClass({
|
||||||
return {
|
return {
|
||||||
phase: this.props.groupId ? this.Phase.GroupMemberList : this.Phase.RoomMemberList,
|
phase: this.props.groupId ? this.Phase.GroupMemberList : this.Phase.RoomMemberList,
|
||||||
isUserPrivilegedInGroup: null,
|
isUserPrivilegedInGroup: null,
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillReceiveProps(newProps) {
|
componentWillReceiveProps(newProps) {
|
||||||
|
@ -139,9 +139,7 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
_initGroupStore(groupId) {
|
_initGroupStore(groupId) {
|
||||||
if (!groupId) return;
|
if (!groupId) return;
|
||||||
this._groupStore = GroupStoreCache.getGroupStore(
|
this._groupStore = GroupStoreCache.getGroupStore(groupId);
|
||||||
this.context.matrixClient, groupId,
|
|
||||||
);
|
|
||||||
this._groupStore.registerListener(this.onGroupStoreUpdated);
|
this._groupStore.registerListener(this.onGroupStoreUpdated);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -151,7 +149,7 @@ module.exports = React.createClass({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onGroupStoreUpdated: function(){
|
onGroupStoreUpdated: function() {
|
||||||
this.setState({
|
this.setState({
|
||||||
isUserPrivilegedInGroup: this._groupStore.isUserPrivileged(),
|
isUserPrivilegedInGroup: this._groupStore.isUserPrivileged(),
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue