tart up room directory

This commit is contained in:
Matthew Hodgson 2016-02-20 13:36:48 +00:00
parent e33e9b5d4a
commit a35ab6bcef
1 changed files with 37 additions and 24 deletions

View File

@ -19,10 +19,17 @@ limitations under the License.
var React = require('react'); var React = require('react');
var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg');
var ContentRepo = require("matrix-js-sdk").ContentRepo;
var Modal = require('matrix-react-sdk/lib/Modal'); var Modal = require('matrix-react-sdk/lib/Modal');
var sdk = require('matrix-react-sdk') var sdk = require('matrix-react-sdk')
var dis = require('matrix-react-sdk/lib/dispatcher'); var dis = require('matrix-react-sdk/lib/dispatcher');
var linkify = require('linkifyjs');
var linkifyElement = require('linkifyjs/element');
var linkifyMatrix = require('matrix-react-sdk/lib/linkify-matrix');
linkifyMatrix(linkify);
module.exports = React.createClass({ module.exports = React.createClass({
displayName: 'RoomDirectory', displayName: 'RoomDirectory',
@ -54,6 +61,8 @@ module.exports = React.createClass({
self.forceUpdate(); self.forceUpdate();
} }
}); });
//linkifyElement(this.refs.directory_table, linkifyMatrix.options);
}, },
showRoom: function(roomId) { showRoom: function(roomId) {
@ -64,6 +73,8 @@ module.exports = React.createClass({
}, },
getRows: function(filter) { getRows: function(filter) {
var BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
if (!this.state.publicRooms) return []; if (!this.state.publicRooms) return [];
var rooms = this.state.publicRooms.filter(function(a) { var rooms = this.state.publicRooms.filter(function(a) {
@ -83,36 +94,39 @@ module.exports = React.createClass({
if (rooms[i].world_readable) { if (rooms[i].world_readable) {
guestRead = ( guestRead = (
<span>[world readable]</span> <div className="mx_RoomDirectory_perm">World readable</div>
); );
// <img src="img/members.svg"
// alt="World Readable" title="World Readable" width="12" height="12" />
} }
if (rooms[i].guest_can_join) { if (rooms[i].guest_can_join) {
guestJoin = ( guestJoin = (
<span>[guests allowed]</span> <div className="mx_RoomDirectory_perm">Guests can join</div>
); );
// <img src="img/leave.svg"
// alt="Guests can join" title="Guests can join" width="12" height="12" />
} }
perms = null; perms = null;
if (guestRead || guestJoin) { if (guestRead || guestJoin) {
perms = <div>{guestRead} {guestJoin}</div>; perms = <div className="mx_RoomDirectory_perms">{guestRead} {guestJoin}</div>;
} }
// <img src={ MatrixClientPeg.get().getAvatarUrlForRoom(rooms[i].room_id, 40, 40, "crop") } width="40" height="40" alt=""/>
rows.unshift( rows.unshift(
<tbody key={ rooms[i].room_id }> <tr key={ rooms[i].room_id } onClick={self.showRoom.bind(null, rooms[i].room_id)}>
<tr onClick={self.showRoom.bind(null, rooms[i].room_id)}> <td className="mx_RoomDirectory_roomAvatar">
<td className="mx_RoomDirectory_name">{ name }</td> <BaseAvatar width={24} height={24} resizeMethod='crop'
<td>{ rooms[i].aliases[0] }</td> name={ name } idName={ name }
<td>{ rooms[i].num_joined_members }</td> url={ ContentRepo.getHttpUriForMxc(
</tr> MatrixClientPeg.get().getHomeserverUrl(),
<tr onClick={self.showRoom.bind(null, rooms[i].room_id)}> rooms[i].avatar_url, 24, 24, "crop") } />
<td className="mx_RoomDirectory_topic" colSpan="3">{perms} { rooms[i].topic }</td> </td>
</tr> <td className="mx_RoomDirectory_roomDescription">
</tbody> <div className="mx_RoomDirectory_name">{ name }</div>&nbsp;
{ perms }
<div className="mx_RoomDirectory_topic">{ rooms[i].topic }</div>
<div className="mx_RoomDirectory_alias">{ rooms[i].aliases[0] }</div>
</td>
<td className="mx_RoomDirectory_roomMemberCount">
{ rooms[i].num_joined_members }
</td>
</tr>
); );
} }
return rows; return rows;
@ -139,15 +153,14 @@ module.exports = React.createClass({
var RoomHeader = sdk.getComponent('rooms.RoomHeader'); var RoomHeader = sdk.getComponent('rooms.RoomHeader');
return ( return (
<div className="mx_RoomDirectory"> <div className="mx_RoomDirectory">
<RoomHeader simpleHeader="Public Rooms" /> <RoomHeader simpleHeader="Directory" />
<div className="mx_RoomDirectory_list"> <div className="mx_RoomDirectory_list">
<input ref="roomAlias" placeholder="Join a room (e.g. #foo:domain.com)" className="mx_RoomDirectory_input" size="64" onKeyUp={ this.onKeyUp }/> <input ref="roomAlias" placeholder="Join a room (e.g. #foo:domain.com)" className="mx_RoomDirectory_input" size="64" onKeyUp={ this.onKeyUp }/>
<div className="mx_RoomDirectory_tableWrapper"> <div className="mx_RoomDirectory_tableWrapper">
<table className="mx_RoomDirectory_table"> <table ref="directory_table" className="mx_RoomDirectory_table">
<thead> <tbody>
<tr><th width="45%">Room</th><th width="45%">Alias</th><th width="10%">Members</th></tr> { this.getRows(this.state.roomAlias) }
</thead> </tbody>
{ this.getRows(this.state.roomAlias) }
</table> </table>
</div> </div>
</div> </div>