mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
* Update product types * Cart types progress, add zod & initial schema validator * Update normalize.ts * Update with-schema-parser.ts * Updated types, schemas & providers * Fix providers after schema parse errors * Fix paths * More provider fixes * Fix kibocommerce & commercejs * Add customer updated types & fixes * Add checkout & customer types * Import core types only from commerce * Update tsconfig.json * Convert hooks interfaces to types * Requested changes * Change to relative paths * Move Zod dependency
55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
import type {
|
|
OperationContext,
|
|
OperationOptions,
|
|
} from '@vercel/commerce/api/operations'
|
|
import type { GetPageOperation, Page } from '@vercel/commerce/types/page'
|
|
import type { RecursivePartial, RecursiveRequired } from '../utils/types'
|
|
import type { BigcommerceConfig, Provider } from '..'
|
|
import { normalizePage } from '../../lib/normalize'
|
|
|
|
export default function getPageOperation({
|
|
commerce,
|
|
}: OperationContext<Provider>) {
|
|
async function getPage<T extends GetPageOperation>(opts: {
|
|
variables: T['variables']
|
|
config?: Partial<BigcommerceConfig>
|
|
preview?: boolean
|
|
}): Promise<T['data']>
|
|
|
|
async function getPage<T extends GetPageOperation>(
|
|
opts: {
|
|
variables: T['variables']
|
|
config?: Partial<BigcommerceConfig>
|
|
preview?: boolean
|
|
} & OperationOptions
|
|
): Promise<T['data']>
|
|
|
|
async function getPage<T extends GetPageOperation>({
|
|
url,
|
|
variables,
|
|
config,
|
|
preview,
|
|
}: {
|
|
url?: string
|
|
variables: T['variables']
|
|
config?: Partial<BigcommerceConfig>
|
|
preview?: boolean
|
|
}): Promise<T['data']> {
|
|
const cfg = commerce.getConfig(config)
|
|
// RecursivePartial forces the method to check for every prop in the data, which is
|
|
// required in case there's a custom `url`
|
|
const { data } = await cfg.storeApiFetch<
|
|
RecursivePartial<{ data: Page[] }>
|
|
>(url || `/v3/content/pages?id=${variables.id}&include=body`)
|
|
const firstPage = data?.[0]
|
|
const page = firstPage as RecursiveRequired<typeof firstPage>
|
|
|
|
if (preview || page?.is_visible) {
|
|
return { page: normalizePage(page as any) }
|
|
}
|
|
return {}
|
|
}
|
|
|
|
return getPage
|
|
}
|