/* Copyright 2016 OpenMarket 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'; const MemberAvatar = require('../avatars/MemberAvatar.js'); module.exports = React.createClass({ displayName: 'MemberEventListSummary', propTypes: { // An array of member events to summarise events: React.PropTypes.array.isRequired, // An array of EventTiles to render when expanded children: React.PropTypes.array.isRequired, // The maximum number of names to show in either the join or leave summaries summaryLength: React.PropTypes.number, // The maximum number of avatars to display in the summary avatarsMaxLength: React.PropTypes.number, // The minimum number of events needed to trigger summarisation threshold: React.PropTypes.number, }, getInitialState: function() { return { expanded: false, }; }, getDefaultProps: function() { return { summaryLength: 3, threshold: 3, avatarsMaxLength: 5 }; }, _toggleSummary: function() { this.setState({ expanded: !this.state.expanded, }); }, _getEventSenderName: function(ev) { if (!ev) { return 'undefined'; } return ev.sender.name || ev.event.content.displayname || ev.getSender(); }, _renderNameList: function(events) { if (events.length === 0) { return null; } let originalNumber = events.length; events = events.slice(0, this.props.summaryLength); let lastEvent = events.pop(); let names = events.map((ev) => { return this._getEventSenderName(ev); }).join(', '); let lastName = this._getEventSenderName(lastEvent); if (names.length === 0) { // special-case for a single event return lastName; } let remaining = originalNumber - this.props.summaryLength; if (remaining > 0) { // name1, name2, name3, and 100 others return names + ', ' + lastName + ', and ' + remaining + ' others'; } else { // name1, name2 and name3 return names + ' and ' + lastName; } }, _renderSummary: function(joinEvents, leaveEvents) { let joiners = this._renderNameList(joinEvents); let leavers = this._renderNameList(leaveEvents); let joinSummary = null; if (joiners) { joinSummary = ( {joiners} joined the room ); } let leaveSummary = null; if (leavers) { leaveSummary = ( {leavers} left the room ); } // The joinEvents and leaveEvents are representative of the net movement // per-user, and so it is possible that the total net movement is nil, // whilst there are some events in the expanded list. If the total net // movement is nil, then neither joinSummary nor leaveSummary will be // truthy, so return null. if (!joinSummary && !leaveSummary) { return null; } return ( {joinSummary}{joinSummary && leaveSummary?'; ':''} {leaveSummary}.  ); }, _renderAvatars: function(events) { let avatars = events.slice(0, this.props.avatarsMaxLength).map((e) => { return ( ); }); return ( {avatars} ); }, render: function() { let summary = null; // Reorder events so that joins come before leaves let eventsToRender = this.props.events; // Create an array of events that are not "cancelled-out" by another // A join of sender S is cancelled out by a leave of sender S etc. let filteredEvents = []; let senders = new Set(eventsToRender.map((e) => e.getSender())); senders.forEach( (userId) => { // Only push the last event if it isn't the same membership as the first let userEvents = eventsToRender.filter((e) => { return e.getSender() === userId; }); let firstEvent = userEvents[0]; let lastEvent = userEvents[userEvents.length - 1]; if (firstEvent.getContent().membership !== lastEvent.getContent().membership) { filteredEvents.push(lastEvent); } } ); let joinAndLeft = (eventsToRender.length - filteredEvents.length) / 2; if (joinAndLeft <= 0 || joinAndLeft % 1 !== 0) { joinAndLeft = null; } let joinEvents = filteredEvents.filter((ev) => { return ev.event.content.membership === 'join'; }); let leaveEvents = filteredEvents.filter((ev) => { return ev.event.content.membership === 'leave'; }); let fewEvents = eventsToRender.length < this.props.threshold; let expanded = this.state.expanded || fewEvents; let expandedEvents = null; if (expanded) { expandedEvents = this.props.children; } let avatars = this._renderAvatars(joinEvents.concat(leaveEvents)); let toggleButton = null; let summaryContainer = null; if (!fewEvents) { summary = this._renderSummary(joinEvents, leaveEvents); toggleButton = ( {expanded ? 'collapse' : 'expand'} ); let plural = (joinEvents.length + leaveEvents.length > 0) ? 'others' : 'users'; let noun = (joinAndLeft === 1 ? 'user' : plural); summaryContainer = (
{avatars} {summary}{joinAndLeft ? joinAndLeft + ' ' + noun + ' joined and left' : ''}   {toggleButton}
); } return (
{summaryContainer} {expandedEvents}
); }, });