-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsanity.ts
204 lines (182 loc) · 4.21 KB
/
sanity.ts
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import { createClient, type ClientConfig } from '@sanity/client';
import 'dotenv/config';
const config: ClientConfig = {
projectId: `zg5gx8g4`,
dataset: `production`,
useCdn: false,
token: process.env.SANITY_TOKEN,
apiVersion: `2024-01-29`,
};
const sanityClient = createClient(config);
const PARENT_DOMAIN = 'https://cartesi.io';
const queryInfobar = `
*[_type == "infobar"][0]{
badge,
name,
url,
enabled
}
`;
const queryNavigation = `
*[_type == "headerNavigation"] {
navLinks[]->{
_id,
label,
link,
isExternal,
children[]->{
_id,
label,
link,
isExternal
}
},
cta->{
_id,
label,
link,
isExternal
}
}
`;
const queryFooter = `
{
"newsletter": *[_type == "newsletter"][0] {
description,
buttonLabel
},
"copyright": *[_type == "footer"][0].copyright,
"navItems": *[_type == "footerNav"][0]{
"navPanel1": navPanel1[]->{
_id,
isExternal,
label,
path,
attachment,
"attachmentUrl": attachment.asset->url,
},
"navPanel2": navPanel2[]->{
_id,
isExternal,
label,
path,
attachment,
"attachmentUrl": attachment.asset->url,
},
"navPanel3": navPanel3[]->{
_id,
isExternal,
label,
path,
icon,
"iconUrl": icon.asset->url,
},
"navPanel4": navPanel4[]->{
_id,
isExternal,
label,
path,
icon,
"iconUrl": icon.asset->url,
}
}
}
`;
const queryStartBuilding = `
*[_type == "homePage"][0] {
startBuilding->{
badge,
title,
buildingSteps[]{
title,
content,
number,
"imageUrl": image.asset->url,
cta->{
label,
link,
isExternal
}
},
}
}
`;
const getInfobar = async () => {
const infobarResponse = await sanityClient.fetch(queryInfobar);
if (infobarResponse.url.startsWith('/')) {
infobarResponse.url = `${PARENT_DOMAIN}${infobarResponse.url}`;
}
infobarResponse.text = infobarResponse.name;
return infobarResponse;
};
const getNavigation = async () => {
const navigationResponse = await sanityClient.fetch(queryNavigation);
const navigationMap = navigationResponse[0].navLinks.map(navLink => {
return {
...navLink,
link: navLink.isExternal
? navLink.link
: `${PARENT_DOMAIN}${navLink.link}`,
children: navLink.children.map(child => {
return {
...child,
link: child.isExternal ? child.link : `${PARENT_DOMAIN}${child.link}`,
};
}),
};
});
const cta = navigationResponse[0].cta
? navigationResponse[0].cta.map(item => {
return {
...item,
link: item.isExternal ? item.link : `${PARENT_DOMAIN}${item.link}`,
};
})
: null;
return {
navLinks: navigationMap,
cta,
};
};
const getFooter = async () => {
const footerResponse = await sanityClient.fetch(queryFooter);
const footerNavItems = footerResponse.navItems;
Object.keys(footerNavItems).forEach(key => {
footerNavItems[key] = footerNavItems[key].map(item => {
return {
...item,
path: item.isExternal ? item.path : `${PARENT_DOMAIN}${item.path}`,
};
});
});
footerResponse.navItems = footerNavItems;
return footerResponse;
};
const getStartBuilding = async () => {
const startBuildingResponse = await sanityClient.fetch(queryStartBuilding);
const startBuilding = startBuildingResponse.startBuilding;
startBuilding.buildingSteps = startBuilding.buildingSteps.map(step => {
return {
...step,
cta: {
...step.cta,
link: step.cta.isExternal
? step.cta.link
: `${PARENT_DOMAIN}${step.cta.link}`,
},
};
});
return startBuilding;
};
export const fetchSanityContent = async () => {
const infobar = await getInfobar();
const navigation = await getNavigation();
const footer = await getFooter();
const startBuilding = await getStartBuilding();
return {
infobar,
navigation,
footer,
startBuilding,
};
};