4
0
forked from crowetic/commerce
commerce/packages/shopify/src/utils/get-search-variables.ts
2022-12-21 09:51:55 -06:00

32 lines
603 B
TypeScript

import getSortVariables from './get-sort-variables'
import { SearchProductsBody } from '@vercel/commerce/types/product'
export const getSearchVariables = ({
brandId,
search,
categoryId,
sort,
locale,
}: SearchProductsBody) => {
let query = ''
if (search) {
query += `(product_type:${search}) OR (title:${search}) OR (tag:${search}) `
}
if (brandId) {
query += `${search ? 'AND ' : ''}vendor:${brandId}`
}
return {
categoryId,
query,
...getSortVariables(sort, !!categoryId),
...(locale && {
locale,
}),
}
}
export default getSearchVariables