Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021
  1. import { loadStripe } from '@stripe/stripe-js';
  2. export const useStripe = async ({ lineItems }) => {
  3. let stripePromise = null;
  4. const getStripe = () => {
  5. if (!stripePromise) {
  6. stripePromise = loadStripe(process.env.NEXT_PUBLIC_API_KEY);
  7. }
  8. return stripePromise;
  9. };
  10. const stripe = await getStripe();
  11. await stripe.redirectToCheckout({
  12. mode: 'payment',
  13. lineItems,
  14. successUrl: `${window.location.origin}/review`,
  15. cancelUrl: `${window.location.origin}/cart`,
  16. });
  17. };