2015-06-23 11:41:25 -04:00
|
|
|
/*
|
|
|
|
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';
|
|
|
|
|
2015-06-19 07:53:48 -04:00
|
|
|
var React = require('react');
|
|
|
|
|
2015-06-23 09:40:50 -04:00
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
2015-06-22 09:48:58 -04:00
|
|
|
|
2015-06-23 09:40:50 -04:00
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
2015-07-21 06:26:08 -04:00
|
|
|
var Modal = require("../../../../src/Modal");
|
2015-06-24 08:28:44 -04:00
|
|
|
var classNames = require("classnames");
|
2015-07-19 22:02:04 -04:00
|
|
|
var filesize = require('filesize');
|
2015-07-21 06:02:36 -04:00
|
|
|
var q = require('q');
|
2015-06-19 07:53:48 -04:00
|
|
|
|
|
|
|
var MessageTile = ComponentBroker.get('molecules/MessageTile');
|
|
|
|
var RoomHeader = ComponentBroker.get('molecules/RoomHeader');
|
|
|
|
var MessageComposer = ComponentBroker.get('molecules/MessageComposer');
|
2015-07-15 11:52:23 -04:00
|
|
|
var CallView = ComponentBroker.get("molecules/voip/CallView");
|
2015-07-20 10:07:51 -04:00
|
|
|
var RoomSettings = ComponentBroker.get("molecules/RoomSettings");
|
2015-07-21 06:26:08 -04:00
|
|
|
var ErrorDialog = ComponentBroker.get("organisms/ErrorDialog");
|
2015-06-19 07:53:48 -04:00
|
|
|
|
2015-06-23 09:40:50 -04:00
|
|
|
var RoomViewController = require("../../../../src/controllers/organisms/RoomView");
|
2015-06-19 07:53:48 -04:00
|
|
|
|
2015-06-22 09:48:58 -04:00
|
|
|
var Loader = require("react-loader");
|
|
|
|
|
2015-06-19 07:53:48 -04:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-06-19 11:21:09 -04:00
|
|
|
displayName: 'RoomView',
|
2015-06-19 07:53:48 -04:00
|
|
|
mixins: [RoomViewController],
|
|
|
|
|
2015-07-20 10:07:51 -04:00
|
|
|
onSettingsClick: function() {
|
|
|
|
this.setState({editingRoomSettings: true});
|
|
|
|
},
|
|
|
|
|
|
|
|
onSaveClick: function() {
|
2015-07-21 06:02:36 -04:00
|
|
|
this.setState({
|
|
|
|
editingRoomSettings: false,
|
|
|
|
uploadingRoomSettings: true,
|
|
|
|
});
|
2015-07-20 10:07:51 -04:00
|
|
|
|
|
|
|
var new_name = this.refs.header.getRoomName();
|
|
|
|
var new_topic = this.refs.room_settings.getTopic();
|
|
|
|
var new_join_rule = this.refs.room_settings.getJoinRules();
|
|
|
|
var new_history_visibility = this.refs.room_settings.getHistoryVisibility();
|
2015-07-20 12:31:40 -04:00
|
|
|
var new_power_levels = this.refs.room_settings.getPowerLevels();
|
2015-07-20 10:07:51 -04:00
|
|
|
|
|
|
|
var old_name = this.state.room.name;
|
|
|
|
|
|
|
|
var old_topic = this.state.room.currentState.getStateEvents('m.room.topic', '');
|
|
|
|
if (old_topic) {
|
|
|
|
old_topic = old_topic.getContent().topic;
|
|
|
|
} else {
|
|
|
|
old_topic = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
var old_join_rule = this.state.room.currentState.getStateEvents('m.room.join_rules', '');
|
|
|
|
if (old_join_rule) {
|
|
|
|
old_join_rule = old_join_rule.getContent().join_rule;
|
|
|
|
} else {
|
|
|
|
old_join_rule = "invite";
|
|
|
|
}
|
|
|
|
|
|
|
|
var old_history_visibility = this.state.room.currentState.getStateEvents('m.room.history_visibility', '');
|
|
|
|
if (old_history_visibility) {
|
|
|
|
old_history_visibility = old_history_visibility.getContent().history_visibility;
|
|
|
|
} else {
|
|
|
|
old_history_visibility = "shared";
|
|
|
|
}
|
|
|
|
|
2015-07-21 06:02:36 -04:00
|
|
|
var deferreds = [];
|
2015-07-20 10:07:51 -04:00
|
|
|
|
2015-07-21 09:46:42 -04:00
|
|
|
if (old_name != new_name && new_name != undefined && new_name) {
|
2015-07-21 06:02:36 -04:00
|
|
|
deferreds.push(
|
|
|
|
MatrixClientPeg.get().setRoomName(this.state.room.roomId, new_name)
|
|
|
|
);
|
2015-07-20 10:07:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (old_topic != new_topic && new_topic != undefined) {
|
2015-07-21 06:02:36 -04:00
|
|
|
deferreds.push(
|
|
|
|
MatrixClientPeg.get().setRoomTopic(this.state.room.roomId, new_topic)
|
|
|
|
);
|
2015-07-20 10:07:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (old_join_rule != new_join_rule && new_join_rule != undefined) {
|
2015-07-21 06:02:36 -04:00
|
|
|
deferreds.push(
|
|
|
|
MatrixClientPeg.get().sendStateEvent(
|
|
|
|
this.state.room.roomId, "m.room.join_rules", {
|
|
|
|
join_rule: new_join_rule,
|
|
|
|
}, ""
|
|
|
|
)
|
2015-07-20 10:07:51 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (old_history_visibility != new_history_visibility && new_history_visibility != undefined) {
|
2015-07-21 06:02:36 -04:00
|
|
|
deferreds.push(
|
|
|
|
MatrixClientPeg.get().sendStateEvent(
|
|
|
|
this.state.room.roomId, "m.room.history_visibility", {
|
|
|
|
history_visibility: new_history_visibility,
|
|
|
|
}, ""
|
|
|
|
)
|
2015-07-20 10:07:51 -04:00
|
|
|
);
|
|
|
|
}
|
2015-07-20 12:31:40 -04:00
|
|
|
|
|
|
|
if (new_power_levels) {
|
2015-07-21 06:02:36 -04:00
|
|
|
deferreds.push(
|
|
|
|
MatrixClientPeg.get().sendStateEvent(
|
|
|
|
this.state.room.roomId, "m.room.power_levels", new_power_levels, ""
|
|
|
|
)
|
2015-07-20 12:31:40 -04:00
|
|
|
);
|
|
|
|
}
|
2015-07-21 06:02:36 -04:00
|
|
|
|
|
|
|
if (deferreds.length) {
|
|
|
|
var self = this;
|
|
|
|
q.all(deferreds).fail(function(err) {
|
2015-07-21 06:26:08 -04:00
|
|
|
Modal.createDialog(ErrorDialog, {
|
|
|
|
title: "Failed to set state",
|
|
|
|
description: err.toString()
|
|
|
|
});
|
2015-07-21 06:02:36 -04:00
|
|
|
}).finally(function() {
|
|
|
|
self.setState({
|
|
|
|
uploadingRoomSettings: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.setState({
|
|
|
|
editingRoomSettings: false,
|
|
|
|
uploadingRoomSettings: false,
|
|
|
|
});
|
|
|
|
}
|
2015-07-20 10:07:51 -04:00
|
|
|
},
|
|
|
|
|
2015-06-19 07:53:48 -04:00
|
|
|
render: function() {
|
2015-07-14 13:46:15 -04:00
|
|
|
if (!this.state.room) {
|
|
|
|
return (
|
|
|
|
<div />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-06-22 09:48:58 -04:00
|
|
|
var myUserId = MatrixClientPeg.get().credentials.userId;
|
|
|
|
if (this.state.room.currentState.members[myUserId].membership == 'invite') {
|
|
|
|
if (this.state.joining) {
|
|
|
|
return (
|
|
|
|
<div className="mx_RoomView">
|
|
|
|
<Loader />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
var inviteEvent = this.state.room.currentState.members[myUserId].events.member.event;
|
|
|
|
// XXX: Leaving this intentionally basic for now because invites are about to change totally
|
|
|
|
var joinErrorText = this.state.joinError ? "Failed to join room!" : "";
|
|
|
|
return (
|
|
|
|
<div className="mx_RoomView">
|
|
|
|
<div className="mx_RoomView_invitePrompt">
|
|
|
|
<div>{inviteEvent.user_id} has invited you to a room</div>
|
|
|
|
<button ref="joinButton" onClick={this.onJoinButtonClicked}>Join</button>
|
|
|
|
<div className="error">{joinErrorText}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
2015-06-24 08:28:44 -04:00
|
|
|
var scrollheader_classes = classNames({
|
|
|
|
mx_RoomView_scrollheader: true,
|
|
|
|
loading: this.state.paginating
|
|
|
|
});
|
2015-07-19 11:38:56 -04:00
|
|
|
|
|
|
|
var statusBar = (
|
|
|
|
<div />
|
|
|
|
);
|
|
|
|
|
2015-07-19 22:02:04 -04:00
|
|
|
if (this.state.upload) {
|
|
|
|
var innerProgressStyle = {
|
|
|
|
width: ((this.state.upload.uploadedBytes / this.state.upload.totalBytes) * 100) + '%'
|
|
|
|
};
|
2015-07-19 11:38:56 -04:00
|
|
|
statusBar = (
|
2015-07-19 22:02:04 -04:00
|
|
|
<div className="mx_RoomView_uploadBar">
|
|
|
|
<span className="mx_RoomView_uploadFilename">Uploading {this.state.upload.fileName}</span>
|
|
|
|
<span className="mx_RoomView_uploadBytes">
|
|
|
|
{filesize(this.state.upload.uploadedBytes)} / {filesize(this.state.upload.totalBytes)}
|
|
|
|
</span>
|
|
|
|
<div className="mx_RoomView_uploadProgressOuter">
|
|
|
|
<div className="mx_RoomView_uploadProgressInner" style={innerProgressStyle}></div>
|
|
|
|
</div>
|
2015-07-19 11:38:56 -04:00
|
|
|
</div>
|
|
|
|
);
|
2015-07-19 22:02:04 -04:00
|
|
|
} else {
|
|
|
|
var typingString = this.getWhoIsTypingString();
|
|
|
|
if (typingString) {
|
|
|
|
statusBar = (
|
|
|
|
<div className="mx_RoomView_typingBar">
|
2015-07-20 15:09:24 -04:00
|
|
|
<img src="img/typing.png" width="40" height="40" alt=""/>
|
2015-07-19 22:02:04 -04:00
|
|
|
{typingString}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2015-07-19 11:38:56 -04:00
|
|
|
}
|
|
|
|
|
2015-07-20 10:07:51 -04:00
|
|
|
var roomEdit = null;
|
|
|
|
|
|
|
|
if (this.state.editingRoomSettings) {
|
|
|
|
roomEdit = <RoomSettings ref="room_settings" room={this.state.room} />;
|
|
|
|
}
|
|
|
|
|
2015-07-21 06:02:36 -04:00
|
|
|
if (this.state.uploadingRoomSettings) {
|
|
|
|
roomEdit = <Loader/>;
|
|
|
|
}
|
|
|
|
|
2015-06-22 09:48:58 -04:00
|
|
|
return (
|
|
|
|
<div className="mx_RoomView">
|
2015-07-20 10:07:51 -04:00
|
|
|
<RoomHeader ref="header" room={this.state.room} editing={this.state.editingRoomSettings}
|
|
|
|
onSettingsClick={this.onSettingsClick} onSaveClick={this.onSaveClick}/>
|
2015-07-15 08:34:11 -04:00
|
|
|
<div className="mx_RoomView_auxPanel">
|
2015-07-15 11:52:23 -04:00
|
|
|
<CallView room={this.state.room}/>
|
2015-07-20 10:07:51 -04:00
|
|
|
{ roomEdit }
|
2015-07-15 08:34:11 -04:00
|
|
|
</div>
|
2015-07-20 11:24:38 -04:00
|
|
|
<div ref="messageWrapper" className="mx_RoomView_messagePanel" onScroll={ this.onMessageListScroll }>
|
2015-07-12 20:51:24 -04:00
|
|
|
<div className="mx_RoomView_messageListWrapper">
|
|
|
|
<div className="mx_RoomView_MessageList" aria-live="polite">
|
|
|
|
<div className={scrollheader_classes}>
|
2015-07-06 21:10:10 -04:00
|
|
|
</div>
|
2015-07-12 20:51:24 -04:00
|
|
|
{this.getEventTiles()}
|
2015-07-06 21:10:10 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-06-22 09:48:58 -04:00
|
|
|
</div>
|
2015-07-17 20:21:56 -04:00
|
|
|
<div className="mx_RoomView_statusArea">
|
|
|
|
<div className="mx_RoomView_statusAreaBox">
|
2015-07-19 11:38:56 -04:00
|
|
|
{statusBar}
|
2015-07-17 20:21:56 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-19 22:02:04 -04:00
|
|
|
<MessageComposer room={this.state.room} uploadFile={this.uploadFile} />
|
2015-06-22 06:42:09 -04:00
|
|
|
</div>
|
2015-06-22 09:48:58 -04:00
|
|
|
);
|
|
|
|
}
|
2015-06-19 07:53:48 -04:00
|
|
|
},
|
|
|
|
});
|