mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
03733e6a0f
Wire in create room.
231 lines
7.1 KiB
JavaScript
231 lines
7.1 KiB
JavaScript
/*
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// should be atomised
|
|
var Loader = require("react-loader");
|
|
|
|
var MatrixClientPeg = require("../../MatrixClientPeg");
|
|
var RoomListSorter = require("../../RoomListSorter");
|
|
|
|
var dis = require("../../dispatcher");
|
|
|
|
var ComponentBroker = require('../../ComponentBroker');
|
|
|
|
var Notifier = ComponentBroker.get('organisms/Notifier');
|
|
|
|
module.exports = {
|
|
PageTypes: {
|
|
RoomView: "room_view",
|
|
UserSettings: "user_settings",
|
|
CreateRoom: "create_room",
|
|
},
|
|
|
|
AuxPanel: {
|
|
RoomSettings: "room_settings",
|
|
},
|
|
|
|
getInitialState: function() {
|
|
return {
|
|
logged_in: !!(MatrixClientPeg.get() && MatrixClientPeg.get().credentials),
|
|
ready: false,
|
|
page_type: this.PageTypes.RoomView,
|
|
aux_panel: null,
|
|
};
|
|
},
|
|
|
|
componentDidMount: function() {
|
|
this.dispatcherRef = dis.register(this.onAction);
|
|
if (this.state.logged_in) {
|
|
this.startMatrixClient();
|
|
}
|
|
this.focusComposer = false;
|
|
document.addEventListener("keydown", this.onKeyDown);
|
|
window.addEventListener("focus", this.onFocus);
|
|
if (this.state.logged_in) {
|
|
this.notifyNewScreen('');
|
|
} else {
|
|
this.notifyNewScreen('login');
|
|
}
|
|
},
|
|
|
|
componentWillUnmount: function() {
|
|
dis.unregister(this.dispatcherRef);
|
|
document.removeEventListener("keydown", this.onKeyDown);
|
|
},
|
|
|
|
componentDidUpdate: function() {
|
|
if (this.focusComposer) {
|
|
dis.dispatch({action: 'focus_composer'});
|
|
this.focusComposer = false;
|
|
}
|
|
},
|
|
|
|
onAction: function(payload) {
|
|
var roomIndexDelta = 1;
|
|
|
|
switch (payload.action) {
|
|
case 'logout':
|
|
this.replaceState({
|
|
logged_in: false,
|
|
ready: false
|
|
});
|
|
if (window.localStorage) {
|
|
window.localStorage.clear();
|
|
}
|
|
Notifier.stop();
|
|
MatrixClientPeg.get().removeAllListeners();
|
|
MatrixClientPeg.replace(null);
|
|
break;
|
|
case 'start_registration':
|
|
if (this.state.logged_in) return;
|
|
var newState = payload.params || {};
|
|
newState.screen = 'register';
|
|
if (
|
|
payload.params &&
|
|
payload.params.client_secret &&
|
|
payload.params.session_id &&
|
|
payload.params.hs_url &&
|
|
payload.params.is_url &&
|
|
payload.params.sid
|
|
) {
|
|
newState.register_client_secret = payload.params.client_secret;
|
|
newState.register_session_id = payload.params.session_id;
|
|
newState.register_hs_url = payload.params.hs_url;
|
|
newState.register_is_url = payload.params.is_url;
|
|
newState.register_id_sid = payload.params.sid;
|
|
}
|
|
this.replaceState(newState);
|
|
this.notifyNewScreen('register');
|
|
break;
|
|
case 'start_login':
|
|
if (this.state.logged_in) return;
|
|
this.replaceState({
|
|
screen: 'login'
|
|
});
|
|
this.notifyNewScreen('login');
|
|
break;
|
|
case 'view_room':
|
|
this.focusComposer = true;
|
|
this.setState({
|
|
currentRoom: payload.room_id,
|
|
page_type: this.PageTypes.RoomView,
|
|
});
|
|
break;
|
|
case 'view_prev_room':
|
|
roomIndexDelta = -1;
|
|
case 'view_next_room':
|
|
var allRooms = RoomListSorter.mostRecentActivityFirst(
|
|
MatrixClientPeg.get().getRooms()
|
|
);
|
|
var roomIndex = -1;
|
|
for (var i = 0; i < allRooms.length; ++i) {
|
|
if (allRooms[i].roomId == this.state.currentRoom) {
|
|
roomIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
roomIndex = (roomIndex + roomIndexDelta) % allRooms.length;
|
|
this.setState({
|
|
currentRoom: allRooms[roomIndex].roomId
|
|
});
|
|
break;
|
|
case 'view_user_settings':
|
|
this.setState({
|
|
page_type: this.PageTypes.UserSettings,
|
|
});
|
|
break;
|
|
case 'view_create_room':
|
|
this.setState({
|
|
page_type: this.PageTypes.CreateRoom,
|
|
});
|
|
break;
|
|
}
|
|
},
|
|
|
|
onLoggedIn: function() {
|
|
this.setState({
|
|
screen: undefined,
|
|
logged_in: true
|
|
});
|
|
this.startMatrixClient();
|
|
this.notifyNewScreen('');
|
|
},
|
|
|
|
startMatrixClient: function() {
|
|
var cli = MatrixClientPeg.get();
|
|
var that = this;
|
|
cli.on('syncComplete', function() {
|
|
var firstRoom = null;
|
|
if (cli.getRooms() && cli.getRooms().length) {
|
|
firstRoom = RoomListSorter.mostRecentActivityFirst(
|
|
cli.getRooms()
|
|
)[0].roomId;
|
|
}
|
|
that.setState({ready: true, currentRoom: firstRoom});
|
|
dis.dispatch({action: 'focus_composer'});
|
|
});
|
|
cli.on('Call.incoming', function(call) {
|
|
dis.dispatch({
|
|
action: 'incoming_call',
|
|
call: call
|
|
});
|
|
});
|
|
Notifier.start();
|
|
cli.startClient();
|
|
},
|
|
|
|
onKeyDown: function(ev) {
|
|
if (ev.altKey) {
|
|
switch (ev.keyCode) {
|
|
case 38:
|
|
dis.dispatch({action: 'view_prev_room'});
|
|
ev.stopPropagation();
|
|
break;
|
|
case 40:
|
|
dis.dispatch({action: 'view_next_room'});
|
|
ev.stopPropagation();
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
|
|
onFocus: function(ev) {
|
|
dis.dispatch({action: 'focus_composer'});
|
|
},
|
|
|
|
showScreen: function(screen, params) {
|
|
if (screen == 'register') {
|
|
dis.dispatch({
|
|
action: 'start_registration',
|
|
params: params
|
|
});
|
|
} else if (screen == 'login') {
|
|
dis.dispatch({
|
|
action: 'start_login',
|
|
params: params
|
|
});
|
|
}
|
|
},
|
|
|
|
notifyNewScreen: function(screen) {
|
|
if (this.props.onNewScreen) {
|
|
this.props.onNewScreen(screen);
|
|
}
|
|
}
|
|
};
|