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:
parent
16c4f46f9f
commit
09044a5469
2 changed files with 15 additions and 1 deletions
|
@ -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 (
|
||||
<></>
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue