mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
37c9c8fbb4
CallView is the container for either VideoViews or WaveformViews. All UI elements listen for 'call_state' payloads and then call CallHandler.getCall(roomId) to extract the current MatrixCall for that room. We can't do this via stateful dispatches because dispatching does not preserve ordering empirically (probably due to setTimeout).
72 lines
2.9 KiB
JavaScript
72 lines
2.9 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';
|
|
|
|
var React = require('react');
|
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
|
var RoomHeaderController = require("../../../../src/controllers/molecules/RoomHeader");
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'RoomHeader',
|
|
mixins: [RoomHeaderController],
|
|
|
|
render: function() {
|
|
|
|
var topic = this.props.room.currentState.getStateEvents('m.room.topic', '');
|
|
topic = topic ? <div className="mx_RoomHeader_topic">{ topic.getContent().topic }</div> : null;
|
|
|
|
return (
|
|
<div className="mx_RoomHeader">
|
|
<div className="mx_RoomHeader_wrapper">
|
|
<div className="mx_RoomHeader_leftRow">
|
|
<div className="mx_RoomHeader_avatar">
|
|
<img src={ MatrixClientPeg.get().getAvatarUrlForRoom(this.props.room, 48, 48, "crop") } width="48" height="48"/>
|
|
</div>
|
|
<div className="mx_RoomHeader_info">
|
|
<div className="mx_RoomHeader_name">{ this.props.room.name }</div>
|
|
{ topic }
|
|
</div>
|
|
</div>
|
|
<div className="mx_RoomHeader_rightRow">
|
|
<div className="mx_RoomHeader_button">
|
|
<img src="img/settings.png" width="32" height="32"/>
|
|
</div>
|
|
<div className="mx_RoomHeader_button">
|
|
<img src="img/search.png" width="32" height="32"/>
|
|
</div>
|
|
{
|
|
this.state && this.state.inCall ?
|
|
<div className="mx_RoomHeader_button" onClick={this.onHangupClick}>
|
|
<img src="img/video.png" width="64" height="32"/>
|
|
</div>
|
|
: null
|
|
}
|
|
<div className="mx_RoomHeader_button" onClick={this.onVideoClick}>
|
|
<img src="img/video.png" width="32" height="32"/>
|
|
</div>
|
|
<div className="mx_RoomHeader_button" onClick={this.onVoiceClick}>
|
|
<img src="img/voip.png" width="32" height="32"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
},
|
|
});
|
|
|