@flozy/editor 9.8.5 → 9.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Editor/ChatEditor.js +17 -16
- package/dist/Editor/CommonEditor.js +119 -18
- package/dist/Editor/DialogWrapper.js +31 -25
- package/dist/Editor/Editor.css +16 -8
- package/dist/Editor/Elements/AI/PopoverAIInput.js +11 -3
- package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
- package/dist/Editor/Elements/Button/EditorButton.js +37 -25
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +61 -14
- package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +10 -7
- package/dist/Editor/Elements/Color Picker/Styles.js +15 -13
- package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +4 -2
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +448 -0
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +21 -6
- package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +5 -1
- package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +3 -2
- package/dist/Editor/Elements/DataView/Layouts/Options/index.js +11 -0
- package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
- package/dist/Editor/Elements/Embed/Image.js +2 -2
- package/dist/Editor/Elements/Embed/Video.js +1 -1
- package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +48 -22
- package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +25 -4
- package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +46 -3
- package/dist/Editor/Elements/FreeGrid/Options/More.js +7 -2
- package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
- package/dist/Editor/Elements/Grid/GridItem.js +1 -1
- package/dist/Editor/Elements/List/CheckList.js +4 -1
- package/dist/Editor/Elements/Search/SearchButton.js +1 -1
- package/dist/Editor/Elements/Search/SearchList.js +3 -2
- package/dist/Editor/Elements/Signature/SignatureOptions/DrawSignature.js +2 -8
- package/dist/Editor/Elements/SimpleText/index.js +9 -1
- package/dist/Editor/Elements/SimpleText/style.js +2 -2
- package/dist/Editor/Elements/Table/Table.js +3 -3
- package/dist/Editor/Elements/Title/title.js +9 -8
- package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
- package/dist/Editor/MiniEditor.js +2 -1
- package/dist/Editor/Styles/EditorStyles.js +5 -5
- package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
- package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
- package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +4 -2
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +167 -42
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +7 -4
- package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +2 -1
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +72 -12
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +95 -23
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +439 -0
- package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
- package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
- package/dist/Editor/assets/svg/BackIcon.js +18 -0
- package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
- package/dist/Editor/assets/svg/ResetIconNew.js +23 -0
- package/dist/Editor/assets/svg/ThemeIcons.js +293 -0
- package/dist/Editor/common/ColorPickerButton.js +38 -16
- package/dist/Editor/common/CustomColorPicker/index.js +131 -0
- package/dist/Editor/common/CustomColorPicker/style.js +53 -0
- package/dist/Editor/common/CustomDialog2/index.js +94 -0
- package/dist/Editor/common/CustomDialog2/style.js +67 -0
- package/dist/Editor/common/CustomSelect.js +43 -0
- package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
- package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
- package/dist/Editor/common/Icon.js +31 -1
- package/dist/Editor/common/ImageSelector/Styles.js +3 -9
- package/dist/Editor/common/MUIIcon/index.js +0 -3
- package/dist/Editor/common/RnD/ContextMenu/CMenus.js +24 -0
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +2 -1
- package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +4 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +3 -1
- package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
- package/dist/Editor/common/RnD/ShadowElement.js +2 -1
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +8 -2
- package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
- package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -3
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +73 -9
- package/dist/Editor/common/RnD/Utils/index.js +3 -0
- package/dist/Editor/common/RnD/VirtualElement/BoxHeaderAutoAlignment.js +43 -0
- package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +44 -0
- package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
- package/dist/Editor/common/RnD/VirtualElement/helper.js +382 -0
- package/dist/Editor/common/RnD/VirtualElement/index.js +187 -103
- package/dist/Editor/common/RnD/VirtualElement/styles.js +155 -7
- package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
- package/dist/Editor/common/RnD/index.js +59 -10
- package/dist/Editor/common/Shorthands/elements.js +54 -0
- package/dist/Editor/common/SnackBar/index.js +43 -0
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +5 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +12 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
- package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +16 -8
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +36 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +16 -7
- package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +7 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +15 -7
- package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
- package/dist/Editor/common/SwipeableDrawer/index.js +1 -1
- package/dist/Editor/common/Uploader.js +8 -0
- package/dist/Editor/common/iconslist.js +7 -8
- package/dist/Editor/commonStyle.js +95 -60
- package/dist/Editor/helper/textIndeces.js +58 -0
- package/dist/Editor/helper/theme.js +202 -2
- package/dist/Editor/hooks/useAutoScroll.js +38 -0
- package/dist/Editor/hooks/useEditorTheme.js +153 -0
- package/dist/Editor/hooks/useMouseMove.js +9 -3
- package/dist/Editor/hooks/useThemeValues.js +63 -0
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +11 -9
- package/dist/Editor/plugins/withLinks.js +9 -10
- package/dist/Editor/plugins/withTable.js +1 -1
- package/dist/Editor/theme/ThemeList.js +50 -173
- package/dist/Editor/theme/index.js +149 -0
- package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
- package/dist/Editor/themeSettings/buttons/index.js +290 -0
- package/dist/Editor/themeSettings/buttons/style.js +23 -0
- package/dist/Editor/themeSettings/colorTheme/index.js +309 -0
- package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
- package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
- package/dist/Editor/themeSettings/fonts/index.js +240 -0
- package/dist/Editor/themeSettings/fonts/style.js +62 -0
- package/dist/Editor/themeSettings/icons.js +60 -0
- package/dist/Editor/themeSettings/index.js +361 -0
- package/dist/Editor/themeSettings/style.js +292 -0
- package/dist/Editor/themeSettingsAI/icons.js +96 -0
- package/dist/Editor/themeSettingsAI/index.js +355 -0
- package/dist/Editor/themeSettingsAI/saveTheme.js +202 -0
- package/dist/Editor/themeSettingsAI/style.js +324 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +171 -45
- package/dist/Editor/utils/button.js +1 -17
- package/dist/Editor/utils/draftToSlate.js +3 -2
- package/dist/Editor/utils/font.js +40 -37
- package/dist/Editor/utils/freegrid.js +2 -3
- package/dist/Editor/utils/helper.js +90 -19
- package/package.json +4 -4
@@ -1,152 +1,236 @@
|
|
1
|
-
import React, { useEffect, useRef } from "react";
|
1
|
+
import React, { useEffect, useMemo, useRef, useState } from "react";
|
2
2
|
import { Box } from "@mui/material";
|
3
3
|
import useVirtualElementStyles from "./styles";
|
4
4
|
import updateAutoProps from "./updateAutoProps";
|
5
|
-
import { calculateGridArea } from "../Utils/gridDropItem";
|
5
|
+
import { ROW_HEIGHT, calculateGridArea } from "../Utils/gridDropItem";
|
6
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
7
7
|
const ROOT_ITEM_CLASS = ".freegrid-item.path-3";
|
8
|
+
export function getStartRow(el) {
|
9
|
+
const gridArea = el.dataset.gridAreaXs;
|
10
|
+
if (gridArea) {
|
11
|
+
const [startRow] = gridArea.split("/").map(num => parseInt(num));
|
12
|
+
return startRow;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
function appendGridOccupied(domItem, startRow, fullHeight, lastRow) {
|
16
|
+
const endRow = startRow + Math.floor(fullHeight / ROW_HEIGHT) + 1;
|
17
|
+
lastRow = Math.max(endRow, lastRow);
|
18
|
+
const gridArea = `${startRow}/1/${endRow}/2`;
|
19
|
+
domItem.style.setProperty("--gridArea_xs", gridArea);
|
20
|
+
domItem.dataset.gridAreaXs = gridArea;
|
21
|
+
domItem.classList.add("exclude-virtual");
|
22
|
+
return {
|
23
|
+
domItem,
|
24
|
+
updatedLastRow: lastRow,
|
25
|
+
gridArea
|
26
|
+
};
|
27
|
+
}
|
8
28
|
|
9
29
|
// Function to group items by path and calculate heights
|
10
|
-
function groupByPathAndCalculateHeight(
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
// Step 1: Group items based on their path
|
15
|
-
data.forEach(item => {
|
16
|
-
const segments = item.path.split("|");
|
17
|
-
let current = root;
|
18
|
-
segments.forEach((segment, index) => {
|
19
|
-
if (!current[segment]) {
|
20
|
-
current[segment] = {
|
21
|
-
children: {},
|
22
|
-
props: {
|
23
|
-
height: 0
|
24
|
-
}
|
25
|
-
};
|
26
|
-
}
|
27
|
-
if (index === segments.length - 1) {
|
28
|
-
// Assign the properties of the item including height
|
29
|
-
current[segment] = {
|
30
|
-
...item,
|
31
|
-
children: current[segment].children
|
32
|
-
};
|
33
|
-
}
|
34
|
-
current = current[segment].children;
|
35
|
-
});
|
36
|
-
});
|
30
|
+
// function groupByPathAndCalculateHeight(allData) {
|
31
|
+
// const data = JSON.parse(JSON.stringify([...allData]));
|
32
|
+
// const root = {};
|
33
|
+
// const heightData = {};
|
37
34
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
return node.props.height;
|
43
|
-
}
|
35
|
+
// // Step 1: Group items based on their path
|
36
|
+
// data.forEach((item) => {
|
37
|
+
// const segments = item.path.split("|");
|
38
|
+
// let current = root;
|
44
39
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
});
|
40
|
+
// segments.forEach((segment, index) => {
|
41
|
+
// if (!current[segment]) {
|
42
|
+
// current[segment] = { children: {}, props: { height: 0 } };
|
43
|
+
// }
|
50
44
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
}
|
56
|
-
return totalHeight;
|
57
|
-
};
|
45
|
+
// if (index === segments.length - 1) {
|
46
|
+
// // Assign the properties of the item including height
|
47
|
+
// current[segment] = { ...item, children: current[segment].children };
|
48
|
+
// }
|
58
49
|
|
59
|
-
|
60
|
-
|
50
|
+
// current = current[segment].children;
|
51
|
+
// });
|
52
|
+
// });
|
53
|
+
|
54
|
+
// // Step 2: Recursively calculate the height of each parent based on children
|
55
|
+
// const calculateHeight = (node) => {
|
56
|
+
// if (!node.children || Object.keys(node.children).length === 0) {
|
57
|
+
// // Base case: If there are no children, return the node's height
|
58
|
+
// return node.props.height;
|
59
|
+
// }
|
60
|
+
|
61
|
+
// // Calculate the height by summing the heights of all children
|
62
|
+
// let totalHeight = 0;
|
63
|
+
// Object.values(node.children).forEach((child) => {
|
64
|
+
// totalHeight += calculateHeight(child);
|
65
|
+
// });
|
66
|
+
|
67
|
+
// // Update the parent's height to be the total height of its children
|
68
|
+
// node.props.height = totalHeight;
|
69
|
+
// if (node?.path) {
|
70
|
+
// heightData[node.path] = totalHeight;
|
71
|
+
// }
|
72
|
+
// return totalHeight;
|
73
|
+
// };
|
74
|
+
|
75
|
+
// // Start calculation from the root
|
76
|
+
// Object.values(root).forEach((node) => calculateHeight(node));
|
77
|
+
|
78
|
+
// return { root, heightData };
|
79
|
+
// }
|
80
|
+
|
81
|
+
const handleGridItem = (dom, lastRow) => {
|
82
|
+
const startRow = getStartRow(dom);
|
83
|
+
const {
|
84
|
+
marginTopXs,
|
85
|
+
heightXs
|
86
|
+
} = dom.dataset;
|
87
|
+
const marginTop = marginTopXs ? Number(marginTopXs) : 0;
|
88
|
+
const fullHeight = Number(heightXs) + marginTop;
|
89
|
+
return appendGridOccupied(dom, startRow, fullHeight, lastRow);
|
90
|
+
};
|
91
|
+
const handleNonGridItem = (dom, lastRow) => {
|
92
|
+
const rect = dom.getBoundingClientRect();
|
93
|
+
dom.style.setProperty("--height_xs", rect.height + "px"); // assign the auto height that taken
|
94
|
+
const startRow = lastRow || 1;
|
95
|
+
const DEFAULT_NEW_ELEMENT_MARGIN_TOP = 12;
|
96
|
+
let fullHeight = rect.height + DEFAULT_NEW_ELEMENT_MARGIN_TOP;
|
97
|
+
const gridOccupiedData = appendGridOccupied(dom, startRow, fullHeight, lastRow);
|
61
98
|
return {
|
62
|
-
|
63
|
-
|
99
|
+
...gridOccupiedData,
|
100
|
+
fullHeight
|
64
101
|
};
|
65
|
-
}
|
102
|
+
};
|
103
|
+
const appendContainerItems = async (sectionCls, virtualRef, dataSets) => {
|
104
|
+
const cloneNode = document.querySelector(sectionCls)?.cloneNode(true);
|
105
|
+
const items = cloneNode?.querySelectorAll(ROOT_ITEM_CLASS) || [];
|
106
|
+
if (!cloneNode || !items?.length || !virtualRef.current) {
|
107
|
+
return;
|
108
|
+
}
|
109
|
+
|
110
|
+
// Remove all existing elements inside virtualRef.current
|
111
|
+
virtualRef.current.innerHTML = "";
|
112
|
+
virtualRef.current.style.height = `auto`;
|
113
|
+
virtualRef.current.style.gridTemplateRows = `unset`;
|
114
|
+
|
115
|
+
// temporary append section items to get the dom styles
|
116
|
+
virtualRef.current.append(...items);
|
117
|
+
let itemsHTML = "";
|
118
|
+
let lastRow = 0;
|
119
|
+
const gridItems = [];
|
120
|
+
const nonGridItems = [];
|
121
|
+
items.forEach(item => {
|
122
|
+
if (getStartRow(item)) {
|
123
|
+
gridItems.push(item);
|
124
|
+
} else {
|
125
|
+
nonGridItems.push(item);
|
126
|
+
}
|
127
|
+
});
|
128
|
+
|
129
|
+
// to find the previously occupied rows
|
130
|
+
gridItems.forEach(item => {
|
131
|
+
const {
|
132
|
+
updatedLastRow,
|
133
|
+
domItem
|
134
|
+
} = handleGridItem(item, lastRow);
|
135
|
+
lastRow = updatedLastRow;
|
136
|
+
itemsHTML += domItem.outerHTML;
|
137
|
+
});
|
138
|
+
let containerHeight = lastRow ? (lastRow - 1) * ROW_HEIGHT : 0;
|
139
|
+
|
140
|
+
//place it on the next rows that are available
|
141
|
+
nonGridItems.forEach(item => {
|
142
|
+
const {
|
143
|
+
domItem,
|
144
|
+
updatedLastRow,
|
145
|
+
fullHeight
|
146
|
+
} = handleNonGridItem(item, lastRow);
|
147
|
+
lastRow = updatedLastRow;
|
148
|
+
itemsHTML += domItem.outerHTML;
|
149
|
+
containerHeight += fullHeight;
|
150
|
+
});
|
151
|
+
const oldSectionHeight = dataSets["data-height-xs"];
|
152
|
+
const newHeight = oldSectionHeight && oldSectionHeight > containerHeight ? oldSectionHeight : containerHeight;
|
153
|
+
virtualRef.current.style.height = `${newHeight}px`;
|
154
|
+
virtualRef.current.style.gridTemplateRows = `repeat(${lastRow - 1}, ${ROW_HEIGHT}px)`;
|
155
|
+
virtualRef.current.innerHTML = itemsHTML;
|
156
|
+
};
|
66
157
|
const VirtualElement = props => {
|
67
158
|
const classes = useVirtualElementStyles();
|
68
159
|
const {
|
69
160
|
editor,
|
70
161
|
path,
|
71
|
-
|
72
|
-
|
162
|
+
updated_at,
|
163
|
+
sectionCls,
|
164
|
+
dataSets
|
73
165
|
} = props;
|
74
|
-
const cloneNode = parentEle?.cloneNode(true);
|
75
166
|
const virtualRef = useRef();
|
167
|
+
const [toggleUpdate, setToggleUpdate] = useState(false);
|
76
168
|
useEffect(() => {
|
77
169
|
if (virtualRef?.current) {
|
78
170
|
const timeoutId = setTimeout(() => {
|
79
171
|
const allData = calculateProps(path, virtualRef?.current, ROOT_ITEM_CLASS, []);
|
80
|
-
const groupData = groupByPathAndCalculateHeight(allData);
|
172
|
+
// const groupData = groupByPathAndCalculateHeight(allData);
|
173
|
+
// console.log("allData", allData);
|
81
174
|
// it should trigger by auto alignment or on clicking mobile view change
|
82
|
-
updateAutoProps(editor, allData, "xs"
|
175
|
+
updateAutoProps(editor, allData, "xs");
|
83
176
|
}, 100);
|
177
|
+
setToggleUpdate(prev => !prev);
|
84
178
|
return () => clearTimeout(timeoutId);
|
85
179
|
}
|
86
180
|
}, [updated_at, virtualRef?.current]);
|
87
181
|
const calculateProps = (curPath, dom, domClass, allData) => {
|
88
182
|
const rect = dom?.getBoundingClientRect();
|
89
|
-
|
183
|
+
|
184
|
+
// const sectionRect = virtualRef?.current?.getBoundingClientRect();
|
185
|
+
|
186
|
+
const bufferHeight = 12; // for spacing
|
187
|
+
|
90
188
|
const sectionProps = {
|
91
189
|
path: curPath,
|
92
190
|
props: {
|
93
|
-
height: rect?.height
|
191
|
+
height: rect?.height + bufferHeight
|
94
192
|
}
|
95
193
|
};
|
96
194
|
const itemsData = [];
|
97
|
-
const items = dom.querySelectorAll(domClass);
|
98
|
-
const nextItemPathLength = curPath?.split("|").length + 2;
|
99
|
-
let sectionHeight = 12;
|
195
|
+
const items = dom ? dom.querySelectorAll(domClass) : [];
|
100
196
|
for (let i = 0; i < items.length; i++) {
|
101
|
-
const
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
}
|
117
|
-
|
118
|
-
}
|
119
|
-
}
|
120
|
-
if (dom?.classList.contains("type_box")) {
|
121
|
-
const y = Math.abs(sectionRect.top - rect?.top);
|
122
|
-
sectionProps.props.gridArea = calculateGridArea(y);
|
123
|
-
}
|
124
|
-
if (sectionHeight > sectionProps?.props?.height) {
|
125
|
-
sectionProps.props.height = sectionHeight;
|
197
|
+
const item = items[i];
|
198
|
+
const itemRect = item?.getBoundingClientRect();
|
199
|
+
const {
|
200
|
+
path
|
201
|
+
} = item?.dataset;
|
202
|
+
const y = Math.abs(rect.top - itemRect?.top);
|
203
|
+
itemsData.push({
|
204
|
+
path,
|
205
|
+
props: {
|
206
|
+
top: y,
|
207
|
+
left: 24,
|
208
|
+
marginTop: 12,
|
209
|
+
width: itemRect?.width,
|
210
|
+
height: itemRect?.height,
|
211
|
+
gridArea: calculateGridArea(y)
|
212
|
+
}
|
213
|
+
});
|
126
214
|
}
|
127
215
|
allData = [sectionProps, [...allData, ...itemsData]]?.flat();
|
128
216
|
return allData;
|
129
217
|
};
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
for (let i = 0; i < items?.length; i++) {
|
134
|
-
items[i].classList.add("exclude-virtual");
|
135
|
-
itemsHTML += items[i].outerHTML;
|
136
|
-
}
|
137
|
-
return itemsHTML;
|
138
|
-
};
|
218
|
+
useMemo(() => {
|
219
|
+
return appendContainerItems(sectionCls, virtualRef, dataSets);
|
220
|
+
}, [toggleUpdate]);
|
139
221
|
return /*#__PURE__*/_jsx(Box, {
|
140
222
|
className: "mobile-virtual-mode",
|
141
223
|
ref: virtualRef,
|
142
|
-
sx:
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
224
|
+
sx: {
|
225
|
+
display: "grid",
|
226
|
+
gridTemplateColumns: "100%",
|
227
|
+
visibility: "hidden",
|
228
|
+
// height: `${containerHeight}px !important`,
|
229
|
+
// gridTemplateRows: `repeat(${lastRow - 1}, ${ROW_HEIGHT}px)`,
|
230
|
+
...classes.root
|
148
231
|
},
|
149
|
-
"aria-hidden": "true"
|
232
|
+
"aria-hidden": "true",
|
233
|
+
contentEditable: false
|
150
234
|
});
|
151
235
|
};
|
152
236
|
export default VirtualElement;
|
@@ -2,20 +2,44 @@ const useVirtualElementStyles = () => ({
|
|
2
2
|
root: {
|
3
3
|
width: "320px",
|
4
4
|
position: "fixed",
|
5
|
-
backgroundColor: "red",
|
6
|
-
height: "
|
5
|
+
// backgroundColor: "red",
|
6
|
+
// height: "fit-content",
|
7
7
|
overflow: "visible",
|
8
8
|
pointerEvents: "none",
|
9
|
-
opacity:
|
9
|
+
opacity: 1,
|
10
10
|
right: 0,
|
11
11
|
top: 0,
|
12
|
+
"& .leaf-item": {
|
13
|
+
fontSize: "var(--fontSize_xs) !important",
|
14
|
+
"& span": {
|
15
|
+
fontSize: "var(--fontSize_xs) !important"
|
16
|
+
}
|
17
|
+
},
|
18
|
+
"& .editor-blocker": {
|
19
|
+
display: "none"
|
20
|
+
},
|
12
21
|
"& .freegrid-item": {
|
13
22
|
position: "relative !important",
|
14
|
-
|
23
|
+
top: "0 !important",
|
24
|
+
gridArea: "var(--gridArea_xs) !important",
|
15
25
|
width: "calc(100% - 48px) !important",
|
16
|
-
height: "
|
26
|
+
height: "var(--height_xs) !important",
|
17
27
|
left: "24px !important",
|
18
|
-
marginTop: "
|
28
|
+
marginTop: "var(--marginTop_xs) !important",
|
29
|
+
outline: "1px solid gray !important",
|
30
|
+
"&.type_text": {
|
31
|
+
height: "auto !important"
|
32
|
+
},
|
33
|
+
"&.type_image": {
|
34
|
+
width: "calc(--width_xs) !important",
|
35
|
+
height: "var(--height_xs) !important"
|
36
|
+
},
|
37
|
+
// "&.type_box": {
|
38
|
+
// // display: "grid !important",
|
39
|
+
// // gridTemplateRows: "repeat(auto-fill, 50px) !important",
|
40
|
+
// // height: "min-content !important",
|
41
|
+
// },
|
42
|
+
|
19
43
|
"& .debug-info, & .editor-blocker": {
|
20
44
|
display: "none"
|
21
45
|
},
|
@@ -25,4 +49,128 @@ const useVirtualElementStyles = () => ({
|
|
25
49
|
}
|
26
50
|
}
|
27
51
|
});
|
28
|
-
export default useVirtualElementStyles;
|
52
|
+
export default useVirtualElementStyles;
|
53
|
+
export const useAutoAlignStyles = () => ({
|
54
|
+
root: {
|
55
|
+
width: "320px",
|
56
|
+
position: "fixed",
|
57
|
+
overflow: "visible",
|
58
|
+
opacity: 1,
|
59
|
+
right: 0,
|
60
|
+
top: 0,
|
61
|
+
height: "auto !important",
|
62
|
+
pointerEvents: "none",
|
63
|
+
visibility: "hidden",
|
64
|
+
"& .leaf-item": {
|
65
|
+
fontSize: "var(--fontSize_xs) !important",
|
66
|
+
"& span": {
|
67
|
+
fontSize: "var(--fontSize_xs) !important"
|
68
|
+
}
|
69
|
+
},
|
70
|
+
"& .editor-blocker": {
|
71
|
+
display: "none"
|
72
|
+
},
|
73
|
+
"& .freegrid-item": {
|
74
|
+
position: "relative !important",
|
75
|
+
top: "0 !important",
|
76
|
+
gridArea: "none !important",
|
77
|
+
width: "calc(100% - 48px) !important",
|
78
|
+
height: "var(--height_xs) !important",
|
79
|
+
left: "24px !important",
|
80
|
+
marginTop: "12px !important",
|
81
|
+
minHeight: "auto",
|
82
|
+
display: "inherit !important",
|
83
|
+
"&.type_box": {
|
84
|
+
height: "auto !important"
|
85
|
+
},
|
86
|
+
"&.type_image": {
|
87
|
+
width: "var(--width_xs) !important",
|
88
|
+
height: "var(--height_xs) !important"
|
89
|
+
},
|
90
|
+
"&.type_text": {
|
91
|
+
height: "auto !important"
|
92
|
+
},
|
93
|
+
// start - default signature classes on free-grid
|
94
|
+
"& .fgi_type_signature": {
|
95
|
+
height: "100%",
|
96
|
+
"& .signature-container": {
|
97
|
+
height: "100%",
|
98
|
+
LineHeight: 1.43,
|
99
|
+
"& .signature-btn-container": {
|
100
|
+
height: "100%",
|
101
|
+
display: "flex",
|
102
|
+
flexDirection: "column",
|
103
|
+
"& .sign-placeholder": {
|
104
|
+
display: "flex",
|
105
|
+
// remove hidden sign placeholder
|
106
|
+
width: "100%",
|
107
|
+
flexGrow: 1
|
108
|
+
},
|
109
|
+
"& button": {
|
110
|
+
margin: "6px 0px"
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
},
|
115
|
+
"& .fgi_type_sign": {
|
116
|
+
width: "100%",
|
117
|
+
height: "100%",
|
118
|
+
"& .signature-signed-wrapper": {
|
119
|
+
width: "100%",
|
120
|
+
height: "100%",
|
121
|
+
"& .signature-signed-span": {
|
122
|
+
width: "100%",
|
123
|
+
height: "100%",
|
124
|
+
"& .signed-btn": {
|
125
|
+
width: "100%",
|
126
|
+
height: "100%",
|
127
|
+
display: "flex",
|
128
|
+
flexDirection: "column",
|
129
|
+
"& img": {
|
130
|
+
width: "100% !important",
|
131
|
+
maxWidth: "none !important",
|
132
|
+
height: "70% !important",
|
133
|
+
flexGrow: 1
|
134
|
+
}
|
135
|
+
}
|
136
|
+
}
|
137
|
+
}
|
138
|
+
},
|
139
|
+
// end - default signature classes on free-grid
|
140
|
+
|
141
|
+
"& .debug-info, & .editor-blocker": {
|
142
|
+
display: "none"
|
143
|
+
},
|
144
|
+
"& .embed": {
|
145
|
+
minHeight: "300px"
|
146
|
+
}
|
147
|
+
},
|
148
|
+
"& .appHeaderBox, &.header-box-mobile-virtual-mode": {
|
149
|
+
width: "calc(100% - 12px) !important",
|
150
|
+
"& .fgi_type_box": {
|
151
|
+
display: "flex",
|
152
|
+
justifyContent: "space-evenly !important",
|
153
|
+
flexWrap: "wrap"
|
154
|
+
},
|
155
|
+
"& .freegrid-item": {
|
156
|
+
left: "4px !important",
|
157
|
+
marginLeft: "0px !important"
|
158
|
+
},
|
159
|
+
"& .type_text": {
|
160
|
+
width: "fit-content !important"
|
161
|
+
},
|
162
|
+
"& .type_appHeader": {
|
163
|
+
width: "40px !important"
|
164
|
+
},
|
165
|
+
"& .shadow-element": {
|
166
|
+
display: "none"
|
167
|
+
}
|
168
|
+
},
|
169
|
+
"&.header-box-mobile-virtual-mode": {
|
170
|
+
width: "320px !important",
|
171
|
+
display: "flex",
|
172
|
+
justifyContent: "space-evenly !important",
|
173
|
+
flexWrap: "wrap"
|
174
|
+
}
|
175
|
+
}
|
176
|
+
});
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Node, Transforms } from "slate";
|
2
|
-
const updateAutoProps = (editor, datas = [], breakpoint = "",
|
2
|
+
const updateAutoProps = (editor, datas = [], breakpoint = "", updateAll) => {
|
3
3
|
try {
|
4
4
|
// const { heightData } = groupData;
|
5
5
|
for (let i = 0; i < datas.length; i++) {
|
@@ -14,9 +14,11 @@ const updateAutoProps = (editor, datas = [], breakpoint = "", groupData) => {
|
|
14
14
|
return a;
|
15
15
|
}, {});
|
16
16
|
const oldProps = Node.get(editor, int_path);
|
17
|
-
|
17
|
+
const updateNode = !oldProps?.xs_updatedOn || updateAll;
|
18
|
+
if (updateNode) {
|
18
19
|
Transforms.setNodes(editor, {
|
19
|
-
...updatedProps
|
20
|
+
...updatedProps,
|
21
|
+
xs_updatedOn: new Date().getTime()
|
20
22
|
}, {
|
21
23
|
at: int_path
|
22
24
|
});
|
@@ -19,6 +19,11 @@ import { removeSign } from "./ElementSettings/OtherSettings";
|
|
19
19
|
import useDragging from "../../hooks/useDragging";
|
20
20
|
import { dragOverOn } from "../../helper/RnD/focusNode";
|
21
21
|
import { focusSelection, clearSelection, clearSelectionOnly } from "../../helper";
|
22
|
+
// import { reRenderChildNodes } from "./Utils/gridDropItem";
|
23
|
+
import VirtualTextElement from "./VirtualElement/VirtualTextElement";
|
24
|
+
import useAutoScroll from "../../hooks/useAutoScroll";
|
25
|
+
import ForceAutoAlignment from "./VirtualElement/ForceAutoAlignment";
|
26
|
+
import BoxHeaderAutoAlignment from "./VirtualElement/BoxHeaderAutoAlignment";
|
22
27
|
import { jsx as _jsx } from "react/jsx-runtime";
|
23
28
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
24
29
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
@@ -65,7 +70,12 @@ const RnD = props => {
|
|
65
70
|
breakpoint = "",
|
66
71
|
handleContextMenuClick = () => {},
|
67
72
|
itemData = {},
|
68
|
-
customProps
|
73
|
+
customProps,
|
74
|
+
sectionElement,
|
75
|
+
dataSets,
|
76
|
+
autoAlign,
|
77
|
+
setAutoAlign,
|
78
|
+
isBoxHeader
|
69
79
|
} = props;
|
70
80
|
const {
|
71
81
|
isSelectedElement,
|
@@ -110,6 +120,10 @@ const RnD = props => {
|
|
110
120
|
const {
|
111
121
|
translation
|
112
122
|
} = customProps;
|
123
|
+
const {
|
124
|
+
startAutoScroll,
|
125
|
+
stopAutoScroll
|
126
|
+
} = useAutoScroll(10, "slate-wrapper-scroll-container");
|
113
127
|
useEffect(() => {
|
114
128
|
if (ITEM_TYPES.includes(type)) {
|
115
129
|
if (enable === 1) {
|
@@ -351,6 +365,16 @@ const RnD = props => {
|
|
351
365
|
};
|
352
366
|
const onDrag = e => {
|
353
367
|
e.preventDefault();
|
368
|
+
const {
|
369
|
+
clientY
|
370
|
+
} = e;
|
371
|
+
if (clientY < 50) {
|
372
|
+
startAutoScroll("up");
|
373
|
+
} else if (window.innerHeight - clientY < 50) {
|
374
|
+
startAutoScroll("down");
|
375
|
+
} else {
|
376
|
+
stopAutoScroll();
|
377
|
+
}
|
354
378
|
const lines = getClosestDraggable(e.clientX, e.clientY, `.freegrid-section_${parentSectionPath} .freegrid-container .freegrid-item.inactive-drag`.replace(/\|/g, "\\|"), ".freegrid-item.active-drag:not(.exclude-virtual)");
|
355
379
|
setAbsPosition({
|
356
380
|
...absPosition,
|
@@ -393,6 +417,7 @@ const RnD = props => {
|
|
393
417
|
const onDragStop = (e, d) => {
|
394
418
|
e.preventDefault();
|
395
419
|
e.stopPropagation();
|
420
|
+
stopAutoScroll();
|
396
421
|
if (dragging?.isDragging === 2 && dragging?.position?.strXY && dragging?.dragOver) {
|
397
422
|
d.x = e.x;
|
398
423
|
d.y = e.y;
|
@@ -453,14 +478,24 @@ const RnD = props => {
|
|
453
478
|
}
|
454
479
|
const updatedSize = {
|
455
480
|
width: delta?.width + d.width,
|
456
|
-
height:
|
481
|
+
height: ref.offsetHeight,
|
457
482
|
...updatedPosition
|
458
483
|
};
|
459
484
|
onChange({
|
460
485
|
...updatedSize
|
461
486
|
});
|
462
487
|
handleResizeEvent("stop");
|
488
|
+
|
489
|
+
// const parentPath = getParentSectionPath(
|
490
|
+
// { ref },
|
491
|
+
// ".freegrid-container-parent"
|
492
|
+
// );
|
493
|
+
|
494
|
+
// const formatParentPath = parentPath?.split("|")?.map((m) => parseInt(m));
|
495
|
+
|
496
|
+
// reRenderChildNodes(editor, formatParentPath);
|
463
497
|
};
|
498
|
+
|
464
499
|
const onCloseSettings = () => {
|
465
500
|
setSelectedElement({
|
466
501
|
...selectedElementProps,
|
@@ -474,13 +509,6 @@ const RnD = props => {
|
|
474
509
|
}
|
475
510
|
e.preventDefault();
|
476
511
|
e.stopPropagation();
|
477
|
-
const isMuiBackdrop = e.target.classList.contains("MuiBackdrop-root");
|
478
|
-
if (isMuiBackdrop) {
|
479
|
-
setContextMenu({
|
480
|
-
path: null
|
481
|
-
});
|
482
|
-
return;
|
483
|
-
}
|
484
512
|
onClick({
|
485
513
|
detail: 1
|
486
514
|
});
|
@@ -568,6 +596,7 @@ const RnD = props => {
|
|
568
596
|
...DISABLE_RESIZING
|
569
597
|
},
|
570
598
|
...getEventProps(),
|
599
|
+
...(dataSets || {}),
|
571
600
|
children: [/*#__PURE__*/_jsx("div", {
|
572
601
|
id: `opt_ref_${str_path}`,
|
573
602
|
style: {
|
@@ -640,9 +669,29 @@ const RnD = props => {
|
|
640
669
|
theme: theme,
|
641
670
|
translation: translation
|
642
671
|
}), type === "parent" && breakpoint === "lg" && !readOnly ? /*#__PURE__*/_jsx(VirtualElement, {
|
643
|
-
parentEle: positionRef?.current?.resizableElement?.current,
|
644
672
|
updated_at: updated_at,
|
645
673
|
path: str_path,
|
674
|
+
editor: editor,
|
675
|
+
sectionElement: sectionElement,
|
676
|
+
sectionCls: `.freegrid-section_${path.join("_")}`,
|
677
|
+
dataSets: dataSets
|
678
|
+
}) : null, childType === "text" && breakpoint === "lg" && !readOnly && enable ? /*#__PURE__*/_jsx(VirtualTextElement, {
|
679
|
+
editor: editor,
|
680
|
+
dataSets: dataSets,
|
681
|
+
getCurrentEle: getCurrentEle,
|
682
|
+
path: path
|
683
|
+
}) : null, type === "parent" && breakpoint === "xs" && !readOnly && autoAlign ? /*#__PURE__*/_jsx(ForceAutoAlignment, {
|
684
|
+
updated_at: updated_at,
|
685
|
+
path: str_path,
|
686
|
+
editor: editor,
|
687
|
+
sectionElement: sectionElement,
|
688
|
+
sectionCls: `.freegrid-section_${path.join("_")}`,
|
689
|
+
dataSets: dataSets,
|
690
|
+
autoAlign: autoAlign,
|
691
|
+
setAutoAlign: setAutoAlign
|
692
|
+
}) : null, isBoxHeader && breakpoint === "lg" ? /*#__PURE__*/_jsx(BoxHeaderAutoAlignment, {
|
693
|
+
boxCls: `.freegrid-box_${path.join("_")}`,
|
694
|
+
path: str_path,
|
646
695
|
editor: editor
|
647
696
|
}) : null]
|
648
697
|
});
|