forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonload.tsx
48 lines (42 loc) · 1006 Bytes
/
onload.tsx
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
import { useMemo, useState } from 'react'
import Script from 'next/script'
export default function Onload() {
const [stripe, setStripe] = useState<{ stripe: typeof window.Stripe } | null>(
null
)
const methods = useMemo(
() =>
stripe
? Object.entries(stripe.stripe).filter(
([_key, value]) => typeof value === 'function'
)
: [],
[stripe]
)
function handleLoad() {
const stripe = window.Stripe('pk_test_1234')
console.log('Stripe loaded: ', stripe)
setStripe({ stripe })
}
return (
<>
{/* We load Stripe sdk */}
<Script
id="stripe-js"
src="https://js.stripe.com/v3/"
onLoad={handleLoad}
/>
<main>
<h1>Executing code after loading</h1>
<div>
<p>Stripe methods: </p>
<ul>
{methods.map(([method]) => (
<li key={method}>{method}</li>
))}
</ul>
</div>
</main>
</>
)
}