_ = require 'underscore' React = require "react/addons" classNames = require 'classnames' ThreadListStore = require './thread-list-store' {RetinaImg} = require 'nylas-component-kit' {Actions, TaskFactory, AccountStore, CategoryStore, FocusedContentStore, FocusedPerspectiveStore} = require "nylas-exports" class ArchiveButton extends React.Component @displayName: 'ArchiveButton' @containerRequired: false @propTypes: items: React.PropTypes.array.isRequired render: -> canArchiveThreads = FocusedPerspectiveStore.current().canArchiveThreads(@props.items) return unless canArchiveThreads _onArchive: (event) => tasks = TaskFactory.tasksForArchiving threads: @props.items Actions.queueTasks(tasks) Actions.popSheet() event.stopPropagation() return class TrashButton extends React.Component @displayName: 'TrashButton' @containerRequired: false @propTypes: items: React.PropTypes.array.isRequired render: -> canTrashThreads = FocusedPerspectiveStore.current().canTrashThreads(@props.items) return unless canTrashThreads _onRemove: (event) => tasks = TaskFactory.tasksForMovingToTrash threads: @props.items Actions.queueTasks(tasks) Actions.popSheet() event.stopPropagation() return class ToggleStarredButton extends React.Component @displayName: 'ToggleStarredButton' @containerRequired: false @propTypes: items: React.PropTypes.array.isRequired render: -> postClickStarredState = _.every @props.items, (t) -> t.starred is false title = "Remove stars from all" imageName = "toolbar-star-selected.png" if postClickStarredState title = "Star all" imageName = "toolbar-star.png" _onStar: (event) => task = TaskFactory.taskForInvertingStarred(threads: @props.items) Actions.queueTask(task) event.stopPropagation() return class ToggleUnreadButton extends React.Component @displayName: 'ToggleUnreadButton' @containerRequired: false @propTypes: items: React.PropTypes.array.isRequired render: => postClickUnreadState = _.every @props.items, (t) -> _.isMatch(t, {unread: false}) fragment = if postClickUnreadState then "unread" else "read" _onClick: (event) => task = TaskFactory.taskForInvertingUnread(threads: @props.items) Actions.queueTask(task) Actions.popSheet() event.stopPropagation() return ThreadNavButtonMixin = getInitialState: -> @_getStateFromStores() componentDidMount: -> @_unsubscribe = ThreadListStore.listen @_onStoreChange @_unsubscribe_focus = FocusedContentStore.listen @_onStoreChange isFirstThread: -> selectedId = FocusedContentStore.focusedId('thread') ThreadListStore.dataSource().get(0)?.id is selectedId isLastThread: -> selectedId = FocusedContentStore.focusedId('thread') lastIndex = ThreadListStore.dataSource().count() - 1 ThreadListStore.dataSource().get(lastIndex)?.id is selectedId componentWillUnmount: -> @_unsubscribe() @_unsubscribe_focus() _onStoreChange: -> @setState @_getStateFromStores() DownButton = React.createClass displayName: 'DownButton' mixins: [ThreadNavButtonMixin] render: ->