forked from frappe/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseCanvasUtils.ts
More file actions
296 lines (266 loc) · 7.67 KB
/
useCanvasUtils.ts
File metadata and controls
296 lines (266 loc) · 7.67 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
import type Block from "@/block";
import useCanvasStore from "@/stores/canvasStore";
import { CanvasProps } from "@/types/Builder/BuilderCanvas";
import { getRootBlockTemplate } from "@/utils/helpers";
import { useCanvasHistory } from "@/utils/useCanvasHistory";
import { useElementBounding } from "@vueuse/core";
import { nextTick, reactive, ref, Ref } from "vue";
import { toast } from "vue-sonner";
const canvasStore = useCanvasStore();
export function useCanvasUtils(
canvasProps: CanvasProps,
canvasContainer: Ref<HTMLElement | null>,
canvas: Ref<HTMLElement | null>,
rootBlock: Ref<Block>,
selectedBlockIds: Ref<Set<string>>,
canvasHistory: Ref<null | any>,
) {
const isDirty = ref(false);
const containerBound = reactive(useElementBounding(canvasContainer));
const canvasBound = reactive(useElementBounding(canvas));
async function scrollIntoView(
blockToFocus: Block,
canvasProps: CanvasProps,
canvasContainer: Ref<HTMLElement>,
canvas: Ref<HTMLElement>,
) {
// wait for editor to render
await new Promise((resolve) => setTimeout(resolve, 100));
if (!selectedBlockIds.value.has(blockToFocus.blockId)) {
selectBlock(blockToFocus);
}
await nextTick();
// single nextTick is not enough, adding this to ensure the DOM is updated after selection
await nextTick();
if (
!canvasContainer.value ||
!canvas.value ||
blockToFocus.isRoot() ||
!blockToFocus.isVisible() ||
blockToFocus.getParentBlock()?.isSVG()
) {
return;
}
const container = canvasContainer.value as HTMLElement;
const containerRect = container.getBoundingClientRect();
await nextTick();
const selectedBlock = canvasContainer.value.querySelector(
`.editor[data-block-id="${blockToFocus.blockId}"][selected=true]`,
) as HTMLElement;
if (!selectedBlock) {
return;
}
const blockRect = reactive(useElementBounding(selectedBlock));
// check if block is in view
if (
blockRect.top >= containerRect.top &&
blockRect.bottom <= containerRect.bottom &&
blockRect.left >= containerRect.left &&
blockRect.right <= containerRect.right
) {
return;
}
let padding = 80;
let paddingBottom = 200;
const blockWidth = blockRect.width + padding * 2;
const containerBound = container.getBoundingClientRect();
const blockHeight = blockRect.height + padding + paddingBottom;
const scaleX = containerBound.width / blockWidth;
const scaleY = containerBound.height / blockHeight;
const newScale = Math.min(scaleX, scaleY);
const scaleDiff = canvasProps.scale - canvasProps.scale * newScale;
if (scaleDiff > 0.2) {
return;
}
if (newScale < 1) {
canvasProps.scale = canvasProps.scale * newScale;
await new Promise((resolve) => setTimeout(resolve, 100));
await nextTick();
blockRect.update();
}
padding = padding * canvasProps.scale;
paddingBottom = paddingBottom * canvasProps.scale;
// slide in block from the closest edge of the container
const diffTop = containerRect.top - blockRect.top + padding;
const diffBottom = blockRect.bottom - containerRect.bottom + paddingBottom;
const diffLeft = containerRect.left - blockRect.left + padding;
const diffRight = blockRect.right - containerRect.right + padding;
if (diffTop > 0) {
canvasProps.translateY += diffTop / canvasProps.scale;
} else if (diffBottom > 0) {
canvasProps.translateY -= diffBottom / canvasProps.scale;
}
if (diffLeft > 0) {
canvasProps.translateX += diffLeft / canvasProps.scale;
} else if (diffRight > 0) {
canvasProps.translateX -= diffRight / canvasProps.scale;
}
}
function setupHistory() {
canvasHistory.value = useCanvasHistory(rootBlock, selectedBlockIds);
}
const resetZoom = () => {
canvasProps.scale = 1;
canvasProps.translateX = 0;
canvasProps.translateY = 0;
};
const clearCanvas = () => {
rootBlock.value = getRootBlockTemplate();
};
const moveCanvas = (direction: "up" | "down" | "right" | "left") => {
if (direction === "up") {
canvasProps.translateY -= 20;
} else if (direction === "down") {
canvasProps.translateY += 20;
} else if (direction === "right") {
canvasProps.translateX += 20;
} else if (direction === "left") {
canvasProps.translateX -= 20;
}
};
const zoomIn = () => {
canvasProps.scale = Math.min(canvasProps.scale + 0.1, 10);
};
const zoomOut = () => {
canvasProps.scale = Math.max(canvasProps.scale - 0.1, 0.1);
};
function toggleMode(mode: BuilderMode) {
if (!canvasContainer.value) return;
const container = canvasContainer.value as HTMLElement;
if (mode === "text") {
container.style.cursor = "text";
} else if (["container", "image", "repeater"].includes(mode)) {
container.style.cursor = "crosshair";
} else if (mode === "move") {
container.style.cursor = "grab";
} else {
container.style.cursor = "default";
}
}
function setRootBlock(newBlock: Block, resetCanvas = false) {
rootBlock.value = newBlock;
if (canvasHistory.value) {
canvasHistory.value.dispose();
setupHistory();
}
if (resetCanvas) {
nextTick(() => {
setScaleAndTranslate();
toggleDirty(false);
});
}
}
const setScaleAndTranslate = async () => {
if (document.readyState !== "complete") {
await new Promise((resolve) => {
window.addEventListener("load", resolve);
});
}
const paddingX = 300;
const paddingY = 300;
await nextTick();
canvasBound.update();
const containerWidth = containerBound.width;
const canvasWidth = canvasBound.width / canvasProps.scale;
canvasProps.scale = containerWidth / (canvasWidth + paddingX * 2);
canvasProps.translateX = 0;
canvasProps.translateY = 0;
await nextTick();
const scale = canvasProps.scale;
canvasBound.update();
const diffY = containerBound.top - canvasBound.top + paddingY * scale;
if (diffY !== 0) {
canvasProps.translateY = diffY / scale;
}
canvasProps.settingCanvas = false;
};
function selectBlock(_block: Block, multiSelect = false) {
if (multiSelect) {
selectedBlockIds.value.add(_block.blockId);
} else {
selectedBlockIds.value = new Set([_block.blockId]);
}
}
const toggleDirty = (dirty: boolean | null = null) => {
if (dirty === null) {
isDirty.value = !isDirty.value;
} else {
isDirty.value = dirty;
}
};
function getRootBlock() {
return rootBlock.value;
}
function findBlock(blockId: string, blocks?: Block[]): Block | null {
if (!blocks) {
blocks = [getRootBlock()];
}
for (const block of blocks) {
if (block.blockId === blockId) {
return block;
}
if (block.children) {
const found = findBlock(blockId, block.children);
if (found) {
return found;
}
}
}
return null;
}
function removeBlock(block: Block, force: boolean = false) {
if (block.blockId === "root") {
toast.warning("Warning", {
description: "Cannot delete root block",
});
return;
}
if (block.isChildOfComponentBlock()) {
block.toggleVisibility(false);
return;
}
const parentBlock = block.parentBlock;
if (!parentBlock) {
return;
}
const nextSibling = block.getSiblingBlock("next");
if (canvasStore.activeCanvas?.activeBreakpoint === "desktop" || force) {
parentBlock.removeChild(block);
} else {
block.toggleVisibility(false);
}
nextTick(() => {
if (parentBlock.children.length) {
if (nextSibling) {
selectBlock(nextSibling);
}
}
});
}
async function scrollBlockIntoView(blockToFocus: Block) {
return scrollIntoView(
blockToFocus,
canvasProps,
canvasContainer as unknown as Ref<HTMLElement>,
canvas as unknown as Ref<HTMLElement>,
);
}
return {
moveCanvas,
zoomIn,
zoomOut,
toggleMode,
setRootBlock,
selectBlock,
toggleDirty,
findBlock,
removeBlock,
scrollBlockIntoView,
setScaleAndTranslate,
resetZoom,
clearCanvas,
getRootBlock,
setupHistory,
isDirty,
};
}