-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
66 lines (59 loc) · 1.53 KB
/
index.tsx
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
import { GridStackOptions } from "gridstack";
import { useState } from "react";
import { defaultGridOptions } from "../../default-grid-options";
import {
GridStackItem,
GridStackProvider,
GridStackRender,
useGridStackContext,
} from "../../lib";
import { newId } from "../../utils";
export function Simple() {
const [uncontrolledInitialOptions] = useState<GridStackOptions>(() => ({
...defaultGridOptions,
children: [
{ id: "001-item1", h: 2, w: 2, x: 0, y: 0 },
{ id: "001-item2", h: 2, w: 2, x: 2, y: 0 },
],
}));
return (
<GridStackProvider initialOptions={uncontrolledInitialOptions}>
<Toolbar />
<GridStackRender>
<GridStackItem id="001-item1">
<div style={{ color: "yellow" }}>hello</div>
</GridStackItem>
<GridStackItem id="001-item2">
<div style={{ color: "blue" }}>grid</div>
</GridStackItem>
</GridStackRender>
</GridStackProvider>
);
}
export function Toolbar() {
const { addWidget } = useGridStackContext();
function handleAddText(w: number, h: number) {
const widgetId = newId();
addWidget({ id: widgetId, w, h, x: 0, y: 0, content: "text-" + widgetId });
}
return (
<div
style={{
border: "1px solid gray",
padding: "10px",
marginBottom: "10px",
display: "flex",
flexDirection: "row",
gap: "10px",
}}
>
<button
onClick={() => {
handleAddText(2, 2);
}}
>
Add Text (2x2)
</button>
</div>
);
}