2015-06-23 16:41:25 +01:00
|
|
|
/*
|
2016-01-07 04:17:56 +00:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-06-23 16:41:25 +01:00
|
|
|
|
|
|
|
|
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-16 11:58:03 +01:00
|
|
|
var React = require('react');
|
2015-07-30 00:48:20 +01:00
|
|
|
|
2015-06-16 11:58:03 +01:00
|
|
|
module.exports = React.createClass({
|
2015-06-19 16:21:09 +01:00
|
|
|
displayName: 'SenderProfile',
|
2015-06-19 12:53:48 +01:00
|
|
|
|
2016-03-17 16:28:49 +00:00
|
|
|
propTypes: {
|
|
|
|
|
mxEvent: React.PropTypes.object.isRequired, // event whose sender we're showing
|
|
|
|
|
aux: React.PropTypes.object, // stuff to go after the sender name, if anything
|
|
|
|
|
onClick: React.PropTypes.func,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
|
return {
|
|
|
|
|
onClick: function() {},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2015-06-16 11:58:03 +01:00
|
|
|
render: function() {
|
2015-06-16 14:19:46 +01:00
|
|
|
var mxEvent = this.props.mxEvent;
|
|
|
|
|
var name = mxEvent.sender ? mxEvent.sender.name : mxEvent.getSender();
|
2015-06-16 15:29:13 +01:00
|
|
|
|
|
|
|
|
var msgtype = mxEvent.getContent().msgtype;
|
|
|
|
|
if (msgtype && msgtype == 'm.emote') {
|
|
|
|
|
name = ''; // emote message must include the name so don't duplicate it
|
|
|
|
|
}
|
2015-06-16 11:58:03 +01:00
|
|
|
return (
|
2016-03-17 16:28:49 +00:00
|
|
|
<span className="mx_SenderProfile" onClick={this.props.onClick}>
|
2015-08-14 14:44:10 +01:00
|
|
|
{name} { this.props.aux }
|
2015-06-16 11:58:03 +01:00
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|