2015-06-23 17:41:25 +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';
|
|
|
|
|
2015-06-22 12:42:09 +02:00
|
|
|
var React = require('react');
|
|
|
|
|
2015-07-14 03:13:00 +02:00
|
|
|
var MatrixClientPeg = require("../../../../src/MatrixClientPeg");
|
2015-06-23 15:40:50 +02:00
|
|
|
var MemberTileController = require("../../../../src/controllers/molecules/MemberTile");
|
2015-06-22 12:42:09 +02:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MemberTile',
|
|
|
|
mixins: [MemberTileController],
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div className="mx_MemberTile">
|
2015-07-14 03:13:00 +02:00
|
|
|
<div className="mx_MemberTile_avatar"><img src={ this.props.member ? MatrixClientPeg.get().getAvatarUrlForMember(this.props.member, 32, 32, "crop") : null } width="32" height="32"/></div>
|
2015-06-22 12:42:09 +02:00
|
|
|
<div className="mx_MemberTile_name">{this.props.member.name}</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|