forked from Weaverse/aspen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatured-collections.tsx
83 lines (77 loc) · 2.06 KB
/
featured-collections.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
79
80
81
82
83
import type {
HydrogenComponentProps,
HydrogenComponentSchema,
ComponentLoaderArgs,
} from '@weaverse/hydrogen';
import {forwardRef} from 'react';
import type {HomepageFeaturedCollectionsQuery} from 'storefrontapi.generated';
import {FeaturedCollections as HomeFeaturedCollections} from '~/components';
import {FEATURED_COLLECTIONS_QUERY} from '~/data/queries';
interface FeaturedCollectionsProps
extends HydrogenComponentProps<Awaited<ReturnType<typeof loader>>> {
heading: string;
collectionsCount: number;
}
let FeaturedCollections = forwardRef<HTMLElement, FeaturedCollectionsProps>(
(props, ref) => {
let {loaderData, heading, collectionsCount, ...rest} = props;
return (
<section ref={ref} {...rest}>
{loaderData?.collections?.nodes ? (
<HomeFeaturedCollections
collections={loaderData.collections}
count={collectionsCount}
title={heading}
/>
) : null}
</section>
);
},
);
export default FeaturedCollections;
export let loader = async ({weaverse}: ComponentLoaderArgs) => {
let {language, country} = weaverse.storefront.i18n;
return await weaverse.storefront.query<HomepageFeaturedCollectionsQuery>(
FEATURED_COLLECTIONS_QUERY,
{
variables: {
country,
language,
},
},
);
};
export let schema: HydrogenComponentSchema = {
type: 'featured-collections',
title: 'Featured collections',
limit: 1,
enabledOn: {
pages: ['INDEX'],
},
inspector: [
{
group: 'Featured collections',
inputs: [
{
type: 'text',
name: 'heading',
label: 'Heading',
defaultValue: 'Featured Collections',
placeholder: 'Featured Collections',
},
{
type: 'range',
name: 'collectionsCount',
label: 'Number of collections',
defaultValue: 4,
configs: {
min: 1,
max: 4,
step: 1,
},
},
],
},
],
toolbar: ['general-settings', ['duplicate', 'delete']],
};