React = require 'react' {Actions, CategoryStore, TaskFactory, AccountStore, FocusedPerspectiveStore} = require 'nylas-exports' class ThreadArchiveQuickAction extends React.Component @displayName: 'ThreadArchiveQuickAction' @propTypes: thread: React.PropTypes.object render: => canArchiveThreads = FocusedPerspectiveStore.current().canArchiveThreads([@props.thread]) return unless canArchiveThreads
shouldComponentUpdate: (newProps, newState) -> newProps.thread.id isnt @props?.thread.id _onArchive: (event) => tasks = TaskFactory.tasksForArchiving threads: [@props.thread] Actions.queueTasks(tasks) # Don't trigger the thread row click event.stopPropagation() class ThreadTrashQuickAction extends React.Component @displayName: 'ThreadTrashQuickAction' @propTypes: thread: React.PropTypes.object render: => canTrashThreads = FocusedPerspectiveStore.current().canTrashThreads([@props.thread]) return unless canTrashThreads
shouldComponentUpdate: (newProps, newState) -> newProps.thread.id isnt @props?.thread.id _onRemove: (event) => tasks = TaskFactory.tasksForMovingToTrash threads: [@props.thread] Actions.queueTasks(tasks) # Don't trigger the thread row click event.stopPropagation() module.exports = { ThreadArchiveQuickAction, ThreadTrashQuickAction }