mirror of
https://github.com/vercel/commerce.git
synced 2025-03-31 17:25:53 +00:00
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import type {
|
|
OperationContext,
|
|
OperationOptions,
|
|
} from '@commerce/api/operations'
|
|
import { normalizePage } from '../../utils'
|
|
import type { ShopifyConfig, Provider } from '..'
|
|
import {
|
|
GetPageQuery,
|
|
GetPageQueryVariables,
|
|
Page as ShopifyPage,
|
|
} from '../../schema'
|
|
import { GetPageOperation } from '../../types/page'
|
|
import getPageQuery from '../../utils/queries/get-page-query'
|
|
|
|
export default function getPageOperation({
|
|
commerce,
|
|
}: OperationContext<Provider>) {
|
|
async function getPage<T extends GetPageOperation>(opts: {
|
|
variables: T['variables']
|
|
config?: Partial<ShopifyConfig>
|
|
preview?: boolean
|
|
}): Promise<T['data']>
|
|
|
|
async function getPage<T extends GetPageOperation>(
|
|
opts: {
|
|
variables: T['variables']
|
|
config?: Partial<ShopifyConfig>
|
|
preview?: boolean
|
|
} & OperationOptions
|
|
): Promise<T['data']>
|
|
|
|
async function getPage<T extends GetPageOperation>({
|
|
query = getPageQuery,
|
|
variables,
|
|
config,
|
|
}: {
|
|
query?: string
|
|
variables: T['variables']
|
|
config?: Partial<ShopifyConfig>
|
|
preview?: boolean
|
|
}): Promise<T['data']> {
|
|
const { fetch, locale } = commerce.getConfig(config)
|
|
|
|
const {
|
|
data: { node: page },
|
|
} = await fetch<GetPageQuery, GetPageQueryVariables>(
|
|
query,
|
|
{
|
|
variables,
|
|
},
|
|
{
|
|
...(locale && {
|
|
headers: {
|
|
'Accept-Language': locale,
|
|
},
|
|
}),
|
|
}
|
|
)
|
|
|
|
return page ? { page: normalizePage(page as ShopifyPage, locale) } : {}
|
|
}
|
|
|
|
return getPage
|
|
}
|