forked from gridstack/gridstack.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact.html
104 lines (95 loc) · 3.31 KB
/
react.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gridstack.js React integration example</title>
<link rel="stylesheet" href="demo.css" />
<script src="../dist/gridstack-all.js"></script>
<!-- Scripts to use react inside html -->
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
</head>
<body>
<div id="root"></div>
</body>
<script type="text/babel">
class App extends React.Component {
state = {
count: 0,
info: "",
items: [
{ x: 2, y: 1, h: 2 },
{ x: 2, y: 4, w: 3 },
{ x: 4, y: 2 },
{ x: 3, y: 1, h: 2 },
{ x: 0, y: 6, w: 2, h: 2 },
],
};
componentDidMount() {
// Provides access to the GridStack instance across the React component.
this.grid = GridStack.init({
float: true,
cellHeight: "70px",
minRow: 1,
});
this.grid.on("dragstop", (event, element) => {
const node = element.gridstackNode;
this.setState({
info: `you just dragged node #${node.id} to ${node.x},${node.y} – good job!`,
});
// Clear the info text after a two second timeout.
// Clears previous timeout first.
window.clearTimeout(this.timerId);
this.timerId = window.setTimeout(() => {
this.setState({
info: "",
});
}, 2000);
});
}
addNewWidget = () => {
const node = this.state.items[this.state.count] || {
x: Math.round(12 * Math.random()),
y: Math.round(5 * Math.random()),
w: Math.round(1 + 3 * Math.random()),
h: Math.round(1 + 3 * Math.random()),
};
node.id = node.content = String(this.state.count);
this.setState((prevState) => ({
count: prevState.count + 1,
}));
this.grid.addWidget(node);
};
render() {
return (
<div>
<h1>How to integrate GridStack.js with React.js</h1>
<p>
As with any virtualDOM-based framework, you need to check if React
has rendered the DOM (or any updates to it){" "}
<strong>before</strong> you initialize GridStack or call its
methods. As a basic example, check this component's{" "}
<code>mounted</code> hook.
</p>
<p>
If your app requires more complex render logic than the inline
template in `addWidget`, consider
<a href="https://github.com/gridstack/gridstack.js/tree/master/doc#makewidgetel">
makeWidget
</a>
to let React deal with DOM rendering.
</p>
<button type="button" onClick={this.addNewWidget}>
Add Widget
</button>
{this.state.info}
<section class="grid-stack"></section>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById("root"));
</script>
</html>