From c6cf81664cc5f359df14e85fbe1f777e05d8b54e Mon Sep 17 00:00:00 2001 From: Rish Date: Fri, 1 May 2020 20:52:56 +0530 Subject: [PATCH] Added new accountPlan page no issue - Adds new page for choosing a plan for logged in member --- .../src/components/pages/AccountPlanPage.js | 87 +++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 ghost/portal/src/components/pages/AccountPlanPage.js diff --git a/ghost/portal/src/components/pages/AccountPlanPage.js b/ghost/portal/src/components/pages/AccountPlanPage.js new file mode 100644 index 0000000000..85bac23898 --- /dev/null +++ b/ghost/portal/src/components/pages/AccountPlanPage.js @@ -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 ( +
+
this.onBack(e)}> < Back
+
Choose Plan
+
+ ); + } + + 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 ( +
+ this.onPlanSelect(e, name)} + /> + this.onPlanCheckout(e)} + brandColor={this.context.brandColor} + style={{button: {marginTop: '12px'}}} + /> +
+ ); + } + + render() { + return ( +
+ {this.renderHeader()} + {this.renderPlanChooser()} +
+ ); + } +} \ No newline at end of file