forked from crowetic/commerce
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
|
import type { CommerceAPI, CommerceAPIConfig } from '@commerce/api'
|
||
|
import { getCommerceApi as commerceApi } from '@commerce/api'
|
||
|
import createFetcher from './utils/fetch-local'
|
||
|
|
||
|
import getAllPages from './operations/get-all-pages'
|
||
|
import getPage from './operations/get-page'
|
||
|
import getSiteInfo from './operations/get-site-info'
|
||
|
import getCustomerWishlist from './operations/get-customer-wishlist'
|
||
|
import getAllProductPaths from './operations/get-all-product-paths'
|
||
|
import getAllProducts from './operations/get-all-products'
|
||
|
import getProduct from './operations/get-product'
|
||
|
|
||
|
export interface LocalConfig extends CommerceAPIConfig {}
|
||
|
const config: LocalConfig = {
|
||
|
commerceUrl: '',
|
||
|
apiToken: '',
|
||
|
cartCookie: '',
|
||
|
customerCookie: '',
|
||
|
cartCookieMaxAge: 2592000,
|
||
|
fetch: createFetcher(() => getCommerceApi().getConfig()),
|
||
|
}
|
||
|
|
||
|
const operations = {
|
||
|
getAllPages,
|
||
|
getPage,
|
||
|
getSiteInfo,
|
||
|
getCustomerWishlist,
|
||
|
getAllProductPaths,
|
||
|
getAllProducts,
|
||
|
getProduct,
|
||
|
}
|
||
|
|
||
|
export const provider = { config, operations }
|
||
|
|
||
|
export type Provider = typeof provider
|
||
|
export type LocalAPI<P extends Provider = Provider> = CommerceAPI<P | any>
|
||
|
|
||
|
export function getCommerceApi<P extends Provider>(
|
||
|
customProvider: P = provider as any
|
||
|
): LocalAPI<P> {
|
||
|
return commerceApi(customProvider as any)
|
||
|
}
|