Mailspring/app/internal_packages/preferences/lib/tabs/preferences-identity.jsx

162 lines
4.5 KiB
JavaScript

import React from 'react';
import { Actions, IdentityStore } from 'mailspring-exports';
import { OpenIdentityPageButton, BillingModal, RetinaImg } from 'mailspring-component-kit';
import { shell } from 'electron';
class RefreshButton extends React.Component {
constructor(props) {
super(props);
this.state = { refreshing: false };
}
componentDidMount() {
this._mounted = true;
}
componentWillUnmount() {
this._mounted = false;
}
_onClick = () => {
this.setState({ refreshing: true });
IdentityStore.fetchIdentity().then(() => {
setTimeout(() => {
if (this._mounted) {
this.setState({ refreshing: false });
}
}, 400);
});
};
render() {
return (
<div className={`refresh ${this.state.refreshing && 'spinning'}`} onClick={this._onClick}>
<RetinaImg name="ic-refresh.png" mode={RetinaImg.Mode.ContentIsMask} />
</div>
);
}
}
class PreferencesIdentity extends React.Component {
static displayName = 'PreferencesIdentity';
constructor() {
super();
this.state = this._getStateFromStores();
}
componentDidMount() {
this.unsubscribe = IdentityStore.listen(() => {
this.setState(this._getStateFromStores());
});
}
componentWillUnmount() {
this.unsubscribe();
}
_getStateFromStores() {
return {
identity: IdentityStore.identity() || {},
};
}
_onUpgrade = () => {
Actions.openModal({
component: <BillingModal source="preferences" />,
width: BillingModal.IntrinsicWidth,
height: BillingModal.IntrinsicHeight,
});
};
_renderBasic() {
const learnMore = () => shell.openExternal('https://getmailspring.com/pro');
return (
<div className="row padded">
<div>
You are using <strong>Mailspring Basic</strong>. You can link up to four email accounts
and try out pro features like snooze, send later, read receipts and reminders. Upgrade to
Mailspring Pro to unlock a more powerful email experience.
</div>
<div className="subscription-actions">
<div
className="btn btn-emphasis"
onClick={this._onUpgrade}
style={{ verticalAlign: 'top' }}
>
<RetinaImg name="ic-upgrade.png" mode={RetinaImg.Mode.ContentIsMask} /> Get Mailspring
Pro
</div>
<div className="btn minor-width" onClick={learnMore}>
Learn More
</div>
</div>
</div>
);
}
_renderPaidPlan(planName, effectivePlanName) {
const unpaidNote = effectivePlanName !== planName && (
<p
>{`Note: Due to issues with your most recent payment, you've been temporarily downgraded to Mailspring ${effectivePlanName}. Click 'Billing' below to correct the issue.`}</p>
);
return (
<div className="row padded">
<div>
Thank you for using{' '}
<strong style={{ textTransform: 'capitalize' }}>{`Mailspring ${planName}`}</strong> and
supporting independent software.
{unpaidNote}
</div>
<div className="subscription-actions">
<OpenIdentityPageButton
label="Manage Billing"
path="/dashboard#billing"
source="Preferences Billing"
campaign="Dashboard"
/>
</div>
</div>
);
}
render() {
const { identity } = this.state;
const { firstName, lastName, emailAddress, stripePlan, stripePlanEffective } = identity;
const logout = () => Actions.logoutNylasIdentity();
return (
<div className="container-identity">
<div className="identity-content-box">
<div className="row padded">
<div className="identity-info">
<RefreshButton />
<div className="name">
{firstName} {lastName}
</div>
<div className="email">{emailAddress}</div>
<div className="identity-actions">
<OpenIdentityPageButton
label="Account Details"
path="/dashboard"
source="Preferences"
campaign="Dashboard"
/>
<div className="btn minor-width" onClick={logout}>
Sign Out
</div>
</div>
</div>
</div>
{stripePlan === 'Basic'
? this._renderBasic()
: this._renderPaidPlan(stripePlan, stripePlanEffective)}
</div>
</div>
);
}
}
export default PreferencesIdentity;