diff --git a/ghost/portal/src/components/PopupModal.js b/ghost/portal/src/components/PopupModal.js index 424f74ef50..60143793d0 100644 --- a/ghost/portal/src/components/PopupModal.js +++ b/ghost/portal/src/components/PopupModal.js @@ -9,6 +9,7 @@ import {ParentContext} from './ParentContext'; import FrameStyle from './Frame.styles'; import AccountPlanPage from './pages/AccountPlanPage'; import PaidAccountHomePage from './pages/PaidAccountHomePage'; +import AccountProfilePage from './pages/AccountProfilePage'; const React = require('react'); @@ -67,6 +68,11 @@ const Styles = { width: '500px', minHeight: '290px', maxHeight: '290px' + }, + accountProfile: { + width: '500px', + minHeight: '400px', + maxHeight: '400px' } }, popup: { @@ -105,6 +111,7 @@ const Pages = { accountHome: AccountHomePage, paidAccountHome: PaidAccountHomePage, accountPlan: AccountPlanPage, + accountProfile: AccountProfilePage, magiclink: MagicLinkPage, loading: LoadingPage }; diff --git a/ghost/portal/src/components/pages/AccountProfilePage.js b/ghost/portal/src/components/pages/AccountProfilePage.js new file mode 100644 index 0000000000..2237997d39 --- /dev/null +++ b/ghost/portal/src/components/pages/AccountProfilePage.js @@ -0,0 +1,183 @@ +import {ParentContext} from '../ParentContext'; +import MemberAvatar from '../common/MemberGravatar'; +import ActionButton from '../common/ActionButton'; +import InputField from '../common/InputField'; +import Switch from '../common/Switch'; + +const React = require('react'); + +export default class AccountProfilePage extends React.Component { + static contextType = ParentContext; + + constructor(props, context) { + super(props, context); + this.state = { + name: this.context.member.name || '', + email: this.context.member.email || '' + }; + } + + handleSignout(e) { + e.preventDefault(); + this.context.onAction('signout'); + } + + onBack(e) { + this.context.onAction('back'); + } + + onProfileSave(e) { + const {email, name} = this.state; + this.context.onAction('profileSave', {email, name}); + } + + renderAccountFooter() { + return ( +
+
Delete Account
+
+ this.onProfileSave(e)} + brandColor={this.context.brandColor} + /> +
+
+ ); + } + + renderHeader() { + return ( +
+
this.onBack(e)}> < Back
+
Account Settings
+
+ ); + } + + renderUserAvatar() { + const avatarImg = (this.context.member && this.context.member.avatar_image); + + const avatarContainerStyle = { + position: 'relative', + display: 'flex', + width: '64px', + height: '64px', + marginBottom: '6px', + borderRadius: '100%', + boxShadow: '0 0 0 3px #fff', + border: '1px solid gray', + overflow: 'hidden', + justifyContent: 'center', + alignItems: 'center' + }; + + return ( +
+ +
+ ); + } + + openSettings(e) { + // no-op + } + + openSubscribe(e) { + //no-op + } + + renderAccountDetail(e) { + const {name, firstname, email} = this.context.member; + const siteTitle = this.context.site.title; + + return ( +
+
+ Hey {firstname || name || email}! + You are subscribed to free updates from {siteTitle}, but you don't have a paid subscription to unlock full access +
+ this.openSubscribe(e)} brandColor={this.context.brandColor} /> +
+ ); + } + + handleInput(e, field) { + this.setState({ + [field]: e.target.value + }); + } + + renderInputField(fieldName) { + const fields = { + name: { + type: 'text', + value: this.state.name, + placeholder: 'Name...', + label: 'Name', + name: 'name' + }, + email: { + type: 'email', + value: this.state.email, + placeholder: 'Email...', + label: 'Email', + name: 'email' + } + }; + const field = fields[fieldName]; + return ( + this.handleInput(e, fieldName)} + /> + ); + } + + renderProfileData() { + return ( +
+ {this.renderInputField('name')} + {this.renderInputField('email')} +
+ ); + } + + renderNewsletterOption() { + return ( +
+
+
Newsletter
+
You are not subscribed to email newsletters
+
+
+ {}} /> +
+
+ ); + } + + render() { + return ( +
+ {this.renderHeader()} + {this.renderProfileData()} + {this.renderNewsletterOption()} + {this.renderAccountFooter()} +
+ ); + } +} \ No newline at end of file