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-06-23 15:40:50 +02:00
|
|
|
var MemberListController = require("../../../../src/controllers/organisms/MemberList");
|
2015-06-22 12:42:09 +02:00
|
|
|
|
2015-06-23 15:40:50 +02:00
|
|
|
var ComponentBroker = require('../../../../src/ComponentBroker');
|
2015-06-22 12:42:09 +02:00
|
|
|
|
|
|
|
var MemberTile = ComponentBroker.get("molecules/MemberTile");
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'MemberList',
|
|
|
|
mixins: [MemberListController],
|
|
|
|
|
|
|
|
makeMemberTiles: function() {
|
|
|
|
var that = this;
|
|
|
|
return Object.keys(that.state.memberDict).map(function(userId) {
|
|
|
|
var m = that.state.memberDict[userId];
|
|
|
|
return (
|
2015-07-13 02:51:24 +02:00
|
|
|
<MemberTile key={userId} member={m} />
|
2015-06-22 12:42:09 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div className="mx_MemberList">
|
2015-07-13 02:51:24 +02:00
|
|
|
<div className="mx_MemberList_chevron">
|
|
|
|
<img src="img/chevron.png" width="24" height="13"/>
|
|
|
|
</div>
|
2015-07-15 01:31:47 +02:00
|
|
|
<div className="mx_MemberList_border">
|
2015-07-13 02:51:24 +02:00
|
|
|
<h2>Members</h2>
|
2015-07-15 01:31:47 +02:00
|
|
|
<div className="mx_MemberList_wrapper">
|
|
|
|
{this.makeMemberTiles()}
|
|
|
|
<div className="mx_MemberTile">
|
|
|
|
<div className="mx_MemberTile_avatar"><img src="img/create.png" width="32" height="32" alt="()"/></div>
|
|
|
|
<div className="mx_MemberTile_name">Invite</div>
|
|
|
|
</div>
|
2015-07-13 02:51:24 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-06-22 12:42:09 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|