@flozy/editor 9.5.7 → 9.5.8
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 +26 -19
- package/dist/Editor/CommonEditor.js +139 -22
- package/dist/Editor/DialogWrapper.js +31 -25
- package/dist/Editor/Editor.css +11 -7
- package/dist/Editor/Elements/AI/AIInput.js +5 -3
- package/dist/Editor/Elements/AI/CustomSelect.js +9 -5
- package/dist/Editor/Elements/AI/PopoverAIInput.js +4 -2
- package/dist/Editor/Elements/Accordion/Accordion.js +4 -3
- package/dist/Editor/Elements/Accordion/AccordionBtnPopup.js +4 -1
- package/dist/Editor/Elements/Accordion/AccordionButton.js +6 -2
- package/dist/Editor/Elements/Accordion/AccordionTitlePopup.js +4 -1
- package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
- package/dist/Editor/Elements/AppHeader/AppHeaderButton.js +6 -2
- package/dist/Editor/Elements/AppHeader/AppHeaderPopup.js +4 -1
- package/dist/Editor/Elements/Attachments/AttachmentsButton.js +4 -1
- package/dist/Editor/Elements/Button/ButtonPopup.js +4 -1
- package/dist/Editor/Elements/Button/ButtonToolIcon.js +6 -2
- package/dist/Editor/Elements/Button/EditorButton.js +31 -14
- package/dist/Editor/Elements/Carousel/Carousel.js +5 -4
- package/dist/Editor/Elements/Carousel/CarouselButton.js +6 -2
- package/dist/Editor/Elements/Carousel/CarouselItem.js +3 -2
- package/dist/Editor/Elements/ChipText/ChipTextPopup.js +4 -1
- package/dist/Editor/Elements/CodeToText/CodeToText.js +5 -4
- package/dist/Editor/Elements/CodeToText/HtmlContextMenu.js +6 -2
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +60 -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/Colorbox/ColorboxButton.js +6 -2
- package/dist/Editor/Elements/DataView/DataView.js +5 -2
- package/dist/Editor/Elements/DataView/DataViewButton.js +6 -2
- package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +7 -2
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +425 -0
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +4 -3
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +25 -5
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/TextType.js +7 -2
- package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/ChooseSort.js +13 -12
- package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/index.js +7 -4
- package/dist/Editor/Elements/DataView/Layouts/FilterSort/index.js +7 -5
- package/dist/Editor/Elements/DataView/Layouts/FilterView.js +9 -7
- package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +8 -3
- package/dist/Editor/Elements/DataView/Layouts/Options/AddProperty.js +5 -3
- package/dist/Editor/Elements/DataView/Layouts/Options/AllProperties.js +6 -5
- package/dist/Editor/Elements/DataView/Layouts/Options/ChangeProperty.js +5 -3
- package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +9 -7
- package/dist/Editor/Elements/DataView/Layouts/Options/EditProperty.js +64 -38
- package/dist/Editor/Elements/DataView/Layouts/Options/FilterProperty.js +3 -2
- package/dist/Editor/Elements/DataView/Layouts/Options/PropertyList.js +3 -2
- package/dist/Editor/Elements/DataView/Layouts/Options/index.js +23 -6
- package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +4 -1
- package/dist/Editor/Elements/DataView/Layouts/TableView.js +6 -4
- package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
- package/dist/Editor/Elements/DataView/Layouts/index.js +3 -1
- package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +5 -2
- package/dist/Editor/Elements/DataView/styles.js +13 -0
- package/dist/Editor/Elements/Divider/Divider.js +5 -3
- package/dist/Editor/Elements/Divider/DividerButton.js +6 -2
- package/dist/Editor/Elements/Divider/DividerPopup.js +3 -2
- package/dist/Editor/Elements/Embed/Embed.js +4 -1
- package/dist/Editor/Elements/Embed/EmbedPopup.js +4 -1
- package/dist/Editor/Elements/Embed/Image.js +16 -11
- package/dist/Editor/Elements/Embed/Video.js +9 -6
- package/dist/Editor/Elements/EmbedScript/Code.js +7 -4
- package/dist/Editor/Elements/EmbedScript/EmbedScript.js +6 -2
- package/dist/Editor/Elements/EmbedScript/EmbedScriptPopup.js +8 -5
- package/dist/Editor/Elements/Emoji/EmojiButton.js +6 -2
- package/dist/Editor/Elements/Form/FieldPopup.js +4 -1
- package/dist/Editor/Elements/Form/Form.js +12 -9
- package/dist/Editor/Elements/Form/FormButton.js +6 -2
- package/dist/Editor/Elements/Form/FormPopup.js +3 -2
- package/dist/Editor/Elements/Form/Workflow/FormWorkflow.js +18 -12
- package/dist/Editor/Elements/Form/Workflow/ListWorkflow.js +13 -8
- package/dist/Editor/Elements/Form/Workflow/MoreOptions.js +3 -2
- package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
- package/dist/Editor/Elements/Form/Workflow/UserInputs.js +4 -2
- package/dist/Editor/Elements/Form/Workflow/index.js +15 -9
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +67 -23
- package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +23 -4
- package/dist/Editor/Elements/FreeGrid/FreeGridButton.js +6 -2
- package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +36 -5
- package/dist/Editor/Elements/FreeGrid/Options/AddElement.js +3 -2
- package/dist/Editor/Elements/FreeGrid/Options/More.js +10 -4
- package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
- package/dist/Editor/Elements/Grid/Grid.js +13 -10
- package/dist/Editor/Elements/Grid/GridButton.js +9 -5
- package/dist/Editor/Elements/Grid/GridItem.js +14 -8
- package/dist/Editor/Elements/Grid/GridItemPopup.js +4 -1
- package/dist/Editor/Elements/Grid/GridPopup.js +4 -1
- package/dist/Editor/Elements/Grid/SectionPopup.js +4 -1
- package/dist/Editor/Elements/Link/Link.js +8 -5
- package/dist/Editor/Elements/Link/LinkButton.js +4 -1
- package/dist/Editor/Elements/List/CheckList.js +14 -9
- package/dist/Editor/Elements/NewLine/NewLineButton.js +6 -2
- package/dist/Editor/Elements/PageSettings/PageSettingsButton.js +4 -1
- package/dist/Editor/Elements/PageSettings/PageSettingsPopup.js +4 -1
- package/dist/Editor/Elements/Search/SearchButton.js +6 -3
- package/dist/Editor/Elements/Search/SearchList.js +7 -3
- package/dist/Editor/Elements/Signature/SignatureButton.js +6 -2
- package/dist/Editor/Elements/Signature/SignatureOptions/TypeSignature.js +6 -2
- package/dist/Editor/Elements/Signature/SignatureOptions/UploadSignature.js +4 -1
- package/dist/Editor/Elements/Signature/SignaturePopup.js +17 -16
- package/dist/Editor/Elements/SimpleText/index.js +5 -4
- package/dist/Editor/Elements/SimpleText/style.js +2 -2
- package/dist/Editor/Elements/Table/DragButton.js +4 -2
- package/dist/Editor/Elements/Table/Table.js +23 -11
- package/dist/Editor/Elements/Table/TableCell.js +2 -24
- package/dist/Editor/Elements/Table/TablePopup.js +4 -1
- package/dist/Editor/Elements/Table/TableSelector.js +10 -6
- package/dist/Editor/Elements/Table/TableTool.js +8 -4
- package/dist/Editor/Elements/Title/title.js +10 -0
- package/dist/Editor/Elements/TopBanner/TopBannerButton.js +4 -1
- package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
- package/dist/Editor/MiniEditor.js +10 -3
- package/dist/Editor/Styles/EditorStyles.js +5 -5
- package/dist/Editor/Toolbar/Basic/index.js +2 -1
- package/dist/Editor/Toolbar/FormatTools/BlockButton.js +6 -2
- 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 +8 -4
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
- package/dist/Editor/Toolbar/Mini/MiniToolbar.js +5 -3
- package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +10 -5
- package/dist/Editor/Toolbar/PopupTool/ButtonTemplatesCard.js +10 -4
- package/dist/Editor/Toolbar/PopupTool/FullViewCard.js +10 -4
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +9 -3
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectAlignment.js +42 -35
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectList.js +58 -51
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectSuperSubscript.js +29 -22
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +226 -87
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +20 -10
- package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +10 -5
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +71 -11
- package/dist/Editor/Toolbar/PopupTool/TemplateCard.js +11 -5
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +122 -42
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +436 -0
- package/dist/Editor/Toolbar/PopupTool/index.js +18 -8
- package/dist/Editor/Toolbar/Toolbar.js +20 -10
- package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
- package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
- package/dist/Editor/assets/svg/ThemeIcons.js +291 -0
- package/dist/Editor/common/ColorPickerButton.js +39 -14
- package/dist/Editor/common/CustomColorPicker/index.js +131 -0
- package/dist/Editor/common/CustomColorPicker/style.js +53 -0
- package/dist/Editor/common/CustomDialog/index.js +8 -10
- 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 +46 -1
- package/dist/Editor/common/ImageSelector/ImageSelector.js +10 -8
- package/dist/Editor/common/ImageSelector/Options/AddLink.js +6 -4
- package/dist/Editor/common/ImageSelector/Styles.js +3 -9
- package/dist/Editor/common/LinkSettings/NavComponents.js +14 -10
- package/dist/Editor/common/LinkSettings/index.js +20 -14
- package/dist/Editor/common/LinkSettings/navOptions.js +1 -1
- package/dist/Editor/common/MentionsPopup/index.js +6 -2
- package/dist/Editor/common/RnD/ContextMenu/CMenus.js +22 -22
- package/dist/Editor/common/RnD/ContextMenu/index.js +3 -2
- package/dist/Editor/common/RnD/ElementOptions/index.js +7 -2
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/SaveAsTemplate.js +8 -3
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +7 -3
- 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 +7 -4
- 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 +6 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
- package/dist/Editor/common/RnD/OptionsPopup/index.js +4 -3
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +11 -4
- package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
- package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +20 -8
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +56 -7
- package/dist/Editor/common/RnD/Utils/index.js +3 -0
- package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +117 -0
- package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
- package/dist/Editor/common/RnD/VirtualElement/helper.js +281 -0
- package/dist/Editor/common/RnD/VirtualElement/index.js +188 -105
- package/dist/Editor/common/RnD/VirtualElement/styles.js +123 -7
- package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
- package/dist/Editor/common/RnD/index.js +59 -7
- package/dist/Editor/common/Section/index.js +7 -4
- package/dist/Editor/common/Shorthands/elements.js +74 -3
- package/dist/Editor/common/SnackBar/index.js +43 -0
- package/dist/Editor/common/StyleBuilder/appHeaderStyle.js +4 -4
- package/dist/Editor/common/StyleBuilder/boxStyle.js +2 -2
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +6 -4
- package/dist/Editor/common/StyleBuilder/dividerStyles.js +2 -2
- package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +6 -6
- package/dist/Editor/common/StyleBuilder/fieldStyle.js +2 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/alignment.js +13 -9
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +11 -3
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +19 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +22 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/buttonLink.js +6 -3
- package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +27 -13
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +43 -14
- package/dist/Editor/common/StyleBuilder/fieldTypes/elementSize.js +10 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +19 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/gridSize.js +6 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +5 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +9 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/metaDataMapping.js +8 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/saveAsTemplate.js +12 -11
- package/dist/Editor/common/StyleBuilder/fieldTypes/selectBox.js +6 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/text.js +8 -4
- package/dist/Editor/common/StyleBuilder/fieldTypes/textAlign.js +6 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +21 -12
- package/dist/Editor/common/StyleBuilder/formStyle.js +7 -7
- package/dist/Editor/common/StyleBuilder/gridItemStyle.js +6 -6
- package/dist/Editor/common/StyleBuilder/gridStyle.js +5 -5
- package/dist/Editor/common/StyleBuilder/index.js +8 -5
- package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
- package/dist/Editor/common/Uploader.js +16 -5
- package/dist/Editor/commonStyle.js +68 -57
- package/dist/Editor/helper/index.js +35 -15
- 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/useDrag.js +16 -10
- package/dist/Editor/hooks/useEditorScroll.js +10 -5
- package/dist/Editor/hooks/useEditorTheme.js +153 -0
- package/dist/Editor/hooks/useMouseMove.js +25 -13
- package/dist/Editor/hooks/useTable.js +1 -1
- package/dist/Editor/hooks/useThemeValues.js +63 -0
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +10 -7
- package/dist/Editor/plugins/withLayout.js +3 -2
- package/dist/Editor/plugins/withTable.js +1 -1
- package/dist/Editor/theme/ThemeList.js +50 -173
- package/dist/Editor/theme/index.js +147 -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 +310 -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 +61 -0
- package/dist/Editor/themeSettings/icons.js +60 -0
- package/dist/Editor/themeSettings/index.js +351 -0
- package/dist/Editor/themeSettings/style.js +220 -0
- package/dist/Editor/themeSettingsAI/icons.js +96 -0
- package/dist/Editor/themeSettingsAI/index.js +355 -0
- package/dist/Editor/themeSettingsAI/saveTheme.js +205 -0
- package/dist/Editor/themeSettingsAI/style.js +259 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +167 -48
- package/dist/Editor/utils/draftToSlate.js +3 -2
- package/dist/Editor/utils/font.js +40 -37
- package/dist/Editor/utils/freegrid.js +2 -2
- package/dist/Editor/utils/helper.js +90 -19
- package/package.json +2 -2
@@ -1,6 +1,7 @@
|
|
1
|
-
import { Transforms, Node, Path } from "slate";
|
1
|
+
import { Transforms, Node, Path, Editor } from "slate";
|
2
2
|
import { ReactEditor } from "slate-react";
|
3
3
|
import { handleNegativeInteger } from "../../../utils/helper";
|
4
|
+
import { handleBoxAlignment } from "../VirtualElement/helper";
|
4
5
|
export const ROW_HEIGHT = 50;
|
5
6
|
|
6
7
|
// const MARGIN_OF = {
|
@@ -21,9 +22,18 @@ export function updateRows() {}
|
|
21
22
|
export function updateCols() {}
|
22
23
|
const handleMoveNode = (editor, path, newPath, {
|
23
24
|
isEmpty
|
24
|
-
}) => {
|
25
|
+
}, autoAlign) => {
|
25
26
|
try {
|
26
|
-
|
27
|
+
let replaceNode = Node.get(editor, path);
|
28
|
+
if (autoAlign) {
|
29
|
+
// reset node for auto alignment in mobile
|
30
|
+
replaceNode = {
|
31
|
+
...replaceNode,
|
32
|
+
gridArea_xs: null,
|
33
|
+
xs_updatedOn: null,
|
34
|
+
marginTop_xs: null
|
35
|
+
};
|
36
|
+
}
|
27
37
|
if (isEmpty) {
|
28
38
|
const toPath = [...newPath, 0];
|
29
39
|
Transforms.insertNodes(editor, [{
|
@@ -57,9 +67,10 @@ const handleMoveNode = (editor, path, newPath, {
|
|
57
67
|
* This method will update prop in child node so it will re-render and update the path
|
58
68
|
* @param {*} path - contains the parent section path
|
59
69
|
*/
|
60
|
-
const reRenderChildNodes = (editor, path) => {
|
70
|
+
export const reRenderChildNodes = (editor, path) => {
|
61
71
|
try {
|
62
72
|
const sectionNode = Node.get(editor, path);
|
73
|
+
|
63
74
|
// parent node
|
64
75
|
Transforms.setNodes(editor, {
|
65
76
|
updated_at: new Date().getTime()
|
@@ -127,6 +138,9 @@ function isContainerElement(editor, moveTopath, props, appenBp) {
|
|
127
138
|
console.log(err);
|
128
139
|
}
|
129
140
|
}
|
141
|
+
const isInsidePath = (from, moveTo) => {
|
142
|
+
return Path.isAncestor(from, moveTo);
|
143
|
+
};
|
130
144
|
export function onDropItem(props, parentClass) {
|
131
145
|
try {
|
132
146
|
const {
|
@@ -174,7 +188,17 @@ export function onDropItem(props, parentClass) {
|
|
174
188
|
}, {
|
175
189
|
at: path
|
176
190
|
});
|
177
|
-
|
191
|
+
let reRenderSectionPath;
|
192
|
+
const [sectionData] = Editor.nodes(editor, {
|
193
|
+
at: moveTo,
|
194
|
+
match: n => n.type === "freegrid"
|
195
|
+
});
|
196
|
+
const [sectionNode, sectionPath] = sectionData || [];
|
197
|
+
if (needMove && isInsidePath(from, moveTo)) {
|
198
|
+
reRenderSectionPath = sectionPath;
|
199
|
+
} else {
|
200
|
+
reRenderChildNodes(editor, from);
|
201
|
+
}
|
178
202
|
|
179
203
|
// move the node if section parent changed
|
180
204
|
if (needMove) {
|
@@ -183,10 +207,35 @@ export function onDropItem(props, parentClass) {
|
|
183
207
|
if (!isEmpty) {
|
184
208
|
newPath = [...newPath, toSectionNode?.children?.length];
|
185
209
|
}
|
210
|
+
const moveSectionToSection = from?.length === 2 && moveTo?.length === 2;
|
211
|
+
|
212
|
+
// const autoAlign = breakpoint === "lg" && moveSectionToSection;
|
213
|
+
const autoAlign = breakpoint === "lg";
|
214
|
+
|
215
|
+
// const boxNode = Node.get(editor, moveTo);
|
216
|
+
|
217
|
+
if (moveTo?.length === 2 && autoAlign) {
|
218
|
+
// auto align in mobile
|
219
|
+
Transforms.setNodes(editor, {
|
220
|
+
xs_updatedOn: null
|
221
|
+
}, {
|
222
|
+
at: moveTo
|
223
|
+
});
|
224
|
+
} else if (autoAlign) {
|
225
|
+
Transforms.setNodes(editor, {
|
226
|
+
autoAlign: true,
|
227
|
+
xs_updatedOn: new Date().getTime()
|
228
|
+
}, {
|
229
|
+
at: moveTo
|
230
|
+
});
|
231
|
+
}
|
186
232
|
const rPath = handleMoveNode(editor, path, newPath, {
|
187
233
|
isEmpty
|
188
|
-
});
|
189
|
-
reRenderChildNodes(editor, moveTo);
|
234
|
+
}, autoAlign);
|
235
|
+
reRenderChildNodes(editor, reRenderSectionPath || moveTo);
|
236
|
+
if (autoAlign) {
|
237
|
+
handleBoxAlignment(editor, sectionNode, sectionPath);
|
238
|
+
}
|
190
239
|
return {
|
191
240
|
updated_at: rPath
|
192
241
|
};
|
@@ -0,0 +1,117 @@
|
|
1
|
+
import { Box } from "@mui/material";
|
2
|
+
import { useAutoAlignStyles } from "./styles";
|
3
|
+
import { useEffect, useRef } from "react";
|
4
|
+
import { ROW_HEIGHT, calculateGridArea, reRenderChildNodes } from "../Utils/gridDropItem";
|
5
|
+
import updateAutoProps from "./updateAutoProps";
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
7
|
+
const ROOT_ITEM_CLASS = ".freegrid-item.path-3";
|
8
|
+
const getMarginTop = y => {
|
9
|
+
const calcMargin = y % ROW_HEIGHT;
|
10
|
+
return calcMargin <= 0 ? 0 : calcMargin;
|
11
|
+
};
|
12
|
+
function ForceAutoAlignment(props) {
|
13
|
+
const {
|
14
|
+
editor,
|
15
|
+
sectionCls,
|
16
|
+
path,
|
17
|
+
autoAlign,
|
18
|
+
setAutoAlign
|
19
|
+
} = props;
|
20
|
+
const classes = useAutoAlignStyles();
|
21
|
+
const virtualRef = useRef();
|
22
|
+
useEffect(() => {
|
23
|
+
let timeoutId;
|
24
|
+
let autoAlignTimerId;
|
25
|
+
if (virtualRef?.current && autoAlign) {
|
26
|
+
timeoutId = setTimeout(() => {
|
27
|
+
const allData = calculateProps(path, virtualRef?.current, ROOT_ITEM_CLASS, []);
|
28
|
+
updateAutoProps(editor, allData, "xs", true);
|
29
|
+
const currentSectionPath = path.split("|").map(m => parseInt(m));
|
30
|
+
reRenderChildNodes(editor, currentSectionPath);
|
31
|
+
autoAlignTimerId = setTimeout(() => {
|
32
|
+
setAutoAlign(false);
|
33
|
+
}, 500);
|
34
|
+
}, 100);
|
35
|
+
}
|
36
|
+
return () => {
|
37
|
+
if (timeoutId) {
|
38
|
+
clearTimeout(timeoutId);
|
39
|
+
}
|
40
|
+
if (autoAlignTimerId) {
|
41
|
+
clearTimeout(autoAlignTimerId);
|
42
|
+
}
|
43
|
+
};
|
44
|
+
}, [virtualRef?.current]);
|
45
|
+
const calculateProps = (curPath, dom, domClass, allData, parentDom) => {
|
46
|
+
const rect = dom?.getBoundingClientRect();
|
47
|
+
const bufferHeight = parentDom ? 0 : 12;
|
48
|
+
const sectionProps = {
|
49
|
+
path: curPath,
|
50
|
+
props: {
|
51
|
+
height: rect?.height + bufferHeight
|
52
|
+
}
|
53
|
+
};
|
54
|
+
const itemsData = [];
|
55
|
+
const items = dom.querySelectorAll(domClass);
|
56
|
+
const nextItemPathLength = curPath?.split("|").length + 2;
|
57
|
+
// let sectionHeight = 12;
|
58
|
+
for (let i = 0; i < items.length; i++) {
|
59
|
+
const itemRect = items[i]?.getBoundingClientRect();
|
60
|
+
if (items[i]?.classList.contains("type_box")) {
|
61
|
+
allData = calculateProps(items[i]?.dataset.path, items[i], `.freegrid-item.path-${nextItemPathLength}`, allData, dom);
|
62
|
+
} else {
|
63
|
+
const y = Math.abs(rect.top - itemRect?.top);
|
64
|
+
itemsData.push({
|
65
|
+
path: items[i]?.dataset.path,
|
66
|
+
props: {
|
67
|
+
top: y,
|
68
|
+
left: 24,
|
69
|
+
marginTop: getMarginTop(y),
|
70
|
+
width: itemRect?.width,
|
71
|
+
height: itemRect?.height,
|
72
|
+
gridArea: calculateGridArea(y)
|
73
|
+
}
|
74
|
+
});
|
75
|
+
// sectionHeight += itemRect?.height;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
if (dom?.classList.contains("type_box") && parentDom) {
|
80
|
+
const parentDomRect = parentDom?.getBoundingClientRect();
|
81
|
+
const y = Math.abs(parentDomRect.top - rect?.top);
|
82
|
+
sectionProps.props.gridArea = calculateGridArea(y);
|
83
|
+
sectionProps.props.left = 24;
|
84
|
+
sectionProps.props.marginTop = getMarginTop(y);
|
85
|
+
sectionProps.props.width = rect?.width;
|
86
|
+
}
|
87
|
+
allData = [sectionProps, [...allData, ...itemsData]]?.flat();
|
88
|
+
return allData;
|
89
|
+
};
|
90
|
+
const getItems = () => {
|
91
|
+
const cloneNode = document.querySelector(sectionCls)?.cloneNode(true);
|
92
|
+
const items = cloneNode?.querySelectorAll(ROOT_ITEM_CLASS) || [];
|
93
|
+
if (!cloneNode || !items?.length) {
|
94
|
+
return;
|
95
|
+
}
|
96
|
+
let itemsHTML = "";
|
97
|
+
for (let i = 0; i < items?.length; i++) {
|
98
|
+
items[i].classList.add("exclude-virtual");
|
99
|
+
itemsHTML += items[i].outerHTML;
|
100
|
+
}
|
101
|
+
return itemsHTML;
|
102
|
+
};
|
103
|
+
return /*#__PURE__*/_jsx(Box, {
|
104
|
+
className: "force-mobile-virtual-mode",
|
105
|
+
ref: virtualRef,
|
106
|
+
sx: {
|
107
|
+
visibility: "hidden",
|
108
|
+
...classes.root
|
109
|
+
},
|
110
|
+
"aria-hidden": "true",
|
111
|
+
dangerouslySetInnerHTML: {
|
112
|
+
__html: getItems()
|
113
|
+
},
|
114
|
+
contentEditable: false
|
115
|
+
});
|
116
|
+
}
|
117
|
+
export default ForceAutoAlignment;
|
@@ -0,0 +1,134 @@
|
|
1
|
+
import { useEffect, useRef } from "react";
|
2
|
+
import { Path, Transforms } from "slate";
|
3
|
+
import { getNode } from "../../../utils/helper";
|
4
|
+
import { ROW_HEIGHT } from "../Utils/gridDropItem";
|
5
|
+
import { findFirstRowOverlap, getGridArea, handleContainers, moveOverlappedItems } from "./helper";
|
6
|
+
import { Box } from "@mui/material";
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
8
|
+
const updateTextHeight = (editor, path, height) => {
|
9
|
+
if (!height) {
|
10
|
+
return;
|
11
|
+
}
|
12
|
+
const parentPath = Path.parent(path);
|
13
|
+
const currentNode = getNode(editor, parentPath);
|
14
|
+
const gridItems = currentNode?.children || [];
|
15
|
+
const isNewlyAddedElement = gridItems.some(gridItem => !gridItem.gridArea_xs && gridItem.type !== "paragraph");
|
16
|
+
if (isNewlyAddedElement) {
|
17
|
+
return;
|
18
|
+
}
|
19
|
+
const textItemIndex = path[parentPath.length];
|
20
|
+
const textItem = gridItems.find((_, index) => textItemIndex === index);
|
21
|
+
const {
|
22
|
+
marginTop_xs: marginTop,
|
23
|
+
gridArea_xs: gridArea,
|
24
|
+
height_xs
|
25
|
+
} = textItem;
|
26
|
+
const oldHeight = height_xs + marginTop;
|
27
|
+
const newHeight = height + marginTop;
|
28
|
+
const extraHeight = newHeight - oldHeight;
|
29
|
+
let containerExtraHeight = extraHeight;
|
30
|
+
if (extraHeight > 0) {
|
31
|
+
const [startRow] = getGridArea(gridArea);
|
32
|
+
const newRows = Math.floor(newHeight / ROW_HEIGHT) + 1;
|
33
|
+
const endRow = startRow + newRows;
|
34
|
+
const firstOverlappedRow = findFirstRowOverlap(gridItems, startRow, endRow, textItemIndex);
|
35
|
+
if (firstOverlappedRow) {
|
36
|
+
const moveRows = endRow - firstOverlappedRow;
|
37
|
+
moveOverlappedItems(editor, moveRows, gridItems, parentPath, textItemIndex, startRow);
|
38
|
+
containerExtraHeight += moveRows * ROW_HEIGHT;
|
39
|
+
}
|
40
|
+
|
41
|
+
// handle containers (box and section)
|
42
|
+
const containerData = handleContainers(editor, parentPath, containerExtraHeight);
|
43
|
+
containerData.forEach(container => {
|
44
|
+
const {
|
45
|
+
moveRows,
|
46
|
+
containerNode,
|
47
|
+
containerPath,
|
48
|
+
newHeight,
|
49
|
+
childIndex,
|
50
|
+
lastChildStartRow
|
51
|
+
} = container;
|
52
|
+
if (moveRows) {
|
53
|
+
moveOverlappedItems(editor, moveRows, containerNode?.children, containerPath, childIndex, lastChildStartRow);
|
54
|
+
}
|
55
|
+
Transforms.setNodes(editor, {
|
56
|
+
height_xs: newHeight,
|
57
|
+
xs_updatedOn: new Date().getTime()
|
58
|
+
}, {
|
59
|
+
at: containerPath
|
60
|
+
});
|
61
|
+
});
|
62
|
+
Transforms.setNodes(editor, {
|
63
|
+
height_xs: height
|
64
|
+
}, {
|
65
|
+
at: path
|
66
|
+
});
|
67
|
+
}
|
68
|
+
};
|
69
|
+
function VirtualTextElement(props) {
|
70
|
+
const {
|
71
|
+
dataSets,
|
72
|
+
getCurrentEle,
|
73
|
+
path,
|
74
|
+
editor
|
75
|
+
} = props;
|
76
|
+
const currElement = getCurrentEle();
|
77
|
+
const textRef = useRef(null);
|
78
|
+
const prevTextRef = useRef(currElement?.innerText);
|
79
|
+
useEffect(() => {
|
80
|
+
const observer = new ResizeObserver(([entry]) => {
|
81
|
+
if (entry) {
|
82
|
+
const {
|
83
|
+
height
|
84
|
+
} = entry.contentRect;
|
85
|
+
const currentText = currElement?.innerText;
|
86
|
+
const prevText = prevTextRef.current;
|
87
|
+
if (currentText && currentText !== prevText) {
|
88
|
+
updateTextHeight(editor, path, height);
|
89
|
+
}
|
90
|
+
prevTextRef.current = currentText;
|
91
|
+
}
|
92
|
+
});
|
93
|
+
const elementRef = textRef?.current;
|
94
|
+
if (elementRef) {
|
95
|
+
observer.observe(elementRef);
|
96
|
+
}
|
97
|
+
return () => {
|
98
|
+
const elementRef = textRef?.current;
|
99
|
+
if (elementRef) {
|
100
|
+
observer.unobserve(elementRef);
|
101
|
+
}
|
102
|
+
observer.disconnect();
|
103
|
+
};
|
104
|
+
}, [currElement?.innerText]);
|
105
|
+
return /*#__PURE__*/_jsx(Box, {
|
106
|
+
style: {
|
107
|
+
position: "fixed",
|
108
|
+
width: dataSets["data-width-xs"],
|
109
|
+
minHeight: "fit-content",
|
110
|
+
visibility: "hidden",
|
111
|
+
pointerEvents: "none",
|
112
|
+
right: 100,
|
113
|
+
top: 100
|
114
|
+
},
|
115
|
+
ref: textRef,
|
116
|
+
sx: {
|
117
|
+
"& .leaf-item": {
|
118
|
+
fontSize: "var(--fontSize_xs) !important",
|
119
|
+
"& span": {
|
120
|
+
fontSize: "var(--fontSize_xs) !important"
|
121
|
+
}
|
122
|
+
},
|
123
|
+
"& .editor-blocker": {
|
124
|
+
display: "none"
|
125
|
+
}
|
126
|
+
},
|
127
|
+
dangerouslySetInnerHTML: {
|
128
|
+
__html: currElement?.innerHTML
|
129
|
+
},
|
130
|
+
contentEditable: false,
|
131
|
+
id: "virtual-text-element"
|
132
|
+
});
|
133
|
+
}
|
134
|
+
export default VirtualTextElement;
|
@@ -0,0 +1,281 @@
|
|
1
|
+
import { ROW_HEIGHT } from "../Utils/gridDropItem";
|
2
|
+
import { Transforms, Editor } from "slate";
|
3
|
+
const isBulletOrTickIcon = (width, itemStartRow, startRow) => {
|
4
|
+
return width <= 40 && itemStartRow === startRow;
|
5
|
+
};
|
6
|
+
export const findFirstRowOverlap = (gridItems, startRow, endRow, textItemIndex) => {
|
7
|
+
let firstOverlapRow;
|
8
|
+
gridItems.forEach((gridItem, index) => {
|
9
|
+
const {
|
10
|
+
gridArea_xs: gridArea,
|
11
|
+
width_xs
|
12
|
+
} = gridItem;
|
13
|
+
if (!gridArea) {
|
14
|
+
return;
|
15
|
+
}
|
16
|
+
const [itemStartRow] = getGridArea(gridArea);
|
17
|
+
const isItemOverlap = itemStartRow >= startRow && itemStartRow <= endRow;
|
18
|
+
if (isBulletOrTickIcon(width_xs, itemStartRow, startRow)) {
|
19
|
+
return;
|
20
|
+
}
|
21
|
+
const isCurrentEle = textItemIndex === index;
|
22
|
+
if (isItemOverlap && !isCurrentEle && gridArea) {
|
23
|
+
firstOverlapRow = firstOverlapRow ? Math.min(firstOverlapRow, itemStartRow) : itemStartRow;
|
24
|
+
}
|
25
|
+
});
|
26
|
+
return firstOverlapRow;
|
27
|
+
};
|
28
|
+
export const getHeight = (oldHeight, newHeight) => {
|
29
|
+
const changeHeight = oldHeight && oldHeight < newHeight;
|
30
|
+
const height = changeHeight ? newHeight : oldHeight;
|
31
|
+
return {
|
32
|
+
height,
|
33
|
+
changeHeight
|
34
|
+
};
|
35
|
+
};
|
36
|
+
export const getGridArea = gridArea => {
|
37
|
+
return gridArea.split("/").map(num => parseInt(num));
|
38
|
+
};
|
39
|
+
const getBoxToAutoAlign = (editor, sectionPath) => {
|
40
|
+
const [boxData] = Editor.nodes(editor, {
|
41
|
+
at: sectionPath,
|
42
|
+
match: node => node.type === "freegridBox" && node.autoAlign
|
43
|
+
});
|
44
|
+
return boxData || [];
|
45
|
+
};
|
46
|
+
const handleGridItems = (gridItems, lastRow) => {
|
47
|
+
// to find the previously occupied rows
|
48
|
+
gridItems.forEach(item => {
|
49
|
+
const {
|
50
|
+
gridArea_xs: gridArea,
|
51
|
+
marginTop_xs,
|
52
|
+
height_xs,
|
53
|
+
type
|
54
|
+
} = item;
|
55
|
+
if (type === "paragraph") {
|
56
|
+
// non-freegridItem,
|
57
|
+
// some "paragraph" node is defaulty coming inside in box's children
|
58
|
+
return;
|
59
|
+
}
|
60
|
+
const [startRow] = getGridArea(gridArea);
|
61
|
+
const marginTop = marginTop_xs ? Number(marginTop_xs) : 0;
|
62
|
+
const fullHeight = Number(height_xs) + marginTop;
|
63
|
+
const endRow = startRow + Math.floor(fullHeight / ROW_HEIGHT) + 1;
|
64
|
+
lastRow = Math.max(endRow, lastRow);
|
65
|
+
});
|
66
|
+
return {
|
67
|
+
lastRow
|
68
|
+
};
|
69
|
+
};
|
70
|
+
const handleNonGridItems = (nonGridItems, lastRow, editor, boxPath) => {
|
71
|
+
let containerHeight = (lastRow - 1) * ROW_HEIGHT;
|
72
|
+
let newlyAddedHeight = 0;
|
73
|
+
|
74
|
+
//place it on the next rows that are available
|
75
|
+
nonGridItems.forEach((item, index) => {
|
76
|
+
const {
|
77
|
+
height_xs,
|
78
|
+
type,
|
79
|
+
itemIndex
|
80
|
+
} = item;
|
81
|
+
if (type === "paragraph") {
|
82
|
+
// non-freegridItem
|
83
|
+
return;
|
84
|
+
}
|
85
|
+
const startRow = lastRow || 1;
|
86
|
+
const DEFAULT_NEW_ELEMENT_MARGIN_TOP = 12;
|
87
|
+
let fullHeight = height_xs + DEFAULT_NEW_ELEMENT_MARGIN_TOP;
|
88
|
+
const endRow = startRow + Math.floor(fullHeight / ROW_HEIGHT) + 1;
|
89
|
+
const newGridArea = `${startRow} / 1 / ${startRow + 1} / 2`;
|
90
|
+
const currentElementPath = [...boxPath, itemIndex];
|
91
|
+
Transforms.setNodes(editor, {
|
92
|
+
gridArea_xs: newGridArea,
|
93
|
+
marginTop_xs: 12,
|
94
|
+
left_xs: 12,
|
95
|
+
xs_updatedOn: new Date().getTime()
|
96
|
+
}, {
|
97
|
+
at: currentElementPath
|
98
|
+
});
|
99
|
+
lastRow = Math.max(endRow, lastRow);
|
100
|
+
containerHeight += fullHeight;
|
101
|
+
newlyAddedHeight += fullHeight;
|
102
|
+
});
|
103
|
+
return {
|
104
|
+
lastRow,
|
105
|
+
containerHeight,
|
106
|
+
newlyAddedHeight
|
107
|
+
};
|
108
|
+
};
|
109
|
+
const alignNewElementInContainer = (editor, boxPath, containerItems) => {
|
110
|
+
let lastRow = 1;
|
111
|
+
const gridItems = [];
|
112
|
+
const nonGridItems = [];
|
113
|
+
containerItems.forEach((item, index) => {
|
114
|
+
if (item?.gridArea_xs) {
|
115
|
+
gridItems.push({
|
116
|
+
...item,
|
117
|
+
itemIndex: index
|
118
|
+
});
|
119
|
+
} else {
|
120
|
+
nonGridItems.push({
|
121
|
+
...item,
|
122
|
+
itemIndex: index
|
123
|
+
});
|
124
|
+
}
|
125
|
+
});
|
126
|
+
const {
|
127
|
+
lastRow: lastRowOccupied
|
128
|
+
} = handleGridItems(gridItems, lastRow);
|
129
|
+
lastRow = lastRowOccupied;
|
130
|
+
const {
|
131
|
+
lastRow: lastRowTaken,
|
132
|
+
containerHeight,
|
133
|
+
newlyAddedHeight
|
134
|
+
} = handleNonGridItems(nonGridItems, lastRow, editor, boxPath);
|
135
|
+
lastRow = lastRowTaken;
|
136
|
+
return {
|
137
|
+
lastRow,
|
138
|
+
containerHeight,
|
139
|
+
newlyAddedHeight
|
140
|
+
};
|
141
|
+
};
|
142
|
+
const getAncestorFreeGridContainers = (editor, path) => {
|
143
|
+
const containers = [...Editor.nodes(editor, {
|
144
|
+
at: path,
|
145
|
+
// Start from the current path
|
146
|
+
match: (node, nodePath) => {
|
147
|
+
const container = ["freegridBox", "freegrid"].includes(node.type);
|
148
|
+
return container;
|
149
|
+
},
|
150
|
+
reverse: true // Go upwards in the document tree
|
151
|
+
})].filter(([node, nodePath]) => nodePath.length <= path.length);
|
152
|
+
return containers;
|
153
|
+
};
|
154
|
+
export const handleContainers = (editor, boxPath, extraHeight) => {
|
155
|
+
const containers = getAncestorFreeGridContainers(editor, boxPath);
|
156
|
+
let lastChildStartRow;
|
157
|
+
let lastChildEndRow;
|
158
|
+
let lastChildPath;
|
159
|
+
const containerData = [];
|
160
|
+
for (let i = containers.length - 1; i >= 0; i--) {
|
161
|
+
const container = containers[i];
|
162
|
+
const childContainer = containers[i + 1];
|
163
|
+
const [containerNode, containerPath] = container;
|
164
|
+
const {
|
165
|
+
gridArea_xs,
|
166
|
+
height_xs,
|
167
|
+
marginTop_xs
|
168
|
+
} = containerNode;
|
169
|
+
const [startRow] = gridArea_xs ? getGridArea(gridArea_xs) : [0]; // there is no grid area for section nodes
|
170
|
+
|
171
|
+
let newHeight = Number(height_xs) + extraHeight;
|
172
|
+
let fullHeight = newHeight + Number(marginTop_xs); // to find end row
|
173
|
+
|
174
|
+
if (!childContainer) {
|
175
|
+
const endRow = startRow + Math.floor(fullHeight / ROW_HEIGHT) + 1;
|
176
|
+
containerData.push({
|
177
|
+
moveRows: 0,
|
178
|
+
extraHeight,
|
179
|
+
containerPath,
|
180
|
+
newHeight,
|
181
|
+
containerNode,
|
182
|
+
lastChildStartRow
|
183
|
+
});
|
184
|
+
lastChildStartRow = startRow;
|
185
|
+
lastChildEndRow = endRow;
|
186
|
+
} else {
|
187
|
+
const lastChildIndex = lastChildPath[containerPath.length];
|
188
|
+
const firstOverlappedRow = findFirstRowOverlap(containerNode?.children, lastChildStartRow, lastChildEndRow, lastChildIndex);
|
189
|
+
const moveRows = firstOverlappedRow ? lastChildEndRow - firstOverlappedRow : 0;
|
190
|
+
newHeight = newHeight + moveRows * ROW_HEIGHT;
|
191
|
+
fullHeight = newHeight + Number(marginTop_xs);
|
192
|
+
const newEndRow = startRow + Math.floor(fullHeight / ROW_HEIGHT) + 1;
|
193
|
+
containerData.push({
|
194
|
+
moveRows,
|
195
|
+
extraHeight,
|
196
|
+
childIndex: lastChildIndex,
|
197
|
+
newHeight,
|
198
|
+
containerPath,
|
199
|
+
containerNode,
|
200
|
+
lastChildStartRow
|
201
|
+
});
|
202
|
+
lastChildStartRow = startRow;
|
203
|
+
lastChildEndRow = newEndRow;
|
204
|
+
}
|
205
|
+
lastChildPath = containerPath;
|
206
|
+
}
|
207
|
+
return containerData;
|
208
|
+
};
|
209
|
+
export const moveOverlappedItems = (editor, moveRows, containerItems, containerPath, childIndex, lastChildStartRow) => {
|
210
|
+
containerItems?.forEach((gridItem, index) => {
|
211
|
+
const isChildEle = childIndex === index;
|
212
|
+
if (isChildEle) {
|
213
|
+
return;
|
214
|
+
}
|
215
|
+
if (gridItem.type === "paragraph") {
|
216
|
+
return;
|
217
|
+
}
|
218
|
+
const {
|
219
|
+
gridArea_xs: gridArea,
|
220
|
+
width_xs
|
221
|
+
} = gridItem;
|
222
|
+
const [itemStartRow] = getGridArea(gridArea);
|
223
|
+
if (isBulletOrTickIcon(width_xs, itemStartRow, lastChildStartRow)) {
|
224
|
+
return;
|
225
|
+
}
|
226
|
+
if (itemStartRow >= lastChildStartRow) {
|
227
|
+
const row = itemStartRow + moveRows;
|
228
|
+
const newGridArea = `${row} / 1 / ${row + 1} / 2`;
|
229
|
+
const currentElementPath = [...containerPath, index];
|
230
|
+
Transforms.setNodes(editor, {
|
231
|
+
gridArea_xs: newGridArea
|
232
|
+
}, {
|
233
|
+
at: currentElementPath
|
234
|
+
});
|
235
|
+
}
|
236
|
+
});
|
237
|
+
};
|
238
|
+
export const handleBoxAlignment = (editor, sectionNode, sectionPath) => {
|
239
|
+
const [boxNode, boxPath] = getBoxToAutoAlign(editor, sectionPath);
|
240
|
+
Transforms.setNodes(editor, {
|
241
|
+
autoAlign: false
|
242
|
+
}, {
|
243
|
+
at: boxPath
|
244
|
+
});
|
245
|
+
if (!boxNode) {
|
246
|
+
return;
|
247
|
+
}
|
248
|
+
const containerItems = boxNode?.children || [];
|
249
|
+
const {
|
250
|
+
containerHeight
|
251
|
+
} = alignNewElementInContainer(editor, boxPath, containerItems);
|
252
|
+
const bufferHeight = 12;
|
253
|
+
const newHeight = containerHeight + bufferHeight;
|
254
|
+
const {
|
255
|
+
height_xs
|
256
|
+
} = boxNode;
|
257
|
+
const oldHeight = Number(height_xs);
|
258
|
+
const extraHeight = newHeight - oldHeight;
|
259
|
+
if (extraHeight > 0) {
|
260
|
+
const containerData = handleContainers(editor, boxPath, extraHeight);
|
261
|
+
containerData.forEach(container => {
|
262
|
+
const {
|
263
|
+
moveRows,
|
264
|
+
containerNode,
|
265
|
+
containerPath,
|
266
|
+
newHeight,
|
267
|
+
childIndex,
|
268
|
+
lastChildStartRow
|
269
|
+
} = container;
|
270
|
+
if (moveRows) {
|
271
|
+
moveOverlappedItems(editor, moveRows, containerNode?.children, containerPath, childIndex, lastChildStartRow);
|
272
|
+
}
|
273
|
+
Transforms.setNodes(editor, {
|
274
|
+
height_xs: newHeight,
|
275
|
+
xs_updatedOn: new Date().getTime()
|
276
|
+
}, {
|
277
|
+
at: containerPath
|
278
|
+
});
|
279
|
+
});
|
280
|
+
}
|
281
|
+
};
|