-
Notifications
You must be signed in to change notification settings - Fork 42
/
+page.svelte
130 lines (111 loc) · 2.7 KB
/
+page.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<script>
import { goto } from '$app/navigation'
import { onMount } from 'svelte'
import { loadStripe } from '@stripe/stripe-js'
import { PUBLIC_STRIPE_KEY } from '$env/static/public'
import { Elements, Iban } from '$lib'
let stripe = null
let error = null
let ibanElement
let processing = false
let name
let email
onMount(async () => {
stripe = await loadStripe(PUBLIC_STRIPE_KEY)
})
async function createPaymentIntent() {
const response = await fetch('/examples/sepa/payment-intent', {
method: 'POST',
headers: {
'content-type': 'application/json'
},
body: JSON.stringify({ amount: 2000 })
})
const { clientSecret } = await response.json()
return clientSecret
}
async function submit() {
// avoid processing duplicates
if (processing) return
processing = true
// create payment intent server-side
const clientSecret = await createPaymentIntent()
// confirm payment with stripe
const result = await stripe.confirmSepaDebitPayment(clientSecret, {
payment_method: {
sepa_debit: ibanElement,
billing_details: {
name,
email
}
}
})
// log results, for debugging
console.log({ result })
if (result.error) {
// payment failed, notify user
error = result.error
processing = false
} else {
// payment succeeded, redirect to "thank you" page
goto('/examples/sepa/thanks')
}
}
</script>
<h1>SEPA Example</h1>
<nav>
<a href="https://github.com/joshnuss/svelte-stripe/tree/main/src/routes/examples/sepa"
>View code</a
>
</nav>
{#if error}
<p class="error">{error.message} Please try again.</p>
{/if}
<Elements {stripe}>
<form on:submit|preventDefault={submit}>
<input name="name" bind:value={name} placeholder="Name" disabled={processing} />
<input
name="email"
bind:value={email}
placeholder="E-mail"
type="email"
disabled={processing}
/>
<Iban supportedCountries={['SEPA']} bind:element={ibanElement} classes={{ base: 'input' }} />
<button disabled={processing}>
{#if processing}
Processing...
{:else}
Pay
{/if}
</button>
</form>
</Elements>
<style>
.error {
color: tomato;
margin: 2rem 0 0;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
margin: 2rem 0;
}
input,
:global(.input) {
border: solid 1px var(--gray-color);
padding: 1rem;
border-radius: 5px;
background: white;
}
button {
padding: 1rem;
border-radius: 5px;
border: solid 1px #ccc;
color: white;
background: var(--link-color);
font-size: 1.2rem;
margin: 1rem 0;
}
</style>