-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfakeData.js
More file actions
110 lines (107 loc) · 2.45 KB
/
fakeData.js
File metadata and controls
110 lines (107 loc) · 2.45 KB
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
const productList = [
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5c55",
name: "Fork",
description: "Desc1",
quantity: 23,
price: 34.5,
image: "img-1",
onSale: true,
categoryID: "1344d658-fc47-49a5-866e-e617d39533d2",
},
{
id: "0dbb452f-719e-484d-9fca-824143d3666f",
name: "Football",
description: "Desc2",
quantity: 3,
price: 38.5,
image: "img-2",
onSale: true,
categoryID: "1344d658-fc47-49a5-866e-e617d39533b2",
},
{
id: "1344d658-fc47-49a5-866e-e617d39533a2",
name: "Cricket kit",
description: "Desc3",
quantity: 45,
price: 50,
image: "img-3",
onSale: false,
categoryID: "1344d658-fc47-49a5-866e-e617d39533b2",
},
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5zwe",
name: "Butter",
description: "Desc4",
quantity: 235,
price: 12,
image: "img-4",
onSale: true,
categoryID: "1344d658-fc47-49a5-866e-e617d39533d2",
},
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5c44",
name: "spoon",
description: "Desc5",
quantity: 23,
price: 3.5,
image: "img-5",
onSale: false,
categoryID: "1344d658-fc47-49a5-866e-e617d39533d2",
},
];
const categories = [
{
id: "1344d658-fc47-49a5-866e-e617d39533b2",
name: "Sports",
},
{
id: "1344d658-fc47-49a5-866e-e617d39533d2",
name: "Kitchen",
},
];
const reviews = [
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5001",
productID: "ce3114a1-ff26-4736-871e-ad6362bf5c55",
date: "26/10/2022",
comment: "This is Awesome!",
rating: 5,
},
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5002",
productID: "ce3114a1-ff26-4736-871e-ad6362bf5c55",
date: "26/10/2022",
comment: "Average",
rating: 2,
},
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5003",
productID: "ce3114a1-ff26-4736-871e-ad6362bf5c55",
date: "26/10/2022",
comment: "3 from me",
rating: 3,
},
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5004",
productID: "ce3114a1-ff26-4736-871e-ad6362bf5zwe",
date: "26/10/2022",
comment: "5 star",
rating: 5,
},
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5005",
productID: "ce3114a1-ff26-4736-871e-ad6362bf5zwe",
date: "26/10/2022",
comment: "Great!",
rating: 5,
},
{
id: "ce3114a1-ff26-4736-871e-ad6362bf5006",
productID: "1344d658-fc47-49a5-866e-e617d39533a2",
date: "26/10/2022",
comment: "Great I can now play",
rating: 4,
},
];
exports.db = { productList, categories, reviews };