Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
1.1 KiB
Text
26 lines
1.1 KiB
Text
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
import { HeadObjectCommand } from "../commands/HeadObjectCommand";
|
|
const checkState = async (client, input) => {
|
|
let reason;
|
|
try {
|
|
const result = await client.send(new HeadObjectCommand(input));
|
|
reason = result;
|
|
return { state: WaiterState.SUCCESS, reason };
|
|
}
|
|
catch (exception) {
|
|
reason = exception;
|
|
if (exception.name && exception.name == "NotFound") {
|
|
return { state: WaiterState.RETRY, reason };
|
|
}
|
|
}
|
|
return { state: WaiterState.RETRY, reason };
|
|
};
|
|
export const waitForObjectExists = async (params, input) => {
|
|
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
|
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
};
|
|
export const waitUntilObjectExists = async (params, input) => {
|
|
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
|
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
return checkExceptions(result);
|
|
};
|