forked from vercel/commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
268 additions
and
6,740 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.root { | ||
@apply flex flex-row px-2; | ||
@apply w-full h-full flex flex-row px-2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
import type { | ||
GetProductQuery, | ||
GetProductQueryVariables, | ||
} from 'lib/bigcommerce/schema'; | ||
import type { RecursivePartial, RecursiveRequired } from '../types'; | ||
import { getConfig, Images, ProductImageVariables } from '..'; | ||
|
||
export const getProductQuery = /* GraphQL */ ` | ||
query getProduct( | ||
$slug: String! | ||
$imgSmallWidth: Int = 320 | ||
$imgSmallHeight: Int | ||
$imgMediumWidth: Int = 640 | ||
$imgMediumHeight: Int | ||
$imgLargeWidth: Int = 960 | ||
$imgLargeHeight: Int | ||
$imgXLWidth: Int = 1280 | ||
$imgXLHeight: Int | ||
) { | ||
site { | ||
route(path: $slug) { | ||
node { | ||
__typename | ||
... on Product { | ||
entityId | ||
name | ||
path | ||
brand { | ||
name | ||
} | ||
description | ||
prices { | ||
price { | ||
currencyCode | ||
value | ||
} | ||
salePrice { | ||
currencyCode | ||
value | ||
} | ||
} | ||
images { | ||
edges { | ||
node { | ||
urlSmall: url(width: $imgSmallWidth, height: $imgSmallHeight) | ||
urlMedium: url( | ||
width: $imgMediumWidth | ||
height: $imgMediumHeight | ||
) | ||
urlLarge: url(width: $imgLargeWidth, height: $imgLargeHeight) | ||
urlXL: url(width: $imgXLWidth, height: $imgXLHeight) | ||
} | ||
} | ||
} | ||
variants { | ||
edges { | ||
node { | ||
entityId | ||
} | ||
} | ||
} | ||
options { | ||
edges { | ||
node { | ||
entityId | ||
displayName | ||
isRequired | ||
values { | ||
edges { | ||
node { | ||
entityId | ||
label | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
`; | ||
|
||
export interface GetProductResult<T> { | ||
product?: T extends GetProductQuery | ||
? Extract<T['site']['route']['node'], { __typename: 'Product' }> | ||
: unknown; | ||
} | ||
|
||
export type ProductVariables = Images & | ||
Omit<GetProductQueryVariables, keyof ProductImageVariables>; | ||
|
||
async function getProduct(opts: { | ||
query?: string; | ||
variables: ProductVariables; | ||
}): Promise<GetProductResult<GetProductQuery>>; | ||
|
||
async function getProduct<T, V = any>(opts: { | ||
query: string; | ||
variables: V; | ||
}): Promise<GetProductResult<T>>; | ||
|
||
async function getProduct({ | ||
query = getProductQuery, | ||
variables: vars, | ||
}: { | ||
query?: string; | ||
variables: ProductVariables; | ||
}): Promise<GetProductResult<GetProductQuery>> { | ||
const config = getConfig(); | ||
const variables: GetProductQueryVariables = { | ||
...config.imageVariables, | ||
...vars, | ||
}; | ||
const data = await config.fetch<RecursivePartial<GetProductQuery>>(query, { | ||
variables, | ||
}); | ||
const product = data.site?.route?.node; | ||
|
||
if (product?.__typename === 'Product') { | ||
return { | ||
product: product as RecursiveRequired<typeof product>, | ||
}; | ||
} | ||
|
||
return {}; | ||
} | ||
|
||
export default getProduct; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
export type RecursivePartial<T> = { | ||
[P in keyof T]?: RecursivePartial<T[P]>; | ||
}; | ||
|
||
export type RecursiveRequired<T> = { | ||
[P in keyof T]-?: RecursiveRequired<T[P]>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.