2017-09-26 16:49:13 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017 New Vector 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.
|
|
|
|
*/
|
|
|
|
import React from 'react';
|
|
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
import sdk from '../../../index';
|
2017-10-05 16:30:04 +03:00
|
|
|
import GroupStoreCache from '../../../stores/GroupStoreCache';
|
2017-09-26 16:49:13 +03:00
|
|
|
import GeminiScrollbar from 'react-gemini-scrollbar';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
const INITIAL_LOAD_NUM_ROOMS = 30;
|
|
|
|
|
|
|
|
export default React.createClass({
|
|
|
|
propTypes: {
|
|
|
|
groupId: PropTypes.string.isRequired,
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
rooms: null,
|
|
|
|
truncateAt: INITIAL_LOAD_NUM_ROOMS,
|
|
|
|
searchQuery: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
|
|
|
this._unmounted = false;
|
2017-10-05 16:30:04 +03:00
|
|
|
this._initGroupStore(this.props.groupId);
|
2017-09-26 16:49:13 +03:00
|
|
|
},
|
|
|
|
|
2017-10-05 16:30:04 +03:00
|
|
|
_initGroupStore: function(groupId) {
|
2017-11-28 14:54:05 +03:00
|
|
|
this._groupStore = GroupStoreCache.getGroupStore(groupId);
|
2017-10-27 13:36:32 +03:00
|
|
|
this._groupStore.registerListener(() => {
|
2017-10-05 16:30:04 +03:00
|
|
|
this._fetchRooms();
|
|
|
|
});
|
|
|
|
this._groupStore.on('error', (err) => {
|
2017-09-26 16:49:13 +03:00
|
|
|
this.setState({
|
2017-10-05 16:30:04 +03:00
|
|
|
rooms: null,
|
2017-09-26 16:49:13 +03:00
|
|
|
});
|
2017-10-05 16:30:04 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_fetchRooms: function() {
|
|
|
|
if (this._unmounted) return;
|
|
|
|
this.setState({
|
2017-10-23 18:04:26 +03:00
|
|
|
rooms: this._groupStore.getGroupRooms(),
|
2017-09-26 16:49:13 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_createOverflowTile: function(overflowCount, totalCount) {
|
|
|
|
// For now we'll pretend this is any entity. It should probably be a separate tile.
|
|
|
|
const EntityTile = sdk.getComponent("rooms.EntityTile");
|
|
|
|
const BaseAvatar = sdk.getComponent("avatars.BaseAvatar");
|
|
|
|
const text = _t("and %(count)s others...", { count: overflowCount });
|
|
|
|
return (
|
|
|
|
<EntityTile className="mx_EntityTile_ellipsis" avatarJsx={
|
|
|
|
<BaseAvatar url="img/ellipsis.svg" name="..." width={36} height={36} />
|
|
|
|
} name={text} presenceState="online" suppressOnHover={true}
|
|
|
|
onClick={this._showFullRoomList} />
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
_showFullRoomList: function() {
|
|
|
|
this.setState({
|
|
|
|
truncateAt: -1,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onSearchQueryChanged: function(ev) {
|
|
|
|
this.setState({ searchQuery: ev.target.value });
|
|
|
|
},
|
|
|
|
|
|
|
|
makeGroupRoomTiles: function(query) {
|
|
|
|
const GroupRoomTile = sdk.getComponent("groups.GroupRoomTile");
|
|
|
|
query = (query || "").toLowerCase();
|
|
|
|
|
|
|
|
let roomList = this.state.rooms;
|
|
|
|
if (query) {
|
|
|
|
roomList = roomList.filter((room) => {
|
2017-11-08 13:55:51 +03:00
|
|
|
const matchesName = (room.name || "").toLowerCase().includes(query);
|
2017-09-26 16:49:13 +03:00
|
|
|
const matchesAlias = (room.canonicalAlias || "").toLowerCase().includes(query);
|
|
|
|
return matchesName || matchesAlias;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
roomList = roomList.map((groupRoom, index) => {
|
|
|
|
return (
|
|
|
|
<GroupRoomTile
|
|
|
|
key={index}
|
|
|
|
groupId={this.props.groupId}
|
|
|
|
groupRoom={groupRoom} />
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
return roomList;
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2017-10-05 16:30:04 +03:00
|
|
|
if (this.state.rooms === null) {
|
2017-09-26 16:49:13 +03:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const inputBox = (
|
|
|
|
<form autoComplete="off">
|
|
|
|
<input className="mx_GroupRoomList_query" id="mx_GroupRoomList_query" type="text"
|
|
|
|
onChange={this.onSearchQueryChanged} value={this.state.searchQuery}
|
2017-10-19 17:01:16 +03:00
|
|
|
placeholder={_t('Filter community rooms')} />
|
2017-09-26 16:49:13 +03:00
|
|
|
</form>
|
|
|
|
);
|
|
|
|
|
|
|
|
const TruncatedList = sdk.getComponent("elements.TruncatedList");
|
|
|
|
return (
|
|
|
|
<div className="mx_GroupRoomList">
|
|
|
|
{ inputBox }
|
|
|
|
<GeminiScrollbar autoshow={true} className="mx_GroupRoomList_joined mx_GroupRoomList_outerWrapper">
|
|
|
|
<TruncatedList className="mx_GroupRoomList_wrapper" truncateAt={this.state.truncateAt}
|
|
|
|
createOverflowElement={this._createOverflowTile}>
|
2017-09-28 13:21:06 +03:00
|
|
|
{ this.makeGroupRoomTiles(this.state.searchQuery) }
|
2017-09-26 16:49:13 +03:00
|
|
|
</TruncatedList>
|
|
|
|
</GeminiScrollbar>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|