generated from Weaverse/pilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
featured-products.tsx
78 lines (72 loc) · 1.88 KB
/
featured-products.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import type {
HydrogenComponentProps,
HydrogenComponentSchema,
ComponentLoaderArgs,
} from "@weaverse/hydrogen";
import { forwardRef } from "react";
import type { HomepageFeaturedProductsQuery } from "storefrontapi.generated";
import { ProductSwimlane } from "~/modules";
import { HOMEPAGE_FEATURED_PRODUCTS_QUERY } from "~/data/queries";
interface FeaturedProductsProps
extends HydrogenComponentProps<Awaited<ReturnType<typeof loader>>> {
heading: string;
productsCount: number;
}
let FeaturedProducts = forwardRef<HTMLElement, FeaturedProductsProps>(
(props, ref) => {
let { loaderData, heading, productsCount, ...rest } = props;
return (
<section ref={ref} {...rest}>
{loaderData?.products?.nodes ? (
<ProductSwimlane
products={loaderData.products}
title={heading}
count={productsCount}
/>
) : null}
</section>
);
},
);
export default FeaturedProducts;
export let loader = async ({ weaverse }: ComponentLoaderArgs) => {
let { language, country } = weaverse.storefront.i18n;
return await weaverse.storefront.query<HomepageFeaturedProductsQuery>(
HOMEPAGE_FEATURED_PRODUCTS_QUERY,
{
variables: {
country,
language,
},
},
);
};
export let schema: HydrogenComponentSchema = {
type: "featured-products",
title: "Featured products",
inspector: [
{
group: "Featured products",
inputs: [
{
type: "text",
name: "heading",
label: "Heading",
defaultValue: "Featured Products",
placeholder: "Featured Products",
},
{
type: "range",
name: "productsCount",
label: "Number of products",
defaultValue: 12,
configs: {
min: 1,
max: 12,
step: 1,
},
},
],
},
],
};