-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathStripePayment.tsx
More file actions
304 lines (292 loc) · 8.71 KB
/
StripePayment.tsx
File metadata and controls
304 lines (292 loc) · 8.71 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
import { Elements, PaymentElement, useElements } from "@stripe/react-stripe-js"
import type {
Stripe,
StripeConstructorOptions,
StripeElementLocale,
StripeElements,
StripeElementsOptions,
StripePaymentElementChangeEvent,
StripePaymentElementOptions,
} from "@stripe/stripe-js"
import { type JSX, useContext, useEffect, useRef, useState } from "react"
import Parent from "#components/utils/Parent"
import OrderContext from "#context/OrderContext"
import PaymentMethodContext from "#context/PaymentMethodContext"
import PlaceOrderContext from "#context/PlaceOrderContext"
import useCommerceLayer from "#hooks/useCommerceLayer"
import type { PaymentMethodConfig } from "#reducers/PaymentMethodReducer"
import { setCustomerOrderParam } from "#utils/localStorage"
import type { PaymentSourceProps } from "./PaymentSource"
import { StripeExpressPayment } from "./StripeExpressPayment"
export interface StripeConfig {
containerClassName?: string
hintLabel?: string
name?: string
options?: StripePaymentElementOptions
appearance?: StripeElementsOptions["appearance"]
[key: string]: any
}
interface StripePaymentFormProps {
options?: StripePaymentElementOptions
templateCustomerSaveToWallet?: PaymentSourceProps["templateCustomerSaveToWallet"]
stripe?: Stripe | null
}
interface OnSubmitArgs {
event: HTMLFormElement | null
stripe: Stripe | null
elements: StripeElements | null
}
const defaultOptions: StripePaymentElementOptions = {
layout: {
type: "accordion",
defaultCollapsed: false,
radios: true,
spacedAccordionItems: false,
},
fields: { billingDetails: "never" },
}
const defaultAppearance: StripeElementsOptions["appearance"] = {
theme: "stripe",
variables: {
colorText: "#32325d",
fontFamily: '"Helvetica Neue", Helvetica, sans-serif',
},
}
let selectedPaymentMethodType: string | null = null
function StripePaymentForm({
options = defaultOptions,
templateCustomerSaveToWallet,
stripe,
}: StripePaymentFormProps): JSX.Element {
const ref = useRef<null | HTMLFormElement>(null)
const { currentPaymentMethodType, setPaymentMethodErrors, setPaymentRef } =
useContext(PaymentMethodContext)
const { order, setOrderErrors } = useContext(OrderContext)
const { sdkClient } = useCommerceLayer()
const { setPlaceOrderStatus } = useContext(PlaceOrderContext)
const elements = useElements()
useEffect(() => {
if (ref.current && stripe && elements) {
ref.current.onsubmit = async () => {
return await onSubmit({
event: ref.current,
stripe,
elements,
})
}
setPaymentRef({ ref })
}
return () => {
setPaymentRef({ ref: { current: null } })
}
}, [ref, stripe, elements])
const onSubmit = async ({
event,
stripe,
elements,
}: OnSubmitArgs): Promise<boolean> => {
if (!stripe) return false
const sdk = sdkClient()
if (sdk == null) return false
if (order == null) return false
if (
selectedPaymentMethodType &&
!["apple_pay", "google_pay"].includes(selectedPaymentMethodType)
) {
const { status } = await sdk.orders.retrieve(order?.id, {
fields: ["status"],
})
const isDraftOrder = status === "draft"
if (isDraftOrder) {
/**
* Draft order cannot be placed
*/
setOrderErrors([
{
code: "VALIDATION_ERROR",
resource: "orders",
message: "Draft order cannot be placed",
},
])
setPlaceOrderStatus?.({
status: "disabled",
})
return false
}
}
const savePaymentSourceToCustomerWallet: string =
// @ts-expect-error no type
event?.elements?.save_payment_source_to_customer_wallet?.checked
if (savePaymentSourceToCustomerWallet)
setCustomerOrderParam(
"_save_payment_source_to_customer_wallet",
savePaymentSourceToCustomerWallet,
)
if (elements != null) {
const billingInfo = order?.billing_address
const email = order?.customer_email ?? ""
const billingDetails = {
name: billingInfo?.full_name ?? "",
email,
phone: billingInfo?.phone,
address: {
city: billingInfo?.city,
country: billingInfo?.country_code,
line1: billingInfo?.line_1,
line2: billingInfo?.line_2 ?? "",
postal_code: billingInfo?.zip_code ?? "",
state: billingInfo?.state_code,
},
}
const url = new URL(window.location.href)
const cleanUrl = `${url.origin}${url.pathname}?accessToken=${url.searchParams.get("accessToken")}`
const { error } = await stripe.confirmPayment({
elements,
confirmParams: {
return_url: cleanUrl,
payment_method_data: {
billing_details: billingDetails,
},
},
redirect: "if_required",
})
if (error) {
console.error(error)
setPaymentMethodErrors([
{
code: "PAYMENT_INTENT_AUTHENTICATION_FAILURE",
resource: "payment_methods",
field: currentPaymentMethodType,
message: error.message ?? "",
},
])
return false
}
return true
}
return false
}
async function handleChange(event: StripePaymentElementChangeEvent) {
console.debug("StripePaymentElement onChange event", { event })
selectedPaymentMethodType = event.value.type
// Handle change events from the PaymentElement
if (
event.complete &&
["apple_pay", "google_pay"].includes(event.value.type)
) {
const sdk = sdkClient()
if (sdk == null) return
if (order == null) return
const { status } = await sdk.orders.retrieve(order?.id, {
fields: ["status"],
})
const isDraftOrder = status === "draft"
if (isDraftOrder) {
/**
* Draft order cannot be placed
*/
setOrderErrors([
{
code: "VALIDATION_ERROR",
resource: "orders",
message: "Draft order cannot be placed",
},
])
setPlaceOrderStatus?.({
status: "disabled",
})
return
}
}
}
return (
<form ref={ref}>
{/* <CardElement options={{ ...defaultOptions, ...options }} /> */}
<PaymentElement
id="payment-element"
options={{ ...defaultOptions, ...options }}
onChange={handleChange}
/>
{templateCustomerSaveToWallet && (
<Parent {...{ name: "save_payment_source_to_customer_wallet" }}>
{templateCustomerSaveToWallet}
</Parent>
)}
</form>
)
}
type Props = PaymentMethodConfig["stripePayment"] &
Omit<JSX.IntrinsicElements["div"], "ref"> &
Partial<PaymentSourceProps["templateCustomerSaveToWallet"]> & {
show?: boolean
publishableKey: string
locale?: StripeElementLocale
clientSecret: string
expressPayments?: boolean
connectedAccount?: string
}
export function StripePayment({
publishableKey,
show,
options,
clientSecret,
locale = "auto",
expressPayments = false,
connectedAccount,
...p
}: Props): JSX.Element | null {
const [isLoaded, setIsLoaded] = useState(false)
const [stripe, setStripe] = useState<Stripe | null>(null)
const {
containerClassName,
templateCustomerSaveToWallet,
fonts = [],
appearance,
...divProps
} = p
useEffect(() => {
if (show && publishableKey) {
import("@stripe/stripe-js").then(({ loadStripe }) => {
const getStripe = async (): Promise<void> => {
const options = {
locale,
...(connectedAccount ? { stripeAccount: connectedAccount } : {}),
} satisfies StripeConstructorOptions
const res = await loadStripe(publishableKey, options)
if (res != null) {
setStripe(res)
setIsLoaded(true)
} else {
console.error("Stripe failed to load")
setIsLoaded(false)
}
}
getStripe()
})
}
return () => {
setIsLoaded(false)
}
}, [show, publishableKey, connectedAccount])
const elementsOptions: StripeElementsOptions = {
clientSecret,
appearance: { ...defaultAppearance, ...appearance },
fonts,
}
return isLoaded && stripe != null && clientSecret != null ? (
<div className={containerClassName} {...divProps}>
<Elements stripe={stripe} options={elementsOptions}>
{expressPayments ? (
<StripeExpressPayment clientSecret={clientSecret} />
) : (
<StripePaymentForm
stripe={stripe}
options={options}
templateCustomerSaveToWallet={templateCustomerSaveToWallet}
/>
)}
</Elements>
</div>
) : null
}
export default StripePayment