mirror of https://github.com/vector-im/riot-web
57 lines
2.2 KiB
JavaScript
57 lines
2.2 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 ComponentBroker = require('../../../../../src/ComponentBroker');
|
|
var MCallInviteTileController = require("../../../../../src/controllers/molecules/voip/MCallInviteTile");
|
|
var MessageTimestamp = ComponentBroker.get('atoms/MessageTimestamp');
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'MCallInviteTile',
|
|
mixins: [MCallInviteTileController],
|
|
|
|
getInviteText: function(event) {
|
|
var senderName = event.sender ? event.sender.name : "Someone";
|
|
// FIXME: Find a better way to determine this from the event?
|
|
var type = "voice";
|
|
if (event.getContent().offer &&
|
|
event.getContent().offer.sdp.indexOf('m=video') !== -1) {
|
|
type = "video";
|
|
}
|
|
return senderName + " placed a " + type + " call.";
|
|
},
|
|
|
|
render: function() {
|
|
// XXX: for now, just cheekily borrow the css from message tile...
|
|
return (
|
|
<div className="mx_MessageTile">
|
|
<div className="mx_MessageTile_avatar">
|
|
<img src={ this.props.mxEvent.sender ? MatrixClientPeg.get().getAvatarUrlForMember(this.props.mxEvent.sender, 40, 40, "crop") : null } width="40" height="40"/>
|
|
</div>
|
|
<MessageTimestamp ts={this.props.mxEvent.getTs()} />
|
|
<span className="mx_SenderProfile"></span>
|
|
<span className="mx_MessageTile_content">
|
|
{this.getInviteText(this.props.mxEvent)}
|
|
</span>
|
|
</div>
|
|
);
|
|
},
|
|
});
|
|
|