mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
45 lines
1.1 KiB
React
45 lines
1.1 KiB
React
|
import React from 'react';
|
||
|
import {RetinaImg} from 'nylas-component-kit';
|
||
|
import OnboardingActions from './onboarding-actions';
|
||
|
import AccountTypes from './account-types';
|
||
|
|
||
|
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() {
|
||
|
return (
|
||
|
<div className="page account-choose">
|
||
|
<h2>
|
||
|
Connect an email account
|
||
|
</h2>
|
||
|
<div className="provider-list">
|
||
|
{this._renderAccountTypes()}
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|