_ = require 'underscore-plus' React = require 'react' classNames = require 'classnames' {Actions, Utils, FocusedContentStore, WorkspaceStore} = require 'inbox-exports' {RetinaImg} = require 'ui-components' # Note: These always have a thread, but only sometimes get a # message, depending on where in the UI they are being displayed. ReplyButton = React.createClass render: -> _onReply: (e) -> return unless Utils.nodeIsVisible(e.currentTarget) Actions.composeReply(threadId: FocusedContentStore.focusedId('thread')) e.stopPropagation() ReplyAllButton = React.createClass render: -> _onReplyAll: (e) -> return unless Utils.nodeIsVisible(e.currentTarget) Actions.composeReplyAll(threadId: FocusedContentStore.focusedId('thread')) e.stopPropagation() ForwardButton = React.createClass render: -> _onForward: (e) -> return unless Utils.nodeIsVisible(e.currentTarget) Actions.composeForward(threadId: FocusedContentStore.focusedId('thread')) e.stopPropagation() ArchiveButton = React.createClass render: -> _onArchive: (e) -> return unless Utils.nodeIsVisible(e.currentTarget) Actions.archive() e.stopPropagation() module.exports = MessageToolbarItems = React.createClass getInitialState: -> threadIsSelected: FocusedContentStore.focusedId('thread')? render: -> classes = classNames "message-toolbar-items": true "hidden": !@state.threadIsSelected
componentDidMount: -> @_unsubscribers = [] @_unsubscribers.push FocusedContentStore.listen @_onChange componentWillUnmount: -> unsubscribe() for unsubscribe in @_unsubscribers _onChange: -> _.defer => return unless @isMounted() @setState threadIsSelected: FocusedContentStore.focusedId('thread')?