_ = require 'underscore' React = require "react" {Actions, FocusedContactsStore} = require("nylas-exports") class SidebarThreadParticipants extends React.Component @displayName: 'SidebarThreadParticipants' @containerStyles: order: 3 flexShrink: 0 constructor: (@props) -> @state = @_getStateFromStores() componentDidMount: => @unsubscribe = FocusedContactsStore.listen @_onChange componentWillUnmount: => @unsubscribe() render: =>

Thread Participants

{@_renderSortedContacts()}
_renderSortedContacts: => contacts = [] @state.sortedContacts.forEach (contact) => if contact is @state.focusedContact selected = "selected" else selected = "" contacts.push(
@_onSelectContact(contact)} key={contact.email+contact.name}> {contact.name}
) return contacts _onSelectContact: (contact) => Actions.focusContact(contact) _onChange: => @setState(@_getStateFromStores()) _getStateFromStores: => sortedContacts: FocusedContactsStore.sortedContacts() focusedContact: FocusedContactsStore.focusedContact() module.exports = SidebarThreadParticipants