2015-07-06 11:04:09 -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';
|
|
|
|
|
|
|
|
var React = require('react');
|
|
|
|
|
|
|
|
var MRoomMemberTileController = require("../../../../src/controllers/molecules/MRoomMemberTile");
|
|
|
|
|
2015-07-14 09:31:13 -04:00
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
2015-07-06 23:05:44 -04:00
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
2015-07-17 06:24:54 -04:00
|
|
|
var TextForEvent = require('../../../../src/TextForEvent');
|
2015-07-06 23:05:44 -04:00
|
|
|
var MessageTimestamp = ComponentBroker.get('atoms/MessageTimestamp');
|
2015-08-13 14:30:02 -04:00
|
|
|
var MemberAvatar = ComponentBroker.get('atoms/MemberAvatar');
|
2015-07-06 23:05:44 -04:00
|
|
|
|
2015-07-06 11:04:09 -04:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MRoomMemberTile',
|
|
|
|
mixins: [MRoomMemberTileController],
|
|
|
|
|
|
|
|
getMemberEventText: function() {
|
2015-07-17 06:24:54 -04:00
|
|
|
return TextForEvent.textForEvent(this.props.mxEvent);
|
2015-07-06 11:04:09 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2015-07-06 23:05:44 -04:00
|
|
|
// XXX: for now, just cheekily borrow the css from message tile...
|
2015-07-16 19:12:36 -04:00
|
|
|
var timestamp = this.props.last ? <MessageTimestamp ts={this.props.mxEvent.getTs()} /> : null;
|
2015-07-18 14:06:26 -04:00
|
|
|
var text = this.getMemberEventText();
|
|
|
|
if (!text) return <div/>;
|
2015-07-06 11:04:09 -04:00
|
|
|
return (
|
2015-07-17 19:48:22 -04:00
|
|
|
<div className="mx_MessageTile mx_MessageTile_notice">
|
2015-07-14 09:31:13 -04:00
|
|
|
<div className="mx_MessageTile_avatar">
|
2015-08-13 14:30:02 -04:00
|
|
|
<MemberAvatar member={this.props.mxEvent.sender} />
|
2015-07-14 09:31:13 -04:00
|
|
|
</div>
|
2015-07-16 19:12:36 -04:00
|
|
|
{ timestamp }
|
2015-07-06 23:05:44 -04:00
|
|
|
<span className="mx_SenderProfile"></span>
|
2015-07-12 11:36:43 -04:00
|
|
|
<span className="mx_MessageTile_content">
|
2015-07-18 14:06:26 -04:00
|
|
|
{ text }
|
2015-07-06 23:05:44 -04:00
|
|
|
</span>
|
|
|
|
</div>
|
2015-07-06 11:04:09 -04:00
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|