Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

use-stripe.js 508B

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. };