wire up view_group_grid action from community context menu to new view

This commit is contained in:
Bruno Windels 2018-11-07 16:34:10 +01:00
parent d4748c91df
commit 399d3c5c24
4 changed files with 34 additions and 1 deletions

View file

@ -627,6 +627,9 @@ export default React.createClass({
case 'view_group':
this._viewGroup(payload);
break;
case 'view_group_grid':
this._viewGroupGrid(payload);
break;
case 'view_home_page':
this._viewHome();
break;
@ -834,6 +837,8 @@ export default React.createClass({
// room name and avatar from an invite email)
_viewRoom: function(roomInfo) {
this.focusComposer = true;
console.log("!!! MatrixChat._viewRoom", roomInfo);
console.trace();
const newState = {
currentRoomId: roomInfo.room_id || null,
@ -898,6 +903,11 @@ export default React.createClass({
this.notifyNewScreen('group/' + groupId);
},
_viewGroupGrid: function(payload) {
this._setPage(PageTypes.GroupGridView);
// this.notifyNewScreen('grid/' + payload.group_id);
},
_viewHome: function() {
this._setPage(PageTypes.HomePage);
this.notifyNewScreen('home');