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 ( +