mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
21 lines
785 B
Text
21 lines
785 B
Text
|
React = require 'react'
|
||
|
AutoloadImagesStore = require './autoload-images-store'
|
||
|
Actions = require './autoload-images-actions'
|
||
|
|
||
|
class AutoloadImagesHeader extends React.Component
|
||
|
@displayName: 'AutoloadImagesHeader'
|
||
|
|
||
|
constructor: (@props) ->
|
||
|
|
||
|
render: =>
|
||
|
if AutoloadImagesStore.shouldBlockImagesIn(@props.message)
|
||
|
<div className="autoload-images-header">
|
||
|
<a className="option" onClick={ => Actions.temporarilyEnableImages(@props.message) }>Show Images</a>
|
||
|
<span style={paddingLeft: 10, paddingRight: 10}>|</span>
|
||
|
<a className="option" onClick={ => Actions.permanentlyEnableImages(@props.message) }>Always show images from {@props.message.fromContact().toString()}</a>
|
||
|
</div>
|
||
|
else
|
||
|
<div></div>
|
||
|
|
||
|
module.exports = AutoloadImagesHeader
|