Merge branch 'develop' into luke/allow-guest-view-group
						commit
						55b5f2b249
					
				|  | @ -81,7 +81,7 @@ const ONBOARDING_FLOW_STARTERS = [ | |||
|     'view_user_settings', | ||||
|     'view_create_chat', | ||||
|     'view_create_room', | ||||
|     'view_my_groups', | ||||
|     'view_create_group', | ||||
| ]; | ||||
| 
 | ||||
| module.exports = React.createClass({ | ||||
|  | @ -500,6 +500,11 @@ module.exports = React.createClass({ | |||
|             case 'view_create_room': | ||||
|                 this._createRoom(); | ||||
|                 break; | ||||
|             case 'view_create_group': { | ||||
|                 const CreateGroupDialog = sdk.getComponent("dialogs.CreateGroupDialog"); | ||||
|                 Modal.createTrackedDialog('Create Community', '', CreateGroupDialog); | ||||
|             } | ||||
|             break; | ||||
|             case 'view_room_directory': | ||||
|                 this._setPage(PageTypes.RoomDirectory); | ||||
|                 this.notifyNewScreen('directory'); | ||||
|  |  | |||
|  | @ -18,9 +18,9 @@ import React from 'react'; | |||
| import GeminiScrollbar from 'react-gemini-scrollbar'; | ||||
| import sdk from '../../index'; | ||||
| import { _t } from '../../languageHandler'; | ||||
| import dis from '../../dispatcher'; | ||||
| import withMatrixClient from '../../wrappers/withMatrixClient'; | ||||
| import AccessibleButton from '../views/elements/AccessibleButton'; | ||||
| import Modal from '../../Modal'; | ||||
| 
 | ||||
| export default withMatrixClient(React.createClass({ | ||||
|     displayName: 'MyGroups', | ||||
|  | @ -41,14 +41,18 @@ export default withMatrixClient(React.createClass({ | |||
|     }, | ||||
| 
 | ||||
|     _onCreateGroupClick: function() { | ||||
|         const CreateGroupDialog = sdk.getComponent("dialogs.CreateGroupDialog"); | ||||
|         Modal.createTrackedDialog('Create Community', '', CreateGroupDialog); | ||||
|         dis.dispatch({action: 'view_create_group'}); | ||||
|     }, | ||||
| 
 | ||||
|     _fetch: function() { | ||||
|         this.props.matrixClient.getJoinedGroups().done((result) => { | ||||
|             this.setState({groups: result.groups, error: null}); | ||||
|         }, (err) => { | ||||
|             if (err.errcode === 'M_GUEST_ACCESS_FORBIDDEN') { | ||||
|                 // Indicate that the guest isn't in any groups (which should be true)
 | ||||
|                 this.setState({groups: [], error: null}); | ||||
|                 return; | ||||
|             } | ||||
|             this.setState({groups: null, error: err}); | ||||
|         }); | ||||
|     }, | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Luke Barnard
						Luke Barnard