-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstore.jsx
100 lines (97 loc) · 2.22 KB
/
store.jsx
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
import { applyEdgeChanges, applyNodeChanges } from "reactflow";
import { create } from "zustand";
const useStore = create((set, get) => ({
nodes: [],
edges: [],
viewport: { x: 0, y: 0, zoom: 0 },
needToRenderJson: {
websiteName: "Shopify",
categories: [
{
id: 1,
name: "Electronics",
products: [
{
id: 101,
name: "Smartphone",
brand: "Apple",
price: 999.99,
reviews: [
{
id: 1001,
rating: 4.5,
comment: "Great phone!"
},
{
id: 1002,
rating: 5,
comment: "Best smartphone ever!"
}
]
},
{
id: 102,
name: "Laptop",
brand: "Dell",
price: 1299.99,
reviews: [
{
id: 1003,
rating: 4,
comment: "Good performance, but heavy."
},
{
id: 1004,
rating: 5,
comment: "Excellent laptop for work."
}
]
}
]
},
{
id: 2,
name: "Clothing",
products: [
{
id: 201,
name: "T-Shirt",
brand: "Nike",
price: 29.99,
reviews: []
},
{
id: 202,
name: "Jeans",
brand: "Levi's",
price: 59.99,
reviews: [
{
id: 1005,
rating: 4.5,
comment: "Comfortable and stylish."
}
]
}
]
}
]
},
onNodesChange: (changes) => {
set({ nodes: applyNodeChanges(changes, get().nodes) });
},
onEdgesChange: (changes) => {
set({ edges: applyEdgeChanges(changes, get().edges) });
},
setNodes: (nodes) => {
set({ nodes: [...nodes] });
},
setEdges: (edges) => {
set({ edges: [...edges] });
},
setNeedToRenderJson: (json) => {
console.log(json);
set({nodes:[], edges: [], needToRenderJson: { ...json } });
},
}));
export default useStore;