Mailspring/internal_packages/message-list/lib/thread-archive-button.cjsx

35 lines
976 B
Plaintext
Raw Normal View History

{RetinaImg} = require 'nylas-component-kit'
{Actions,
React,
TaskFactory,
DOMUtils,
FocusedPerspectiveStore} = require 'nylas-exports'
class ThreadArchiveButton extends React.Component
@displayName: "ThreadArchiveButton"
@containerRequired: false
@propTypes:
thread: React.PropTypes.object.isRequired
render: =>
return false unless FocusedPerspectiveStore.current()?.canArchiveThreads()
<button className="btn btn-toolbar btn-archive"
style={order: -107}
title="Archive"
onClick={@_onArchive}>
<RetinaImg name="toolbar-archive.png" mode={RetinaImg.Mode.ContentIsMask}/>
</button>
_onArchive: (e) =>
return unless DOMUtils.nodeIsVisible(e.currentTarget)
task = TaskFactory.taskForArchiving
threads: [@props.thread],
2016-01-15 07:04:17 +08:00
fromPerspective: FocusedPerspectiveStore.current()
Actions.queueTask(task)
Actions.popSheet()
e.stopPropagation()
module.exports = ThreadArchiveButton