mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
144 lines
4.8 KiB
CoffeeScript
144 lines
4.8 KiB
CoffeeScript
React = require 'react'
|
|
PropTypes = require 'prop-types'
|
|
path = require 'path'
|
|
fs = require 'fs'
|
|
_ = require 'underscore'
|
|
{RetinaImg, Flexbox, ConfigPropContainer, NewsletterSignup} = require 'nylas-component-kit'
|
|
{AccountStore} = require 'mailspring-exports'
|
|
OnboardingActions = require('./onboarding-actions').default
|
|
|
|
# NOTE: Temporarily copied from preferences module
|
|
class AppearanceModeOption extends React.Component
|
|
@propTypes:
|
|
mode: PropTypes.string.isRequired
|
|
active: PropTypes.bool
|
|
onClick: PropTypes.func
|
|
|
|
render: =>
|
|
classname = "appearance-mode"
|
|
classname += " active" if @props.active
|
|
|
|
label = {
|
|
'list': 'Reading Pane Off'
|
|
'split': 'Reading Pane On'
|
|
}[@props.mode]
|
|
|
|
<div className={classname} onClick={@props.onClick}>
|
|
<RetinaImg name={"appearance-mode-#{@props.mode}.png"} mode={RetinaImg.Mode.ContentIsMask}/>
|
|
<div>{label}</div>
|
|
</div>
|
|
|
|
|
|
class InitialPreferencesOptions extends React.Component
|
|
@propTypes:
|
|
config: PropTypes.object
|
|
|
|
constructor: (@props) ->
|
|
@state =
|
|
templates: []
|
|
@_loadTemplates()
|
|
|
|
_loadTemplates: =>
|
|
templatesDir = path.join(AppEnv.getLoadSettings().resourcePath, 'keymaps', 'templates')
|
|
fs.readdir templatesDir, (err, files) =>
|
|
return unless files and files instanceof Array
|
|
templates = files.filter (filename) =>
|
|
path.extname(filename) is '.cson' or path.extname(filename) is '.json'
|
|
templates = templates.map (filename) =>
|
|
path.parse(filename).name
|
|
@setState(templates: templates)
|
|
@_setConfigDefaultsForAccount(templates)
|
|
|
|
_setConfigDefaultsForAccount: (templates) =>
|
|
return unless @props.account
|
|
|
|
templateWithBasename = (name) =>
|
|
_.find templates, (t) -> t.indexOf(name) is 0
|
|
|
|
if @props.account.provider is 'gmail'
|
|
@props.config.set('core.workspace.mode', 'list')
|
|
@props.config.set('core.keymapTemplate', templateWithBasename('Gmail'))
|
|
else if @props.account.provider is 'eas' or @props.account.provider is 'office365'
|
|
@props.config.set('core.workspace.mode', 'split')
|
|
@props.config.set('core.keymapTemplate', templateWithBasename('Outlook'))
|
|
else
|
|
@props.config.set('core.workspace.mode', 'split')
|
|
if process.platform is 'darwin'
|
|
@props.config.set('core.keymapTemplate', templateWithBasename('Apple Mail'))
|
|
else
|
|
@props.config.set('core.keymapTemplate', templateWithBasename('Outlook'))
|
|
|
|
render: =>
|
|
return false unless @props.config
|
|
|
|
<div style={display:'flex', width:600, marginBottom: 50, marginLeft:150, marginRight: 150, textAlign: 'left'}>
|
|
<div style={flex:1}>
|
|
<p>
|
|
Do you prefer a single panel layout (like Gmail)
|
|
or a two panel layout?
|
|
</p>
|
|
<Flexbox direction="row" style={alignItems: "center"}>
|
|
{['list', 'split'].map (mode) =>
|
|
<AppearanceModeOption
|
|
mode={mode} key={mode}
|
|
active={@props.config.get('core.workspace.mode') is mode}
|
|
onClick={ => @props.config.set('core.workspace.mode', mode)} />
|
|
}
|
|
</Flexbox>
|
|
</div>
|
|
<div key="divider" style={marginLeft:20, marginRight:20, borderLeft:'1px solid #ccc'}></div>
|
|
<div style={flex:1}>
|
|
<p>
|
|
We've picked a set of keyboard shortcuts based on your email
|
|
account and platform. You can also pick another set:
|
|
</p>
|
|
<select
|
|
style={margin:0}
|
|
value={@props.config.get('core.keymapTemplate')}
|
|
onChange={ (event) => @props.config.set('core.keymapTemplate', event.target.value) }>
|
|
{ @state.templates.map (template) =>
|
|
<option key={template} value={template}>{template}</option>
|
|
}
|
|
</select>
|
|
<div style={paddingTop: 20}>
|
|
<NewsletterSignup emailAddress={@props.account.emailAddress} name={@props.account.name} />
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
class InitialPreferencesPage extends React.Component
|
|
@displayName: "InitialPreferencesPage"
|
|
|
|
constructor:(@props) ->
|
|
@state = {account: AccountStore.accounts()[0]}
|
|
|
|
componentDidMount: =>
|
|
@_unlisten = AccountStore.listen(@_onAccountStoreChange)
|
|
|
|
componentWillUnmount: =>
|
|
@_unlisten?()
|
|
|
|
_onAccountStoreChange: =>
|
|
@setState(account: AccountStore.accounts()[0])
|
|
|
|
render: =>
|
|
<div className="page opaque" style={width:900, height:620}>
|
|
<h1 style={paddingTop: 100}>Welcome to Mailspring</h1>
|
|
<h4 style={marginBottom: 70}>Let's set things up to your liking.</h4>
|
|
<ConfigPropContainer>
|
|
<InitialPreferencesOptions account={@state.account} />
|
|
</ConfigPropContainer>
|
|
<button
|
|
className="btn btn-large btn-get-started"
|
|
style={marginBottom:60}
|
|
onClick={@_onFinished}>
|
|
Looks Good!
|
|
</button>
|
|
</div>
|
|
|
|
_onFinished: =>
|
|
require('electron').ipcRenderer.send('account-setup-successful')
|
|
|
|
module.exports = InitialPreferencesPage
|