2015-06-23 17:41:25 +02: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-09 18:40:42 +02:00
|
|
|
var React = require('react');
|
2015-07-16 18:42:33 +02:00
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
2015-06-09 18:40:42 +02:00
|
|
|
|
2015-07-15 05:16:38 +02:00
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
2015-06-23 15:40:50 +02:00
|
|
|
var RoomHeaderController = require("../../../../src/controllers/molecules/RoomHeader");
|
2015-07-16 18:42:33 +02:00
|
|
|
var EditableText = ComponentBroker.get("atoms/EditableText");
|
2015-06-19 13:53:48 +02:00
|
|
|
|
2015-06-09 18:40:42 +02:00
|
|
|
module.exports = React.createClass({
|
2015-06-19 17:21:09 +02:00
|
|
|
displayName: 'RoomHeader',
|
2015-06-19 13:53:48 +02:00
|
|
|
mixins: [RoomHeaderController],
|
|
|
|
|
2015-07-16 18:42:33 +02:00
|
|
|
onNameChange: function(new_name) {
|
2015-07-21 15:46:42 +02:00
|
|
|
if (this.props.room.name != new_name && new_name) {
|
2015-07-20 11:23:07 +02:00
|
|
|
MatrixClientPeg.get().setRoomName(this.props.room.roomId, new_name);
|
|
|
|
}
|
2015-07-16 18:42:33 +02:00
|
|
|
},
|
|
|
|
|
2015-07-20 16:07:51 +02:00
|
|
|
getRoomName: function() {
|
|
|
|
return this.refs.name_edit.getDOMNode().value;
|
|
|
|
},
|
|
|
|
|
2015-06-09 18:40:42 +02:00
|
|
|
render: function() {
|
2015-07-15 05:16:38 +02:00
|
|
|
|
2015-07-21 05:11:24 +02:00
|
|
|
var header;
|
|
|
|
if (this.props.simpleHeader) {
|
|
|
|
header =
|
|
|
|
<div className="mx_RoomHeader_wrapper">
|
|
|
|
<div className="mx_RoomHeader_simpleHeader">
|
|
|
|
{ this.props.simpleHeader }
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
var topic = this.props.room.currentState.getStateEvents('m.room.topic', '');
|
2015-07-15 05:16:38 +02:00
|
|
|
|
2015-07-21 05:11:24 +02:00
|
|
|
var callButtons;
|
|
|
|
if (this.state) {
|
|
|
|
switch (this.state.call_state) {
|
|
|
|
case "ringback":
|
|
|
|
case "connected":
|
|
|
|
callButtons = (
|
2015-07-22 08:19:24 +02:00
|
|
|
<div className="mx_RoomHeader_textButton" onClick={this.onHangupClick}>
|
2015-07-21 05:11:24 +02:00
|
|
|
End call
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
2015-07-15 18:36:47 +02:00
|
|
|
}
|
|
|
|
|
2015-07-21 11:39:46 +02:00
|
|
|
var name = null;
|
|
|
|
var topic_el = null;
|
|
|
|
var save_button = null;
|
|
|
|
var settings_button = null;
|
2015-07-21 15:46:42 +02:00
|
|
|
var actual_name = this.props.room.currentState.getStateEvents('m.room.name', '');
|
|
|
|
if (actual_name) actual_name = actual_name.getContent().name;
|
2015-07-21 11:39:46 +02:00
|
|
|
if (this.props.editing) {
|
2015-07-22 08:19:24 +02:00
|
|
|
name =
|
|
|
|
<div className="mx_RoomHeader_nameEditing">
|
|
|
|
<input className="mx_RoomHeader_nameInput" type="text" defaultValue={actual_name} placeholder="Name" ref="name_edit"/>
|
2015-07-21 11:39:46 +02:00
|
|
|
</div>
|
2015-07-22 08:19:24 +02:00
|
|
|
// if (topic) topic_el = <div className="mx_RoomHeader_topic"><textarea>{ topic.getContent().topic }</textarea></div>
|
2015-07-21 11:39:46 +02:00
|
|
|
} else {
|
2015-07-22 08:19:24 +02:00
|
|
|
name =
|
|
|
|
<div className="mx_RoomHeader_name">
|
|
|
|
<EditableText label={this.props.room.name} initialValue={actual_name} placeHolder="Name" onValueChanged={this.onNameChange} />
|
|
|
|
</div>
|
2015-07-21 11:39:46 +02:00
|
|
|
if (topic) topic_el = <div className="mx_RoomHeader_topic">{ topic.getContent().topic }</div>;
|
|
|
|
settings_button = (
|
|
|
|
<div className="mx_RoomHeader_button" onClick={this.props.onSettingsClick}>
|
|
|
|
<img src="img/settings.png" width="32" height="32"/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2015-07-20 16:07:51 +02:00
|
|
|
|
2015-07-21 11:39:46 +02:00
|
|
|
header =
|
2015-07-13 02:51:24 +02:00
|
|
|
<div className="mx_RoomHeader_wrapper">
|
|
|
|
<div className="mx_RoomHeader_leftRow">
|
|
|
|
<div className="mx_RoomHeader_avatar">
|
2015-07-17 20:09:17 +02:00
|
|
|
<img src={ MatrixClientPeg.get().getAvatarUrlForRoom(this.props.room, 48, 48, "crop") } width="48" height="48" alt=""/>
|
2015-07-13 02:51:24 +02:00
|
|
|
</div>
|
2015-07-15 05:16:38 +02:00
|
|
|
<div className="mx_RoomHeader_info">
|
2015-07-22 08:19:24 +02:00
|
|
|
{ name }
|
2015-07-20 16:07:51 +02:00
|
|
|
{ topic_el }
|
2015-07-13 02:51:24 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-20 21:09:24 +02:00
|
|
|
{callButtons}
|
2015-07-13 02:51:24 +02:00
|
|
|
<div className="mx_RoomHeader_rightRow">
|
2015-07-20 16:07:51 +02:00
|
|
|
{ settings_button }
|
2015-07-24 04:18:12 +02:00
|
|
|
<div className="mx_RoomHeader_button mx_RoomHeader_search">
|
2015-07-24 10:57:28 +02:00
|
|
|
<img src="img/search.png" title="Search" alt="Search" width="32" height="32"/>
|
2015-07-13 02:51:24 +02:00
|
|
|
</div>
|
2015-07-24 04:18:12 +02:00
|
|
|
<div className="mx_RoomHeader_button mx_RoomHeader_video" onClick={this.onVideoClick}>
|
2015-07-24 10:57:28 +02:00
|
|
|
<img src="img/video.png" title="Video call" alt="Video call" width="32" height="32"/>
|
2015-07-13 02:51:24 +02:00
|
|
|
</div>
|
2015-07-24 04:18:12 +02:00
|
|
|
<div className="mx_RoomHeader_button mx_RoomHeader_voice" onClick={this.onVoiceClick}>
|
2015-07-24 10:57:28 +02:00
|
|
|
<img src="img/voip.png" title="VoIP call" alt="VoIP call" width="32" height="32"/>
|
2015-07-13 02:51:24 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-21 05:11:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="mx_RoomHeader">
|
|
|
|
{ header }
|
2015-06-09 18:40:42 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|