mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import {RetinaImg} from 'nylas-component-kit';
|
|
import OnboardingActions from './onboarding-actions';
|
|
import AccountTypes from './account-types';
|
|
import SelfHostingConfigPage from './page-self-hosting-config'
|
|
|
|
export default class AccountChoosePage extends React.Component {
|
|
static displayName = "AccountChoosePage";
|
|
|
|
static propTypes = {
|
|
accountInfo: React.PropTypes.object,
|
|
}
|
|
|
|
_renderAccountTypes() {
|
|
return AccountTypes.map((accountType) =>
|
|
<div
|
|
key={accountType.type}
|
|
className={`provider ${accountType.type}`}
|
|
onClick={() => OnboardingActions.setAccountType(accountType.type)}
|
|
>
|
|
<div className="icon-container">
|
|
<RetinaImg
|
|
name={accountType.icon}
|
|
mode={RetinaImg.Mode.ContentPreserve}
|
|
className="icon"
|
|
/>
|
|
</div>
|
|
<span className="provider-name">{accountType.displayName}</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
if (NylasEnv.config.get('env') === 'custom' ||
|
|
NylasEnv.config.get('env') === 'local') {
|
|
return (<SelfHostingConfigPage addAccount />)
|
|
}
|
|
|
|
return (
|
|
<div className="page account-choose">
|
|
<h2>
|
|
Connect an email account
|
|
</h2>
|
|
<div className="cloud-sync-note">
|
|
Nylas syncs your mail through the cloud. <a href="https://support.nylas.com/hc/en-us/articles/217518207-Why-does-Nylas-N1-sync-email-via-the-cloud-">Learn More</a>
|
|
</div>
|
|
<div className="provider-list">
|
|
{this._renderAccountTypes()}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|