_ = require 'underscore-plus' React = require 'react' MessageItem = require "./message-item.cjsx" {Actions, ThreadStore, MessageStore, ComponentRegistry} = require("inbox-exports") module.exports = MessageList = React.createClass mixins: [ComponentRegistry.Mixin] components: ['Participants', 'Composer'] displayName: 'MessageList' getInitialState: -> @_getStateFromStores() componentDidMount: -> @_unsubscribers = [] @_unsubscribers.push MessageStore.listen @_onChange @_unsubscribers.push ThreadStore.listen @_onChange componentWillUnmount: -> unsubscribe() for unsubscribe in @_unsubscribers componentWillUpdate: (nextProps, nextState) -> newDrafts = @_newDrafts(nextState) if newDrafts.length >= 1 @_focusComposerId = newDrafts[0] componentDidUpdate: -> if @_focusComposerId? @_focusRef(@refs["composerItem-#{@_focusComposerId}"]) @_focusComposerId = null # We need a 100ms delay so the DOM can finish painting the elements on # the page. The focus doesn't work for some reason while the paint is in # process. _focusRef: (component) -> _.delay -> component?.focus("contentBody") , 100 render: -> return
if not @state.current_thread?
{@_messageListPrimaryActions()}
{@_messageListNotificationBars()}
{@_messageListHeaders()}
{@_messageComponents()}
_messageListPrimaryActions: -> MLActions = ComponentRegistry.findAllViewsByRole('MessageListPrimaryAction')
{ for MLAction in MLActions}
_messageListNotificationBars: -> MLBars = ComponentRegistry.findAllViewsByRole('MessageListNotificationBar')
{ for MLBar in MLBars}
_messageListHeaders: -> Participants = @state.Participants MessageListHeaders = ComponentRegistry.findAllViewsByRole('MessageListHeader')

{@state.current_thread.subject}

{for MessageListHeader in MessageListHeaders }
_newDrafts: (nextState) -> currentMsgIds = _.map(_.filter((@state.messages ? []), (m) -> not m.draft), (m) -> m.id) nextMsgIds = _.map(_.filter((nextState.messages ? []), (m) -> not m.draft), (m) -> m.id) # Only return if all the non-draft messages are the same. If the # non-draft messages aren't the same, that means we switched threads. # Don't focus on new drafts if we just switched threads. if nextMsgIds.length > 0 and _.difference(nextMsgIds, currentMsgIds).length is 0 nextDraftIds = _.map(_.filter((nextState.messages ? []), (m) -> m.draft), (m) -> m.id) currentDraftIds = _.map(_.filter((@state.messages ? []), (m) -> m.draft), (m) -> m.id) return (_.difference(nextDraftIds, currentDraftIds) ? []) else return [] _messageComponents: -> ComposerItem = @state.Composer containsUnread = _.any @state.messages, (m) -> m.unread collapsed = false components = [] @state.messages?.forEach (message) => if message.draft components.push else components.push # Start collapsing messages if we've loaded more than 15. This prevents # us from trying to load an unbounded number of iframes until we have # a better optimized message list. if components.length > 10 collapsed = true components _onChange: -> @setState(@_getStateFromStores()) _getStateFromStores: -> messages: (MessageStore.items() ? []) messageLocalIds: MessageStore.itemLocalIds() current_thread: ThreadStore.selectedThread() _threadParticipants: -> # We calculate the list of participants instead of grabbing it from # `@state.current_thread.participants` because it makes it easier to # test, is a better source of ground truth, and saves us from more # dependencies. participants = {} for msg in (@state.messages ? []) contacts = msg.participants() for contact in contacts if contact? and contact.email?.length > 0 participants[contact.email] = contact return _.values(participants)