#jeffreyb_best-practices
1 messages ยท Page 1 of 1 (latest)
๐ 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.
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
hello, got it, give me awhile to check
Are you only showing Apple Pay?
Assuming you are only using Apple Pay via Express Checkout Element, and you are already listening to availablePaymentMethods [0], if applePay return false, Express Checkout Element won't render at all
[0] https://docs.stripe.com/js/element/events/on_ready#element_on_ready-handler-availablePaymentMethods
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;
};
I'm afraid that's not possible