From 680572f49993eaf79af68e48f6638beb0bd4fe20 Mon Sep 17 00:00:00 2001 From: Rish Date: Wed, 20 May 2020 00:13:54 +0530 Subject: [PATCH] Added profile update action from profile page refs https://github.com/TryGhost/members.js/issues/20 - Updates profile update action name in Profile Page - Adds new action to update member info from profile page if member is logged in --- ghost/portal/src/components/ParentContainer.js | 13 +++++++++++++ .../src/components/pages/AccountProfilePage.js | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ghost/portal/src/components/ParentContainer.js b/ghost/portal/src/components/ParentContainer.js index 3c081bb872..537b5767a5 100644 --- a/ghost/portal/src/components/ParentContainer.js +++ b/ghost/portal/src/components/ParentContainer.js @@ -178,6 +178,19 @@ export default class ParentContainer extends React.Component { }); } else if (action === 'editBilling') { await this.GhostApi.member.editBilling(); + } else if (action === 'updateMember') { + const {email, name, subscribed} = data; + const member = await this.GhostApi.member.update({email, name, subscribed}); + if (!member) { + this.setState({ + action: 'updateMember:failed' + }); + } else { + this.setState({ + action: 'updateMember:success', + member: member + }); + } } } catch (e) { this.setState({ diff --git a/ghost/portal/src/components/pages/AccountProfilePage.js b/ghost/portal/src/components/pages/AccountProfilePage.js index a10ea14598..47c79b835a 100644 --- a/ghost/portal/src/components/pages/AccountProfilePage.js +++ b/ghost/portal/src/components/pages/AccountProfilePage.js @@ -28,7 +28,7 @@ export default class AccountProfilePage extends React.Component { onProfileSave(e) { const {email, name} = this.state; - this.context.onAction('profileSave', {email, name}); + this.context.onAction('updateMember', {email, name}); } renderAccountFooter() {