mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
a13d72886a
Fixes T3468
41 lines
951 B
CoffeeScript
41 lines
951 B
CoffeeScript
React = require "react"
|
|
_ = require "underscore"
|
|
ContactChip = require './ContactChip'
|
|
|
|
# Parameters
|
|
# clickable (optional) - is this currently clickable?
|
|
# thread (optional) - thread context for sorting
|
|
# passed into the ParticipantChip
|
|
# - 'primary'
|
|
# - 'list'
|
|
|
|
class Participants extends React.Component
|
|
@displayName: "Participants"
|
|
|
|
@containerRequired: false
|
|
|
|
render: =>
|
|
chips = @getParticipants().map (p) =>
|
|
<ContactChip key={p.toString()} clickable={@props.clickable} participant={p} />
|
|
|
|
<span>
|
|
{chips}
|
|
</span>
|
|
|
|
getParticipants: =>
|
|
list = @props.participants
|
|
|
|
# Remove 'Me' if there is more than one participant
|
|
if list.length > 1
|
|
list = _.reject list, (contact) -> contact.isMe()
|
|
|
|
list.forEach (p) ->
|
|
p.serverId ?= p.name+p.email
|
|
|
|
list
|
|
|
|
shouldComponentUpdate: (newProps, newState) =>
|
|
!_.isEqual(newProps.participants, @props.participants)
|
|
|
|
|
|
module.exports = Participants
|