React = require 'react' _ = require 'underscore-plus' EmailFrame = require './email-frame' MessageParticipants = require "./message-participants.cjsx" MessageTimestamp = require "./message-timestamp.cjsx" {ComponentRegistry, FileDownloadStore, Utils, Actions} = require 'inbox-exports' {RetinaImg} = require 'ui-components' Autolinker = require 'autolinker' module.exports = MessageItem = React.createClass displayName: 'MessageItem' propTypes: thread: React.PropTypes.object.isRequired message: React.PropTypes.object.isRequired thread_participants: React.PropTypes.arrayOf(React.PropTypes.object) collapsed: React.PropTypes.bool mixins: [ComponentRegistry.Mixin] components: ['AttachmentComponent'] getInitialState: -> # Holds the downloadData (if any) for all of our files. It's a hash # keyed by a fileId. The value is the downloadData. downloads: FileDownloadStore.downloadsForFileIds(@props.message.fileIds()) showQuotedText: @_messageIsEmptyForward() detailedHeaders: false componentDidMount: -> @_storeUnlisten = FileDownloadStore.listen(@_onDownloadStoreChange) componentWillUnmount: -> @_storeUnlisten() if @_storeUnlisten render: -> messageIndicators = ComponentRegistry.findAllViewsByRole('MessageIndicator') attachments = @_attachmentComponents() if attachments.length > 0 attachments =
{attachments}
header =
{
for Indicator in messageIndicators} {if @state.detailedHeaders then @_renderMessageActionsInline() else @_renderMessageActionsTooltip()}
@setState detailedHeaders: true} thread_participants={@props.thread_participants} isDetailed={@state.detailedHeaders} message_participants={@props.message.participants()} /> {@_renderCollapseControl()}
{header} {attachments} {@_formatBody()}
_quotedTextClasses: -> React.addons.classSet "quoted-text-control": true 'no-quoted-text': !Utils.containsQuotedText(@props.message.body) 'show-quoted-text': @state.showQuotedText _renderMessageActionsInline: -> @_renderMessageActions() _renderMessageActionsTooltip: -> ## TODO: Use Tooltip UI Component @setState detailedHeaders: true}> _renderMessageActions: -> messageActions = ComponentRegistry.findAllViewsByRole('MessageAction')
{ for Action in messageActions}
_onReply: -> tId = @props.thread.id; mId = @props.message.id Actions.composeReply(threadId: tId, messageId: mId) if (tId and mId) _onReplyAll: -> tId = @props.thread.id; mId = @props.message.id Actions.composeReplyAll(threadId: tId, messageId: mId) if (tId and mId) _onForward: -> tId = @props.thread.id; mId = @props.message.id Actions.composeForward(threadId: tId, messageId: mId) if (tId and mId) _renderCollapseControl: -> if @state.detailedHeaders
@setState detailedHeaders: false}>
else
@setState detailedHeaders: true}>
# Eventually, _formatBody will run a series of registered body transformers. # For now, it just runs a few we've hardcoded here, which are all synchronous. _formatBody: -> return "" unless @props.message body = @props.message.body # Apply the autolinker pass to make emails and links clickable body = Autolinker.link(body, {twitter: false}) # Find cid:// references and replace them with the paths to downloaded files for file in @props.message.files continue if _.find @state.downloads, (d) -> d.fileId is file.id cidLink = "cid:#{file.contentId}" fileLink = "#{FileDownloadStore.pathForFile(file)}" body = body.replace(cidLink, fileLink) # Remove any remaining cid:// references - we will not display them since they'll # throw "unknown ERR_UNKNOWN_URL_SCHEME" body = body.replace(/src=['"]cid:[^'"]*['"]/g, '') body _toggleQuotedText: -> @setState showQuotedText: !@state.showQuotedText _formatContacts: (contacts=[]) -> _attachmentComponents: -> AttachmentComponent = @state.AttachmentComponent attachments = _.filter @props.message.files, (f) => inBody = f.contentId? and @props.message.body.indexOf(f.contentId) > 0 not inBody and f.filename.length > 0 attachments.map (file) => _messageIsEmptyForward: -> # Returns true if the message contains "Forwarded" or "Fwd" in the first 250 characters. # A strong indicator that the quoted text should be shown. Needs to be limited to first 250 # to prevent replies to forwarded messages from also being expanded. body = @props.message.body.toLowerCase() indexForwarded = body.indexOf('forwarded') indexFwd = body.indexOf('fwd') (indexForwarded >= 0 and indexForwarded < 250) or (indexFwd >= 0 and indexFwd < 250) _onDownloadStoreChange: -> @setState downloads: FileDownloadStore.downloadsForFileIds(@props.message.fileIds())