/* Copyright 2017 Vector Creations Ltd. 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'; import GroupStoreCache from '../../../stores/GroupStoreCache'; import GeminiScrollbar from 'react-gemini-scrollbar'; import PropTypes from 'prop-types'; import withMatrixClient from '../../../wrappers/withMatrixClient'; const INITIAL_LOAD_NUM_MEMBERS = 30; export default withMatrixClient(React.createClass({ displayName: 'GroupMemberList', contextTypes: { matrixClient: PropTypes.object.isRequired, }, propTypes: { groupId: PropTypes.string.isRequired, }, getInitialState: function() { return { members: null, invitedMembers: null, truncateAt: INITIAL_LOAD_NUM_MEMBERS, }; }, componentWillMount: function() { this._unmounted = false; this._initGroupStore(this.props.groupId); }, _initGroupStore: function(groupId) { this._groupStore = GroupStoreCache.getGroupStore(this.context.matrixClient, groupId); this._groupStore.registerListener(() => { this._fetchMembers(); }); }, _fetchMembers: function() { if (this._unmounted) return; this.setState({ members: this._groupStore.getGroupMembers(), invitedMembers: this._groupStore.getGroupInvitedMembers(), }); }, _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 ( } name={text} presenceState="online" suppressOnHover={true} onClick={this._showFullMemberList} /> ); }, _showFullMemberList: function() { this.setState({ truncateAt: -1, }); }, onSearchQueryChanged: function(ev) { this.setState({ searchQuery: ev.target.value }); }, makeGroupMemberTiles: function(query, memberList) { const GroupMemberTile = sdk.getComponent("groups.GroupMemberTile"); const TruncatedList = sdk.getComponent("elements.TruncatedList"); query = (query || "").toLowerCase(); if (query) { memberList = memberList.filter((m) => { const matchesName = m.displayname.toLowerCase().indexOf(query) !== -1; const matchesId = m.userId.toLowerCase().includes(query); if (!matchesName && !matchesId) { return false; } return true; }); } const uniqueMembers = {}; memberList.forEach((m) => { if (!uniqueMembers[m.userId]) uniqueMembers[m.userId] = m; }); memberList = Object.keys(uniqueMembers).map((userId) => uniqueMembers[userId]); // Descending sort on isPrivileged = true = 1 to isPrivileged = false = 0 memberList.sort((a, b) => { return b.isPrivileged - a.isPrivileged; }); const memberTiles = memberList.map((m) => { return ( ); }); return { memberTiles } ; }, render: function() { if (this.state.fetching || this.state.fetchingInvitedMembers) { const Spinner = sdk.getComponent("elements.Spinner"); return (
); } const inputBox = (
); const joined = this.state.members ?
{ this.makeGroupMemberTiles(this.state.searchQuery, this.state.members) }
:
; const invited = (this.state.invitedMembers && this.state.invitedMembers.length > 0) ?

{ _t("Invited") }

{ this.makeGroupMemberTiles(this.state.searchQuery, this.state.invitedMembers) }
:
; return (
{ inputBox } { joined } { invited }
); }, }));