mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added new accountPlan page
no issue - Adds new page for choosing a plan for logged in member
This commit is contained in:
parent
859b5502eb
commit
c6cf81664c
1 changed files with 87 additions and 0 deletions
87
ghost/portal/src/components/pages/AccountPlanPage.js
Normal file
87
ghost/portal/src/components/pages/AccountPlanPage.js
Normal file
|
@ -0,0 +1,87 @@
|
|||
import {ParentContext} from '../ParentContext';
|
||||
import MemberAvatar from '../common/MemberGravatar';
|
||||
import ActionButton from '../common/ActionButton';
|
||||
import InputField from '../common/InputField';
|
||||
import PlansSection from '../common/PlansSection';
|
||||
import Switch from '../common/Switch';
|
||||
|
||||
const React = require('react');
|
||||
|
||||
export default class AccountPlanPage extends React.Component {
|
||||
static contextType = ParentContext;
|
||||
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
this.state = {
|
||||
plan: 'Monthly'
|
||||
};
|
||||
}
|
||||
|
||||
handleSignout(e) {
|
||||
e.preventDefault();
|
||||
this.context.onAction('signout');
|
||||
}
|
||||
|
||||
onBack(e) {
|
||||
this.context.onAction('back');
|
||||
}
|
||||
|
||||
renderHeader() {
|
||||
return (
|
||||
<div style={{display: 'flex', padding: '0 24px'}}>
|
||||
<div style={{color: this.context.brandColor, cursor: 'pointer'}} role="button" onClick={e => this.onBack(e)}> < Back </div>
|
||||
<div style={{flexGrow: 1, display: 'flex', justifyContent: 'center', fontWeight: 'bold'}}> Choose Plan </div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
onPlanCheckout(e) {
|
||||
e.preventDefault();
|
||||
const {onAction} = this.context;
|
||||
const plan = this.state.plan;
|
||||
onAction('checkoutPlan', {plan});
|
||||
}
|
||||
|
||||
onPlanSelect(e, name) {
|
||||
e.preventDefault();
|
||||
// Hack: React checkbox gets out of sync with dom state with instant update
|
||||
setTimeout(() => {
|
||||
this.setState({
|
||||
plan: name
|
||||
});
|
||||
}, 5);
|
||||
}
|
||||
|
||||
renderPlanChooser() {
|
||||
const {plans} = this.context.site;
|
||||
const plansData = [
|
||||
{type: 'month', price: plans.monthly, currency: plans.currency_symbol, name: 'Monthly'},
|
||||
{type: 'year', price: plans.yearly, currency: plans.currency_symbol, name: 'Yearly'}
|
||||
];
|
||||
return (
|
||||
<div style={{padding: '0 24px', marginTop: '12px'}}>
|
||||
<PlansSection
|
||||
showLabel={false}
|
||||
plans={plansData}
|
||||
selectedPlan={this.state.plan}
|
||||
onPlanSelect={(e, name) => this.onPlanSelect(e, name)}
|
||||
/>
|
||||
<ActionButton
|
||||
label="Continue"
|
||||
onClick={e => this.onPlanCheckout(e)}
|
||||
brandColor={this.context.brandColor}
|
||||
style={{button: {marginTop: '12px'}}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div style={{display: 'flex', flexDirection: 'column', color: '#313131'}}>
|
||||
{this.renderHeader()}
|
||||
{this.renderPlanChooser()}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue