#jeffreyb_best-practices

1 messages ยท Page 1 of 1 (latest)

lavish thunderBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

๐Ÿ”— This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1402172926245208186

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

magic tangle
#

I know we can check it via onReady, but if Apple Pay is not supported via browser, I want to not render ExpressCheckoutElement at all

river folio
#

hello, got it, give me awhile to check

magic tangle
#

I have a wrapper where ExpressCheckoutElement is. If Apple Pay will not be rendered, I want to be able to detect it before I mount my wrapper. We currently have this check for another payment gateway. I want to apply something similar for Stripe

export const browserSupportsApplePay = () => {

    const isSupported =
        window.location.protocol.includes(PROTOCOL.HTTPS) &&
        window.ApplePaySession &&
        window.ApplePaySession.supportsVersion(3) &&
        window.ApplePaySession.canMakePayments();

    return !!isSupported;
};
river folio
#

I'm afraid that's not possible

magic tangle
#

๐Ÿ™ that's unfortunate

#

Thank you though