Skip to content

Commit 3187c0f

Browse files
committedMar 15, 2025·
Retry price preview before failing
1 parent 12bb16c commit 3187c0f

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed
 

‎services/backend-api/client/src/contexts/PaddleContext.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { useUserMe } from "../features/discordUser";
1616
import { pages, PRODUCT_NAMES, ProductKey } from "../constants";
1717
import { CheckoutSummaryData } from "../types/CheckoutSummaryData";
1818
import { PricePreview } from "../types/PricePreview";
19+
import { retryPromise } from "../utils/retryPromise";
1920

2021
const pwAuth = import.meta.env.VITE_PADDLE_PW_AUTH;
2122
const clientToken = import.meta.env.VITE_PADDLE_CLIENT_TOKEN;
@@ -173,9 +174,11 @@ export const PaddleContextProvider = ({ children }: PropsWithChildren<{}>) => {
173174
> = {};
174175

175176
try {
176-
const previewData = await paddle.PricePreview({
177-
items: priceIdsToGet.map((priceId) => ({ priceId, quantity: 1 })),
178-
});
177+
const previewData = await retryPromise(async () =>
178+
paddle.PricePreview({
179+
items: priceIdsToGet.map((priceId) => ({ priceId, quantity: 1 })),
180+
})
181+
);
179182

180183
const { details, currencyCode } = previewData.data;
181184

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**
2+
* A function to retry a promise with exponential backoff
3+
*/
4+
export const retryPromise = async <T>(
5+
promise: () => Promise<T>,
6+
retries = 3,
7+
delay = 1000
8+
): Promise<T> => {
9+
try {
10+
return await promise();
11+
} catch (error) {
12+
if (retries <= 0) {
13+
throw error;
14+
}
15+
16+
await new Promise<void>((resolve) => {
17+
setTimeout(() => {
18+
resolve();
19+
}, delay);
20+
});
21+
22+
return retryPromise(promise, retries - 1, delay * 2);
23+
}
24+
};

0 commit comments

Comments
 (0)
Please sign in to comment.