mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 16:07:01 +00:00
Add catalogItems API method
Signed-off-by: Loan Laux <loan@outgrow.io>
This commit is contained in:
parent
ad1547a586
commit
3001611057
@ -1 +0,0 @@
|
||||
export default function noopApi(...args: any[]): void {}
|
@ -1 +0,0 @@
|
||||
export default function noopApi(...args: any[]): void {}
|
@ -0,0 +1,23 @@
|
||||
import catalogItemsQuery from '@framework/utils/queries/catalog-items-query'
|
||||
import { normalizeProduct } from '@framework/utils'
|
||||
import type { ProductsEndpoint } from '.'
|
||||
|
||||
const getCart: ProductsEndpoint['handlers']['getProducts'] = async ({
|
||||
req,
|
||||
res,
|
||||
config,
|
||||
}) => {
|
||||
const {
|
||||
data: { catalogItems },
|
||||
} = await config.fetch(catalogItemsQuery, {
|
||||
variables: {
|
||||
shopIds: [config.shopId],
|
||||
},
|
||||
})
|
||||
|
||||
const products = catalogItems.map((item) => normalizeProduct(item))
|
||||
|
||||
res.status(200).json({ data: products ?? null })
|
||||
}
|
||||
|
||||
export default getCart
|
@ -0,0 +1,19 @@
|
||||
import { CommerceAPI, createEndpoint, GetAPISchema } from '@commerce/api'
|
||||
import productsEndpoint from '@commerce/api/endpoints/catalog/products'
|
||||
import type { ProductsSchema } from '@commerce/types/product'
|
||||
import getProducts from './get-products'
|
||||
|
||||
export type ProductsAPI = GetAPISchema<CommerceAPI, ProductsSchema>
|
||||
|
||||
export type ProductsEndpoint = ProductsAPI['endpoint']
|
||||
|
||||
export const handlers: ProductsEndpoint['handlers'] = {
|
||||
getProducts,
|
||||
}
|
||||
|
||||
const productsApi = createEndpoint<ProductsAPI>({
|
||||
handler: productsEndpoint,
|
||||
handlers,
|
||||
})
|
||||
|
||||
export default productsApi
|
@ -1,80 +1,51 @@
|
||||
import { SWRHook } from '@commerce/utils/types'
|
||||
import useSearch, { UseSearch } from '@commerce/product/use-search'
|
||||
|
||||
import { CatalogItemEdge } from '../schema'
|
||||
import {
|
||||
catalogItemsQuery,
|
||||
getCollectionProductsQuery,
|
||||
getSearchVariables,
|
||||
normalizeProduct,
|
||||
} from '../utils'
|
||||
|
||||
import { Product } from '@commerce/types'
|
||||
|
||||
export default useSearch as UseSearch<typeof handler>
|
||||
|
||||
export type SearchProductsInput = {
|
||||
search?: string
|
||||
categoryId?: string
|
||||
brandId?: string
|
||||
categoryId?: number | string
|
||||
brandId?: number
|
||||
sort?: string
|
||||
shopId?: string
|
||||
locale?: string
|
||||
}
|
||||
|
||||
export type SearchProductsData = {
|
||||
products: Product[]
|
||||
found: boolean
|
||||
}
|
||||
|
||||
export const handler: SWRHook<
|
||||
SearchProductsData,
|
||||
SearchProductsInput,
|
||||
SearchProductsInput
|
||||
> = {
|
||||
export const handler: SWRHook<any> = {
|
||||
fetchOptions: {
|
||||
query: catalogItemsQuery,
|
||||
url: '/api/catalog/products',
|
||||
method: 'GET',
|
||||
},
|
||||
async fetcher({ input, options, fetch }) {
|
||||
const { brandId, shopId } = input
|
||||
fetcher({ input: { search, categoryId, brandId, sort }, options, fetch }) {
|
||||
// Use a dummy base as we only care about the relative path
|
||||
const url = new URL(options.url!, 'http://a')
|
||||
|
||||
const data = await fetch({
|
||||
query: options.query,
|
||||
method: options?.method,
|
||||
variables: {
|
||||
...getSearchVariables(input),
|
||||
shopIds: [shopId],
|
||||
},
|
||||
})
|
||||
if (search) url.searchParams.set('search', search)
|
||||
if (Number.isInteger(categoryId))
|
||||
url.searchParams.set('categoryId', String(categoryId))
|
||||
if (Number.isInteger(brandId))
|
||||
url.searchParams.set('brandId', String(brandId))
|
||||
if (sort) url.searchParams.set('sort', sort)
|
||||
|
||||
let edges
|
||||
|
||||
edges = data.catalogItems?.edges ?? []
|
||||
if (brandId) {
|
||||
edges = edges.filter(
|
||||
({ node: { vendor } }: CatalogItemEdge) => vendor === brandId
|
||||
)
|
||||
}
|
||||
|
||||
return {
|
||||
products: edges.map(({ node }: CatalogItemEdge) =>
|
||||
normalizeProduct(node)
|
||||
),
|
||||
found: !!edges.length,
|
||||
}
|
||||
},
|
||||
useHook: ({ useData }) => (input = {}) => {
|
||||
return useData({
|
||||
input: [
|
||||
['search', input.search],
|
||||
['categoryId', input.categoryId],
|
||||
['brandId', input.brandId],
|
||||
['sort', input.sort],
|
||||
['shopId', input.shopId],
|
||||
],
|
||||
swrOptions: {
|
||||
revalidateOnFocus: false,
|
||||
...input.swrOptions,
|
||||
},
|
||||
return fetch({
|
||||
url: url.pathname + url.search,
|
||||
method: options.method,
|
||||
})
|
||||
},
|
||||
useHook:
|
||||
({ useData }) =>
|
||||
(input = {}) => {
|
||||
return useData({
|
||||
input: [
|
||||
['search', input.search],
|
||||
['categoryId', input.categoryId],
|
||||
['brandId', input.brandId],
|
||||
['sort', input.sort],
|
||||
],
|
||||
swrOptions: {
|
||||
revalidateOnFocus: false,
|
||||
...input.swrOptions,
|
||||
},
|
||||
})
|
||||
},
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
import productsApi from '@framework/api/endpoints/catalog/products'
|
||||
import productsApi from '@framework/api/endpoints/catalog/get-products'
|
||||
import commerce from '@lib/api/commerce'
|
||||
|
||||
export default productsApi(commerce)
|
||||
|
@ -43,7 +43,6 @@ export async function getStaticProps({
|
||||
pages,
|
||||
categories,
|
||||
brands,
|
||||
shopId: config?.shopId,
|
||||
},
|
||||
revalidate: 200,
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user