@stripe/stripe-js#loadStripe JavaScript Examples
The following examples show how to use
@stripe/stripe-js#loadStripe.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.js From subscription-use-cases with MIT License | 6 votes |
fetch('/config')
.then((response) => response.json())
.then((data) => {
const stripePromise = loadStripe(data.publishableKey);
ReactDOM.render(
<React.StrictMode>
<Elements stripe={stripePromise}>
<App />
</Elements>
</React.StrictMode>,
document.getElementById('root')
);
})
.catch((error) => {
console.error('Error:', error);
});
Example #2
Source File: platformProductsList.js From stripe-demo-connect-roastery-saas-platform with MIT License | 6 votes |
constructor(props) {
super();
this.props = props;
this.stripePromise = loadStripe(publicKey, {
stripeAccount: this.props.platform.stripe
? this.props.platform.stripe.stripeUserId
: null,
});
}
Example #3
Source File: checkout.js From muffinsplantshop with BSD Zero Clause License | 6 votes |
Checkout = ({ location }) => {
const promise = loadStripe('pk_test_51HZH64Ftxr5x8qZUweU2PctrS7eRgFIRYYMjnZsiRTDLwQqd8yJ2bZxbFnxv3lD2AvwPx6vvpZkXKxTbJhWsKJhv00MpHObXp8');
return (
<Layout location={location}>
<SEO title="Checkout" />
<Elements stripe={promise}>
<CheckoutForm />
</Elements>
</Layout>
);
}
Example #4
Source File: App.js From create-magic-app with MIT License | 5 votes |
promise = loadStripe(process.env.REACT_APP_STRIPE_PK_KEY)
Example #5
Source File: App.js From turqV2 with GNU General Public License v3.0 | 5 votes |
stripePromise = loadStripe(constants.STRIPE_KEY)
Example #6
Source File: index.js From react-elements-netlify-serverless with MIT License | 5 votes |
stripePromise = loadStripe(process.env.REACT_APP_STRIPE_PUBLISHABLE_KEY)
Example #7
Source File: Stripe.js From greenbook with MIT License | 5 votes |
stripePromise = loadStripe(pk)
Example #8
Source File: index.js From rysolv with GNU Affero General Public License v3.0 | 5 votes |
stripePromise = loadStripe(STRIPE_PUBLISHABLE_KEY)
Example #9
Source File: wrap-root-element.js From jamstack-ecommerce with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_KLSysmXwiDBAfXUzFYLUxwnw")
Example #10
Source File: products.js From jamstack-ecommerce with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_KLSysmXwiDBAfXUzFYLUxwnw")
Example #11
Source File: index.js From jamstack-ecommerce with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_KLSysmXwiDBAfXUzFYLUxwnw")
Example #12
Source File: productlist.js From jamstack-ecommerce with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_KLSysmXwiDBAfXUzFYLUxwnw")
Example #13
Source File: index.js From jamstack-ecommerce with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_KLSysmXwiDBAfXUzFYLUxwnw")
Example #14
Source File: checkout-session.js From jamstack-ecommerce with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_KLSysmXwiDBAfXUzFYLUxwnw")
Example #15
Source File: App.js From shopping-cart-fe with MIT License | 5 votes |
function App() {
window.addEventListener('load', () => {
function handleNetworkChange(event) {
// delete this comment
if (navigator.onLine) {
document.getElementById('offline-notification').style.display = 'none';
}
else {
document.getElementById('offline-notification').style.display = 'flex';
}
}
window.addEventListener('online', handleNetworkChange);
window.addEventListener('offline', handleNetworkChange);
});
//TODO: Create a useEffect to get the Stripe Account for store owner dynamicly
const stripePromise = loadStripe('pk_test_VHc4fOD3byWy85jOWOYLijhH00OmL57YuX', {
stripeAccount: 'acct_1H6LilIrVDEEa5AF'
});
return (
<div>
<Switch>
<Elements stripe={stripePromise}>
<PublicRoute path="/register" component={WrappedRegistrationForm} />
{/* {Import WelcomeScreen} */}
<PublicRoute path="/welcome" component={WelcomeScreenForm} />
<PublicRoute path="/brandview" component={BrandView} />
<PublicRoute path="/colorpicker" component={ColorPicker} />
{/* Onboarding reformatted Above */}
<PublicRoute path="/update" component={Update} />
<PublicRoute exact path="/" component={LoginForm} />
<PrivateRoute path="/inventory" component={Inventory} />
{/* Profile View */}
<PrivateRoute path="/profileview" component={ProfileView} />
<PublicRoute path="/resetpassword" component={ResetPasswordForm} />
<PublicRoute path="/setnewpassword" component={SetNewPasswordForm} />
<PublicRoute path="/store/:id" component={StoreView} />
<PublicRoute path="/cart" component={CartView} />
<PrivateRoute path="/api/auth/stripe/token" component={StripeConfirmAccount} />
<PublicRoute path="/savecart" component={SaveCartMain} />
<PrivateRoute path="/createstore" component={CreateStoreForm} />
<PrivateRoute path="/addlogo" component={AddLogoForm} />
<PrivateRoute path="/createitem" component={CreateProductView} />
<PrivateRoute path="/dashboard" component={Home} />
<PrivateRoute path="/updateitem/:id" component={UpdateItem} />
<PrivateRoute path="/order/:id" component={OrderDetailsView} />
<PublicRoute path="/product/:id" component={Single} />
<PublicRoute path="/success/:id" component={CheckoutSuccessView} />
<PrivateRoute path="/account" component={Account} />
</Elements>
</Switch>
<div
id="offline-notification"
style={{
position: 'fixed',
bottom: '0px',
width: '100vw',
height: '4vh',
textAlign: 'center',
backgroundColor: '#ff6663',
justifyContent: 'space-around',
alignItems: 'center',
color: 'white',
fontSize: 'medium',
display: 'none'
}}
>
Offline Mode
</div>
</div>
);
}
Example #16
Source File: PaymentWraper.jsx From real-estate-site with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_pdg00O8tdW99El1V9yrNQrRE00GeePoRWx")
Example #17
Source File: Render.jsx From dineforward with MIT License | 5 votes |
function App() {
const [config, setCOnfig] = useState();
const [cart, setCart] = useState();
const [status, setStatus] = useState();
useEffect(() => {
(async () => {
// Fetch config object
// const config = await fetch('/api/stripe/config').then(res => res.json());
const config = {};
config.stripePromise = loadStripe('pk_test_gTcHufxzRAofRn6BmYNsJWJ100KT6rF8fd');
setCOnfig(config);
// Fetch the products from the API.
// const res = await fetch('/api/products').then(res => res.json());
// const products = res.data;
// const items = products.map(product => ({
// price: product.skus.data[0].price,
// quantity: randomQuantity(1, 2),
// type: 'sku',
// id: product.id,
// name: product.name,
// parent: product.skus.data[0].id,
// attributes: product.skus.data[0].attributes,
// }));
const items = [];
const { paymentIntent } = await fetch('/api/payment_intents', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
currency: config.currency,
items,
}),
}).then(res => res.json());
setCart({
currency: config.currency,
items,
total: items.reduce((sum, item) => sum + item.quantity * item.price, 0),
paymentIntent,
setStatus,
});
})();
}, []);
return (
<Elements stripe={config?.stripePromise ?? null}>
<main
id="main"
className={cart ? (status ? `checkout ${status.class}` : 'checkout') : 'loading'}
>
<Checkout config={config} cart={cart} />
<PaymentResult message={status?.message} />
</main>
<Aside cart={cart} />
</Elements>
);
}
Example #18
Source File: hire-remotely.js From remotebond-remote-jobs with Creative Commons Zero v1.0 Universal | 5 votes |
stripePromise = loadStripe(process.env.NEXT_PUBLIC_STRIPE_PUBLIC_KEY)
Example #19
Source File: AddBalanceDialog.js From react-saas-template with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_6pRNASCoBOKtIshFeQd4XMUh")
Example #20
Source File: index.js From use-shopping-cart with MIT License | 5 votes |
stripePromise = loadStripe(process.env.GATSBY_STRIPE_PUBLISHABLE_KEY)
Example #21
Source File: checkout.js From jamstack-ecommerce with MIT License | 5 votes |
stripePromise = loadStripe("pk_test_DvXwcKnVaaZUpWJIbh9cjgZr00IjIAjZAA")
Example #22
Source File: App.js From fireact with MIT License | 5 votes |
stripePromise = loadStripe(stripeJson.stripeConfig.public_api_key)
Example #23
Source File: App.js From tutorial-code with MIT License | 5 votes |
stripePromise = loadStripe(process.env.PUB_KEY)
Example #24
Source File: App.js From tutorial-code with MIT License | 5 votes |
stripePromise = loadStripe(process.env.STRIPE_PUB_KEY)
Example #25
Source File: App.js From tutorial-code with MIT License | 5 votes |
stripePromise = loadStripe('pk_test_O.....')
Example #26
Source File: Stripe.jsx From saasgear with MIT License | 5 votes |
stripePromise = loadStripe(process.env.REACT_APP_STRIPE_PUBLIC_KEY)
Example #27
Source File: cart.test.js From shopping-cart-fe with MIT License | 4 votes |
describe('Render Tests', () => {
//Needed to repliate stripe
const stripePromise = loadStripe('pk_test_VHc4fOD3byWy85jOWOYLijhH00OmL57YuX', {
stripeAccount: 'acct_1H6LilIrVDEEa5AF'
});
const cartContents = [
{
images: [
'https://res.cloudinary.com/dnsl4nbz4/image/upload/v1595381636/Products/gml8p0moezrwcwc1az0v.jpg',
''
],
price: 100,
productId: '5f1797a53e2aad0004e78a9e',
productName: 'Cool Shirt',
quantity: 1,
variantDetails: [ { _id: '5f1797a53e2aad0004e78a9f', option: 'small', price: 100 } ]
}
];
const store = {
logo: 'https://res.cloudinary.com/dnsl4nbz4/image/upload/v1595295400/zqqf2ualihvj8xuohmgn.png',
color: '#eb144c'
};
const totalPrice = (arr) => {
return arr.reduce((sum, item) => {
return sum + item.price * item.quantity;
}, 0);
};
const paymentPayload = {
price: 100,
clientID: 'acct_1H7ALoISbGMo70op'
};
const orderPayload = {
orderItem: [
{
product: '5f1797a53e2aad0004e78a9e',
quantity: 1,
chosenVariant: {
price: 100
}
}
]
};
const getStoreID = '5f1645a717a4730004f569c3';
test('Render Test for CartView', () => {
renderWithProviders(
<Elements stripe={stripePromise}>
<CartView />
</Elements>
);
});
test('Render test for CartTable', () => {
<Elements stripe={stripePromise}>
<CartTable />
</Elements>;
});
test('Renders Table & Item', () => {
const { getByTestId } = renderWithProviders(
<Elements stripe={stripePromise}>
<CartTable cartContents={cartContents} totalPrice={totalPrice} store={store} />
</Elements>
);
expect(getByTestId('CartTable')).toHaveTextContent('Product');
expect(getByTestId('productName')).toHaveTextContent('Cool Shirt');
expect(getByTestId('price')).toHaveTextContent('$100');
});
test('Total Cost is Working', () => {
const { getByTestId } = renderWithProviders(
<Elements stripe={stripePromise}>
<CartTable cartContents={cartContents} totalPrice={totalPrice} store={store} />
</Elements>
);
expect(getByTestId('total')).toHaveTextContent('$100');
});
});