mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
91edef9f7a
Conflicts: internal_packages/inbox-activity-bar/lib/activity-bar-long-poll-item.cjsx
22 lines
571 B
CoffeeScript
22 lines
571 B
CoffeeScript
_ = require 'underscore-plus'
|
|
React = require 'react'
|
|
{Actions, Utils} = require 'nylas-exports'
|
|
{RetinaImg} = require 'nylas-component-kit'
|
|
|
|
class ArchiveButton extends React.Component
|
|
@displayName: "ArchiveButton"
|
|
|
|
render: =>
|
|
<button className="btn btn-toolbar btn-archive"
|
|
data-tooltip="Archive"
|
|
onClick={@_onArchive}>
|
|
<RetinaImg name="toolbar-archive.png" />
|
|
</button>
|
|
|
|
_onArchive: (e) =>
|
|
return unless Utils.nodeIsVisible(e.currentTarget)
|
|
Actions.archive()
|
|
e.stopPropagation()
|
|
|
|
|
|
module.exports = ArchiveButton
|