From 8ea26be5bb7a0f9a5fe34a080144c51042b1f6a8 Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Wed, 23 Sep 2020 12:48:33 +0200 Subject: [PATCH] Updated notification copy no refs. --- ghost/portal/src/components/Notification.js | 32 ++++++------------- .../src/components/Notification.styles.js | 2 +- ghost/portal/src/utils/notifications.js | 6 ++-- 3 files changed, 13 insertions(+), 27 deletions(-) diff --git a/ghost/portal/src/components/Notification.js b/ghost/portal/src/components/Notification.js index 4b4cd91d26..ea994a127d 100644 --- a/ghost/portal/src/components/Notification.js +++ b/ghost/portal/src/components/Notification.js @@ -23,60 +23,46 @@ const Styles = () => { }; }; -const NotificationText = ({type, status}) => { +const NotificationText = ({type, status, context}) => { if (type === 'signin' && status === 'success') { return (

- Hey, you are successfully signed in! + Welcome back! You've successfully signed in.

); } else if (type === 'signin' && status === 'error') { return (

- Hey, looks like you used an invalid link to signin! + Could not sign in! Login link expired. Click here to retry

); } else if (type === 'signup' && status === 'success') { return (

- Hey, you are successfully signed up! + You've successfully subscribed to {context.site.title}

); } else if (type === 'signup' && status === 'error') { return (

- Hey, looks like you used an invalid link to signup! + Could not sign up! Invalid sign up link. Click here to retry

); } else if (type === 'stripe:checkout' && status === 'success') { return (

- You have successfully subscribed to the plan! -

- ); - } else if (type === 'stripe:checkout' && status === 'warning') { - return ( -

- Strpie checkout flow was cancelled. + Success! Your account is fully activated, you now have access to all content.

); } else if (type === 'stripe:billing-update' && status === 'success') { return (

- Successfully updated your billing details on Stripe -

- ); - } else if (type === 'stripe:billing-update' && status === 'warning') { - return ( -

- Cancelled your billing update flow on Stripe + You've successfully updated your billing information

); } return ( -

- Hey, this is a neutral notification. I hope you feel well today, here's a link for you. -

+ <> ); }; @@ -119,7 +105,7 @@ class NotificationContent extends React.Component { return (
this.onAnimationEnd(e)}> - + this.onNotificationClose(e)} />
diff --git a/ghost/portal/src/components/Notification.styles.js b/ghost/portal/src/components/Notification.styles.js index 367b149c8c..7a939f17b9 100644 --- a/ghost/portal/src/components/Notification.styles.js +++ b/ghost/portal/src/components/Notification.styles.js @@ -18,7 +18,7 @@ const NotificationStyles = ` background: var(--grey1); color: var(--white); border-radius: 5px; - box-shadow: 0 3.2px 3.6px rgba(0, 0, 0, 0.024), 0 8.8px 10px -5px rgba(0, 0, 0, 0.12); + box-shadow: 0 3.2px 3.6px rgba(0, 0, 0, 0.024), 0 8.8px 10px -5px rgba(0, 0, 0, 0.08); animation: notification-slidein 0.6s ease-in-out; } diff --git a/ghost/portal/src/utils/notifications.js b/ghost/portal/src/utils/notifications.js index 5511711423..603ed02e81 100644 --- a/ghost/portal/src/utils/notifications.js +++ b/ghost/portal/src/utils/notifications.js @@ -4,7 +4,7 @@ export const handleAuthActions = ({action, status}) => { return { type: action, status: successStatus ? 'success' : 'error', - duration: 2000, + duration: 3000, autoHide: successStatus ? true : false }; } @@ -17,7 +17,7 @@ export const handleStripeActions = ({status}) => { return { type: 'stripe:checkout', status: statusVal, - duration: 2000, + duration: 3000, autoHide: true }; } else if (['billing-update-success', 'billing-update-cancel'].includes(status)) { @@ -25,7 +25,7 @@ export const handleStripeActions = ({status}) => { return { type: 'stripe:billing-update', status: statusVal, - duration: 2000, + duration: 3000, autoHide: true }; }