Skip to content

Commit 48bbb00

Browse files
committed
fix ts errors
1 parent 24c4f34 commit 48bbb00

File tree

3 files changed

+123
-6
lines changed

3 files changed

+123
-6
lines changed

examples/kendo-react-e-commerce-astro-app/src/components/Header.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Object.keys(messages).forEach((lang) => {
3636

3737
interface ExtendedMenuItemModel extends MenuItemModel {
3838
category?: string;
39+
url?: string;
3940
code?: string;
4041
}
4142

@@ -53,11 +54,11 @@ const Header: React.FC = () => {
5354
{
5455
text: t.menuJewelry,
5556
items: [
56-
{ text: t.menuBracelets, url: "/kendo-react/kendo-react-e-commerce-astro-app/jewelry/bracelets" },
57-
{ text: t.menuRings, url: "/kendo-react/kendo-react-e-commerce-astro-app/jewelry/rings" },
58-
{ text: t.menuEarrings, url: "/kendo-react/kendo-react-e-commerce-astro-app/jewelry/earrings" },
59-
{ text: t.menuWatches, url: "/kendo-react/kendo-react-e-commerce-astro-app/jewelry/watches" },
60-
{ text: t.menuAll, url: "/kendo-react/kendo-react-e-commerce-astro-app/jewelry/all" },
57+
{ text: t.menuBracelets, url: "/kendo-react/kendo-react-e-commerce-astro-app/products?category=Bracelets" },
58+
{ text: t.menuRings, url: "/kendo-react/kendo-react-e-commerce-astro-app/products?category=Rings" },
59+
{ text: t.menuEarrings, url: "/kendo-react/kendo-react-e-commerce-astro-app/products?category=Earrings" },
60+
{ text: t.menuWatches, url: "/kendo-react/kendo-react-e-commerce-astro-app/products?category=Watches" },
61+
{ text: t.menuAll, url: "/kendo-react/kendo-react-e-commerce-astro-app/products" },
6162
],
6263
},
6364
{

examples/kendo-react-e-commerce-astro-app/src/data/listData.tsx

Lines changed: 114 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ const getTranslations = (): typeof enMessages => {
1919
return translations[language] || translations["en"];
2020
};
2121

22-
// Function to fetch translated data
2322
export const getTranslatedListData = (): ListDataDescriptor[] => {
2423
const t = getTranslations();
2524

@@ -28,125 +27,239 @@ export const getTranslatedListData = (): ListDataDescriptor[] => {
2827
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/diamondWeddingRing.png",
2928
status: t.statuses.statusSale,
3029
title: t.diamondWeddingRing,
30+
titleKey: 'diamondWeddingRing',
3131
category: t.categories.Rings,
32+
categoryKey: 'Rings',
3233
material: t.materials.materialSilver,
34+
materialKey: 'materialSilver',
3335
oldPrice: 990,
3436
newPrice: 890,
3537
},
3638
{
3739
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/silverBraceletCross.png",
3840
status: t.statuses.statusRecommended,
3941
title: t.silverBraceletWithCross,
42+
titleKey: 'silverBraceletWithCross',
4043
category: t.categories.Bracelets,
44+
categoryKey: 'Bracelets',
4145
material: t.materials.materialSilver,
46+
materialKey: 'materialSilver',
4247
oldPrice: null,
4348
newPrice: 270,
4449
},
4550
{
4651
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/pinkSilverBracelet.png",
4752
status: null,
4853
title: t.pinkSilverBracelet,
54+
titleKey: 'pinkSilverBracelet',
4955
category: t.categories.Bracelets,
56+
categoryKey: 'Bracelets',
5057
material: t.materials.materialSilver,
58+
materialKey: 'materialSilver',
5159
oldPrice: null,
5260
newPrice: 460,
5361
},
5462
{
5563
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/yellowGoldEarrings.png",
5664
status: t.statuses.statusSale,
5765
title: t.yellowGoldEarrings,
66+
titleKey: 'yellowGoldEarrings',
5867
category: t.categories.Earrings,
68+
categoryKey: 'Earrings',
5969
material: t.materials.materialGold,
70+
materialKey: 'materialGold',
6071
oldPrice: 500,
6172
newPrice: 380,
6273
},
6374
{
6475
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/necklace.png",
6576
status: null,
6677
title: t.silverHeartNecklace,
78+
titleKey: 'silverHeartNecklace',
6779
category: t.categories.Necklaces,
80+
categoryKey: 'Necklaces',
6881
material: t.materials.materialSilver,
82+
materialKey: 'materialSilver',
6983
oldPrice: null,
7084
newPrice: 400,
7185
},
7286
{
7387
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/handmadeSilverEarrings.png",
7488
status: null,
7589
title: t.handmadeSilverEarrings,
90+
titleKey: 'handmadeSilverEarrings',
7691
category: t.categories.Earrings,
92+
categoryKey: 'Earrings',
7793
material: t.materials.materialSilver,
94+
materialKey: 'materialSilver',
7895
oldPrice: null,
7996
newPrice: 650,
8097
},
8198
{
8299
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/diamondWeddingBands.png",
83100
status: t.statuses.statusRecommended,
84101
title: t.diamondWeddingBands,
102+
titleKey: 'diamondWeddingBands',
85103
category: t.categories.Rings,
104+
categoryKey: 'Rings',
86105
material: t.materials.materialGold,
106+
materialKey: 'materialGold',
87107
oldPrice: null,
88108
newPrice: 4290,
89109
},
90110
{
91111
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/casualSilverWatch.png",
92112
status: null,
93113
title: t.casualSilverWatch,
114+
titleKey: 'casualSilverWatch',
94115
category: t.categories.Watches,
116+
categoryKey: 'Watches',
95117
material: t.materials.materialSilver,
118+
materialKey: 'materialSilver',
96119
oldPrice: null,
97120
newPrice: 390,
98121
},
99122
{
100123
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/silverBraceletOnyx.png",
101124
status: t.statuses.statusSale,
102125
title: t.silverBraceletWithOnyx,
126+
titleKey: 'silverBraceletWithOnyx',
103127
category: t.categories.Bracelets,
128+
categoryKey: 'Bracelets',
104129
material: t.materials.materialSilver,
130+
materialKey: 'materialSilver',
105131
oldPrice: 950,
106132
newPrice: 770,
107133
},
108134
{
109135
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/weddingBandsPearl.png",
110136
status: t.statuses.statusMustHave,
111137
title: t.weddingBandsWithPearls,
138+
titleKey: 'weddingBandsWithPearls',
112139
category: t.categories.Rings,
140+
categoryKey: 'Rings',
113141
material: t.materials.materialGold,
142+
materialKey: 'materialGold',
114143
oldPrice: null,
115144
newPrice: 900,
116145
},
146+
{
147+
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/silverWeddingBands.png",
148+
status: null,
149+
title: t.silverWeddingBands,
150+
titleKey: 'silverWeddingBands',
151+
category: t.categories.Rings,
152+
categoryKey: 'Rings',
153+
material: t.materials.materialSilver,
154+
materialKey: 'materialSilver',
155+
oldPrice: null,
156+
newPrice: 250,
157+
},
158+
{
159+
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/handmadeYellowGoldRing.png",
160+
status: null,
161+
title: t.handmadeYellowGoldRing,
162+
titleKey: 'handmadeYellowGoldRing',
163+
category: t.categories.Rings,
164+
categoryKey: 'Rings',
165+
material: t.materials.materialGold,
166+
materialKey: 'materialGold',
167+
oldPrice: null,
168+
newPrice: 560,
169+
},
117170
{
118171
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/diamondRingSapphire.png",
119172
status: t.statuses.statusMustHave,
120173
title: t.diamondRingWithSapphire,
174+
titleKey: 'diamondRingWithSapphire',
121175
category: t.categories.Rings,
176+
categoryKey: 'Rings',
122177
material: t.materials.materialGold,
178+
materialKey: 'materialGold',
123179
oldPrice: null,
124180
newPrice: 3590,
125181
},
126182
{
127183
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/silverHeartBracelet.png",
128184
status: null,
129185
title: t.silverHeartBracelet,
186+
titleKey: 'silverHeartBracelet',
130187
category: t.categories.Bracelets,
188+
categoryKey: 'Bracelets',
131189
material: t.materials.materialSilver,
190+
materialKey: 'materialSilver',
132191
oldPrice: null,
133192
newPrice: 430,
134193
},
135194
{
136195
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/roseGoldEarringsOpal.png",
137196
status: t.statuses.statusSale,
138197
title: t.roseGoldEarringsWithOpal,
198+
titleKey: 'roseGoldEarringsWithOpal',
139199
category: t.categories.Earrings,
200+
categoryKey: 'Earrings',
140201
material: t.materials.materialGold,
202+
materialKey: 'materialGold',
141203
oldPrice: 850,
142204
newPrice: 690,
143205
},
206+
{
207+
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/silverBraceletTopaz.png",
208+
status: null,
209+
title: t.silverBraceletWithTopaz,
210+
titleKey: 'silverBraceletWithTopaz',
211+
category: t.categories.Bracelets,
212+
categoryKey: 'Bracelets',
213+
material: t.materials.materialSilver,
214+
materialKey: 'materialSilver',
215+
oldPrice: null,
216+
newPrice: 580,
217+
},
218+
{
219+
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/handmadeDiamondRing.png",
220+
status: null,
221+
title: t.handmadeDiamondRing,
222+
titleKey: 'handmadeDiamondRing',
223+
category: t.categories.Rings,
224+
categoryKey: 'Rings',
225+
material: t.materials.materialGold,
226+
materialKey: 'materialGold',
227+
oldPrice: null,
228+
newPrice: 1100,
229+
},
230+
{
231+
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/diamondRingRuby.png",
232+
status: t.statuses.statusMustHave,
233+
title: t.diamondRingWithRuby,
234+
titleKey: 'diamondRingWithRuby',
235+
category: t.categories.Rings,
236+
categoryKey: 'Rings',
237+
material: t.materials.materialGold,
238+
materialKey: 'materialGold',
239+
oldPrice: null,
240+
newPrice: 5560,
241+
},
144242
{
145243
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/stainlessSteelWatch.png",
146244
status: null,
147245
title: t.silverWatch,
246+
titleKey: 'silverWatch',
148247
category: t.categories.Watches,
248+
categoryKey: 'Watches',
149249
material: t.materials.materialSilver,
250+
materialKey: 'materialSilver',
251+
oldPrice: null,
252+
newPrice: 270,
253+
},
254+
{
255+
img: "/kendo-react/kendo-react-e-commerce-astro-app/listViewImages/goldEarringsGarnet.png",
256+
status: null,
257+
title: t.goldEarringsWithGarnet,
258+
titleKey: 'goldEarringsWithGarnet',
259+
category: t.categories.Earrings,
260+
categoryKey: 'Earrings',
261+
material: t.materials.materialGold,
262+
materialKey: 'materialGold',
150263
oldPrice: null,
151264
newPrice: 270,
152265
},

examples/kendo-react-e-commerce-astro-app/src/data/types.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ export interface ListDataDescriptor {
1616
description?: string;
1717
reviews?: number;
1818
rating: number;
19+
titleKey?: string;
1920
category: string;
21+
categoryKey?: string;
22+
descriptionKey?: string;
2023
status?: string;
2124
material: string;
2225
oldPrice: number | null;

0 commit comments

Comments
 (0)