mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
26 lines
836 B
CoffeeScript
26 lines
836 B
CoffeeScript
{Actions, React, FocusedContentStore, ChangeUnreadTask} = require 'nylas-exports'
|
|
{RetinaImg} = require 'nylas-component-kit'
|
|
|
|
class ThreadToggleUnreadButton extends React.Component
|
|
@displayName: "ThreadToggleUnreadButton"
|
|
@containerRequired: false
|
|
|
|
render: =>
|
|
fragment = if @props.thread?.unread then "read" else "unread"
|
|
<button className="btn btn-toolbar"
|
|
style={order: -105}
|
|
title="Mark as #{fragment}"
|
|
onClick={@_onClick}>
|
|
<RetinaImg name="toolbar-markas#{fragment}.png"
|
|
mode={RetinaImg.Mode.ContentIsMask} />
|
|
</button>
|
|
|
|
_onClick: (e) =>
|
|
task = new ChangeUnreadTask
|
|
thread: @props.thread
|
|
unread: !@props.thread.unread
|
|
Actions.queueTask(task)
|
|
Actions.popSheet()
|
|
e.stopPropagation()
|
|
|
|
module.exports = ThreadToggleUnreadButton
|