Expand the list when the overflow element is clicked
Negative truncateAt values means "do not truncate".
This commit is contained in:
parent
eed83f982e
commit
d72ab641d0
3 changed files with 24 additions and 21 deletions
|
@ -45,7 +45,7 @@ module.exports = React.createClass({
|
|||
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
shouldComponentUpdate: function(nextProps, nextState) { return false; },
|
||||
shouldComponentUpdate: function(nextProps, nextState) { return true; },
|
||||
onClick: function() {},
|
||||
presenceState: "offline",
|
||||
presenceActiveAgo: -1,
|
||||
|
|
|
@ -42,7 +42,8 @@ module.exports = React.createClass({
|
|||
|
||||
var members = this.roomMembers(INITIAL_LOAD_NUM_MEMBERS);
|
||||
return {
|
||||
members: members
|
||||
members: members,
|
||||
truncateAt: 3
|
||||
};
|
||||
},
|
||||
|
||||
|
@ -75,9 +76,6 @@ module.exports = React.createClass({
|
|||
self._loadUserList();
|
||||
}, 50);
|
||||
|
||||
|
||||
setTimeout
|
||||
|
||||
// Attach a SINGLE listener for global presence changes then locate the
|
||||
// member tile and re-render it. This is more efficient than every tile
|
||||
// evar attaching their own listener.
|
||||
|
@ -264,16 +262,19 @@ module.exports = React.createClass({
|
|||
// For now we'll pretend this is any entity. It should probably be a separate tile.
|
||||
var EntityTile = sdk.getComponent("rooms.EntityTile");
|
||||
var BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
||||
var text = "and " + overflowCount + " more";
|
||||
return (
|
||||
<EntityTile avatarJsx={
|
||||
<BaseAvatar name="+" width={36} height={36} />
|
||||
} key="overflow" name={`and ${overflowCount} more`} presenceState="online"
|
||||
suppressOnHover={true} onClick={this._showFullMemberList} />
|
||||
} name={text} presenceState="online" suppressOnHover={true}
|
||||
onClick={this._showFullMemberList} />
|
||||
);
|
||||
},
|
||||
|
||||
_showFullMemberList: function() {
|
||||
console.log("TODO");
|
||||
this.setState({
|
||||
truncateAt: -1
|
||||
});
|
||||
},
|
||||
|
||||
memberSort: function(userIdA, userIdB) {
|
||||
|
@ -341,8 +342,7 @@ module.exports = React.createClass({
|
|||
return;
|
||||
}
|
||||
memberList.push(
|
||||
<EntityTile key={e.getStateKey()} ref={e.getStateKey()}
|
||||
name={e.getContent().display_name} />
|
||||
<EntityTile key={e.getStateKey()} name={e.getContent().display_name} />
|
||||
)
|
||||
})
|
||||
}
|
||||
|
@ -387,7 +387,7 @@ module.exports = React.createClass({
|
|||
<div className="mx_MemberList">
|
||||
{this.inviteTile()}
|
||||
<GeminiScrollbar autoshow={true} className="mx_MemberList_joined mx_MemberList_outerWrapper">
|
||||
<TruncatedList className="mx_MemberList_wrapper"
|
||||
<TruncatedList className="mx_MemberList_wrapper" truncateAt={this.state.truncateAt}
|
||||
createOverflowElement={this._createOverflowTile}>
|
||||
{this.makeMemberTiles('join', this.state.searchQuery)}
|
||||
</TruncatedList>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue