0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added stripe checkout cancel notification

no issue

- Adds notification for stripe checkout flow notification for free and new members
This commit is contained in:
Rish 2020-09-28 12:20:41 +05:30
parent 16c4f46f9f
commit 09044a5469
2 changed files with 15 additions and 1 deletions

View file

@ -64,6 +64,20 @@ const NotificationText = ({type, status, context}) => {
Success! Check your email for magic link to sign-in.
</p>
);
} else if (type === 'stripe:checkout' && status === 'warning') {
// Stripe checkout flow was cancelled
if (context.member) {
return (
<p>
Plan upgrade was cancelled.
</p>
);
}
return (
<p>
Plan checkout was cancelled.
</p>
);
}
return (
<></>

View file

@ -11,7 +11,7 @@ export const handleAuthActions = ({qsParams, action, status}) => {
return {};
};
export const handleStripeActions = ({qsParams, status, billingOnly}) => {
export const handleStripeActions = ({status, billingOnly}) => {
if (!billingOnly && ['cancel', 'success'].includes(status)) {
const statusVal = status === 'success' ? 'success' : 'warning';
return {