Merge pull request #2380 from vector-im/dbkr/roomdir_no_results

Room directory: indicate when there are no results
This commit is contained in:
Richard van der Hoff 2016-09-30 10:23:23 +01:00 committed by GitHub
commit 8e0be29c13

View file

@ -414,20 +414,25 @@ module.exports = React.createClass({
<Loader />
</div>;
} else {
const ScrollPanel = sdk.getComponent("structures.ScrollPanel");
content = <ScrollPanel ref={this.collectScrollPanel}
className="mx_RoomDirectory_tableWrapper"
onFillRequest={ this.onFillRequest }
stickyBottom={false}
startAtBottom={false}
onResize={function(){}}
>
<table ref="directory_table" className="mx_RoomDirectory_table">
<tbody>
{ this.getRows() }
</tbody>
</table>
</ScrollPanel>;
const rows = this.getRows();
if (rows.length == 0) {
content = <i>No rooms to show</i>;
} else {
const ScrollPanel = sdk.getComponent("structures.ScrollPanel");
content = <ScrollPanel ref={this.collectScrollPanel}
className="mx_RoomDirectory_tableWrapper"
onFillRequest={ this.onFillRequest }
stickyBottom={false}
startAtBottom={false}
onResize={function(){}}
>
<table ref="directory_table" className="mx_RoomDirectory_table">
<tbody>
{ this.getRows() }
</tbody>
</table>
</ScrollPanel>;
}
}
const SimpleRoomHeader = sdk.getComponent('rooms.SimpleRoomHeader');