-
Notifications
You must be signed in to change notification settings - Fork 42
/
+page.svelte
147 lines (128 loc) · 2.91 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<script>
import { goto } from '$app/navigation'
import { onMount } from 'svelte'
import { loadStripe } from '@stripe/stripe-js'
import { PUBLIC_STRIPE_KEY_JP } from '$env/static/public'
let stripe = null
let error = null
let processing = false
let email
let name
let phone
onMount(async () => {
stripe = await loadStripe(PUBLIC_STRIPE_KEY_JP)
})
async function createPaymentIntent() {
// create payment intent
const response = await fetch('/examples/konbini/payment-intent', {
method: 'POST',
headers: {
'content-type': 'application/json'
}
})
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.confirmKonbiniPayment(clientSecret, {
payment_method: {
billing_details: {
name,
email
}
},
payment_method_options: {
konbini: {
confirmation_number: phone.replace(/\D/g, '')
}
}
})
// log results, for debugging
console.log({ result })
if (result.error) {
// payment failed, notify user
error = result.error
processing = false
} else {
// payment is ready, show next-steps
const { hosted_voucher_url } = result.paymentIntent.next_action.konbini_display_details
goto(`/examples/konbini/next-steps?hosted_voucher_url=${hosted_voucher_url}`)
}
}
</script>
<h1>Konbini Example</h1>
<nav>
<a href="https://github.com/joshnuss/svelte-stripe/tree/main/src/routes/examples/konbini"
>View code</a
>
</nav>
{#if error}
<p class="error">Payment failed. Please try again.</p>
{/if}
<form on:submit|preventDefault={submit}>
<input
name="name"
bind:value={name}
placeholder="Name"
type="text"
required
disabled={processing}
/>
<input
name="email"
bind:value={email}
placeholder="E-mail"
type="email"
required
disabled={processing}
/>
<input
name="phone"
bind:value={phone}
placeholder="Phone"
type="tel"
required
disabled={processing}
/>
<button disabled={processing}>
{#if processing}
Processing...
{:else}
Pay with Konbini
{/if}
</button>
</form>
<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>