2015-07-06 17:04:09 +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';
|
|
|
|
|
|
|
|
var React = require('react');
|
|
|
|
|
|
|
|
var MRoomMemberTileController = require("../../../../src/controllers/molecules/MRoomMemberTile");
|
|
|
|
|
2015-07-07 05:05:44 +02:00
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
|
|
|
var MessageTimestamp = ComponentBroker.get('atoms/MessageTimestamp');
|
|
|
|
|
2015-07-06 17:04:09 +02:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MRoomMemberTile',
|
|
|
|
mixins: [MRoomMemberTileController],
|
|
|
|
|
|
|
|
getMemberEventText: function() {
|
|
|
|
var ev = this.props.mxEvent;
|
|
|
|
switch (ev.getContent().membership) {
|
|
|
|
case 'invite':
|
|
|
|
return ev.sender.name + " invited " + ev.target.name + ".";
|
|
|
|
case 'join':
|
|
|
|
return ev.sender.name + " joined the room.";
|
|
|
|
case 'leave':
|
|
|
|
return ev.sender.name + " left the room.";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2015-07-07 05:05:44 +02:00
|
|
|
// XXX: for now, just cheekily borrow the css from message tile...
|
2015-07-06 17:04:09 +02:00
|
|
|
return (
|
2015-07-07 05:05:44 +02:00
|
|
|
<div className="mx_MessageTile">
|
|
|
|
<MessageTimestamp ts={this.props.mxEvent.getTs()} />
|
|
|
|
<span className="mx_SenderProfile"></span>
|
|
|
|
<span className="mx_messageTileType">
|
|
|
|
{this.getMemberEventText()}
|
|
|
|
</span>
|
|
|
|
</div>
|
2015-07-06 17:04:09 +02:00
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|