mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:02:35 +08:00
ed2a5c90d9
Summary: Things still to come: - General tab - Signatures tab (potentially remove and land) Adding emacs things to gitignore Adding progress. iterating on html/css is incredibly painful Added layout for accounts page. Adding layout for appearance page layout for shortcuts preferences page adding layount for notifications menu Adding signatures layout WIP WIP - tab switching, accounts tab WIP ALL THE THINGS Keymap template support (Gmail / outlook, etc.) Test Plan: No tests atm Reviewers: evan Differential Revision: https://phab.nylas.com/D1890
72 lines
3 KiB
CoffeeScript
72 lines
3 KiB
CoffeeScript
React = require 'react'
|
|
_ = require 'underscore'
|
|
{RetinaImg, Flexbox} = require 'nylas-component-kit'
|
|
{LaunchServices} = require 'nylas-exports'
|
|
|
|
class PreferencesGeneral extends React.Component
|
|
@displayName: 'PreferencesGeneral'
|
|
|
|
constructor: (@props) ->
|
|
@state = {}
|
|
|
|
@_services = new LaunchServices()
|
|
if @_services.available()
|
|
@_services.isRegisteredForURLScheme 'mailto', (registered) =>
|
|
@setState(defaultClient: registered)
|
|
|
|
toggleDefaultMailClient: =>
|
|
if @state.defaultClient is true
|
|
@setState(defaultClient: false)
|
|
@_services.resetURLScheme('mailto')
|
|
else
|
|
@setState(defaultClient: true)
|
|
@_services.registerForURLScheme('mailto')
|
|
|
|
render: =>
|
|
<div className="container-notifications">
|
|
<div className="section">
|
|
<div className="section-header platform-darwin-only" style={marginBottom:30}>
|
|
<input type="checkbox" id="default-client" checked={@state.defaultClient} onChange={@toggleDefaultMailClient}/>
|
|
<label htmlFor="default-client">Use Nylas as my default mail client</label>
|
|
</div>
|
|
|
|
<div className="section-header">
|
|
Delay for marking messages as read:
|
|
<select value={@props.config.get('core.reading.markAsReadDelay')}
|
|
onChange={ (event) => @props.config.set('core.reading.markAsReadDelay', event.target.value) }>
|
|
<option value={0}>Instantly</option>
|
|
<option value={500}>½ Second</option>
|
|
<option value={2000}>2 Seconds</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div className="section-header">
|
|
Download attachments for new mail:
|
|
<select value={@props.config.get('core.attachments.downloadPolicy')}
|
|
onChange={ (event) => @props.config.set('core.attachments.downloadPolicy', event.target.value) }>
|
|
<option value="on-receive">When Received</option>
|
|
<option value="on-read">When Reading</option>
|
|
<option value="manually">Manually</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div className="section-header">
|
|
Default reply behavior:
|
|
<div style={float:'right', width:138}>
|
|
<input type="radio"
|
|
id="core.sending.defaultReplyType.reply"
|
|
checked={@props.config.get('core.sending.defaultReplyType') == 'reply'}
|
|
onChange={ => @props.config.set('core.sending.defaultReplyType', 'reply') }/>
|
|
<label htmlFor="core.sending.defaultReplyType.reply">Reply</label>
|
|
<br/>
|
|
<input type="radio"
|
|
id="core.sending.defaultReplyType.replyAll"
|
|
checked={@props.config.get('core.sending.defaultReplyType') == 'reply-all'}
|
|
onChange={ => @props.config.set('core.sending.defaultReplyType', 'reply-all') }/>
|
|
<label htmlFor="core.sending.defaultReplyType.replyAll">Reply all</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
module.exports = PreferencesGeneral
|