@flozy/editor 9.8.5 → 9.8.7
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 -17
- package/dist/Editor/DialogWrapper.js +31 -25
- package/dist/Editor/Editor.css +17 -9
- 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 +25 -9
- 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/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 +6 -6
- 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/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 -3
- 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/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 +10 -7
- 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
@@ -9,20 +9,20 @@ const FormStyles = theme => ({
|
|
9
9
|
color: "#94A3B8"
|
10
10
|
},
|
11
11
|
bodyTextArea: {
|
12
|
-
|
13
|
-
padding:
|
14
|
-
|
15
|
-
outline:
|
16
|
-
border:
|
12
|
+
"& .mini-editor-cls": {
|
13
|
+
padding: "12px",
|
14
|
+
"&:focus-visible": {
|
15
|
+
outline: "none",
|
16
|
+
border: "none"
|
17
17
|
}
|
18
18
|
},
|
19
19
|
"& .editorWorkflow": {
|
20
|
-
minHeight:
|
21
|
-
padding:
|
20
|
+
minHeight: "130px",
|
21
|
+
padding: "12px",
|
22
22
|
paddingBottom: 0,
|
23
|
-
|
24
|
-
outline:
|
25
|
-
border:
|
23
|
+
"&:focus-visible": {
|
24
|
+
outline: "none",
|
25
|
+
border: "none"
|
26
26
|
}
|
27
27
|
}
|
28
28
|
},
|
@@ -105,7 +105,7 @@ const FormStyles = theme => ({
|
|
105
105
|
padding: "4px 22px",
|
106
106
|
textTransform: "none",
|
107
107
|
border: "1px solid #D8DDE1",
|
108
|
-
minWidth:
|
108
|
+
minWidth: "126px",
|
109
109
|
"& svg": {
|
110
110
|
"& path": {
|
111
111
|
stroke: "#64748B"
|
@@ -169,17 +169,19 @@ const FormStyles = theme => ({
|
|
169
169
|
}
|
170
170
|
},
|
171
171
|
colorButtonSingle: {
|
172
|
+
border: "1.5px solid #DCE4EC !important",
|
172
173
|
"&.active": {
|
173
|
-
"&:before": {
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
}
|
174
|
+
// "&:before": {
|
175
|
+
// content: '" "',
|
176
|
+
// position: "absolute",
|
177
|
+
// top: "-5px",
|
178
|
+
// left: "-5px",
|
179
|
+
// width: "calc(100% + 4px)",
|
180
|
+
// height: "calc(100% + 4px)",
|
181
|
+
// border: "3px solid blue",
|
182
|
+
// borderRadius: "50%",
|
183
|
+
// },
|
184
|
+
outline: "2px solid #2563EB"
|
183
185
|
}
|
184
186
|
},
|
185
187
|
colorButtonsInner: {
|
@@ -249,7 +251,7 @@ const FormStyles = theme => ({
|
|
249
251
|
}
|
250
252
|
},
|
251
253
|
root: {
|
252
|
-
padding:
|
254
|
+
padding: "10px"
|
253
255
|
}
|
254
256
|
});
|
255
257
|
export default FormStyles;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import React from "react";
|
1
|
+
import React, { useEffect, useRef, useState } from "react";
|
2
2
|
import { Path, Transforms, Node } from "slate";
|
3
3
|
import { ReactEditor, useSlateStatic } from "slate-react";
|
4
4
|
import { Box, useTheme } from "@mui/material";
|
@@ -43,7 +43,8 @@ const FreeGrid = props => {
|
|
43
43
|
} = props;
|
44
44
|
const {
|
45
45
|
sectionName,
|
46
|
-
sectionBorderRadius
|
46
|
+
sectionBorderRadius,
|
47
|
+
height_xs
|
47
48
|
} = element;
|
48
49
|
const {
|
49
50
|
readOnly,
|
@@ -64,11 +65,14 @@ const FreeGrid = props => {
|
|
64
65
|
const {
|
65
66
|
setSelectedElement
|
66
67
|
} = useEditorContext();
|
68
|
+
const [autoAlign, setAutoAlign] = useState(false);
|
69
|
+
const count = useRef(2);
|
70
|
+
const childrenCountRef = useRef(element?.children?.length);
|
67
71
|
const onChange = data => {
|
68
72
|
const append = breakpoint === "lg" ? "" : `_${breakpoint}`;
|
69
73
|
const updateData = {
|
70
74
|
...data,
|
71
|
-
[`height${append}`]:
|
75
|
+
[`height${append}`]: data.height
|
72
76
|
};
|
73
77
|
if (append !== "") {
|
74
78
|
delete updateData.height;
|
@@ -130,6 +134,10 @@ const FreeGrid = props => {
|
|
130
134
|
setSelectedElement
|
131
135
|
});
|
132
136
|
break;
|
137
|
+
case "forceAutoAlignment":
|
138
|
+
setAutoAlign(true);
|
139
|
+
setSelectedElement({});
|
140
|
+
break;
|
133
141
|
case "deleteSection":
|
134
142
|
if (Node.has(editor, cur_root_path)) {
|
135
143
|
Transforms.removeNodes(editor, {
|
@@ -151,9 +159,12 @@ const FreeGrid = props => {
|
|
151
159
|
console.log(err);
|
152
160
|
}
|
153
161
|
};
|
162
|
+
useEffect(() => {
|
163
|
+
childrenCountRef.current = element?.children?.length;
|
164
|
+
}, [element?.children?.length]);
|
154
165
|
const handleAddElementClick = type => () => {
|
155
166
|
const isEmpty = isEmptySection();
|
156
|
-
const insertAt = isEmpty ? [...path, 0] : [...path,
|
167
|
+
const insertAt = isEmpty ? [...path, 0] : [...path, childrenCountRef.current];
|
157
168
|
switch (type) {
|
158
169
|
case "addText":
|
159
170
|
Transforms.insertNodes(editor, [{
|
@@ -188,20 +199,6 @@ const FreeGrid = props => {
|
|
188
199
|
linkType: "webAddress"
|
189
200
|
},
|
190
201
|
iconPosition: "start",
|
191
|
-
bgColor: "#2563EB",
|
192
|
-
textColor: "#FFF",
|
193
|
-
borderRadius: {
|
194
|
-
topLeft: 30,
|
195
|
-
topRight: 30,
|
196
|
-
bottomLeft: 30,
|
197
|
-
bottomRight: 30
|
198
|
-
},
|
199
|
-
bannerSpacing: {
|
200
|
-
left: 12,
|
201
|
-
top: 12,
|
202
|
-
right: 12,
|
203
|
-
bottom: 12
|
204
|
-
},
|
205
202
|
textAlign: "center",
|
206
203
|
label: "Get Started"
|
207
204
|
}],
|
@@ -374,6 +371,19 @@ const FreeGrid = props => {
|
|
374
371
|
break;
|
375
372
|
default:
|
376
373
|
}
|
374
|
+
if (breakpoint === "lg") {
|
375
|
+
setSelectedElement({});
|
376
|
+
|
377
|
+
// auto align in mobile
|
378
|
+
Transforms.setNodes(editor, {
|
379
|
+
xs_updatedOn: null,
|
380
|
+
updated_at: new Date().getTime()
|
381
|
+
}, {
|
382
|
+
at: path
|
383
|
+
});
|
384
|
+
}
|
385
|
+
count.current = count.current + 1;
|
386
|
+
|
377
387
|
// focus on newly added element
|
378
388
|
focusOnNewItem(editor, insertAt, {
|
379
389
|
setSelectedElement
|
@@ -445,6 +455,17 @@ const FreeGrid = props => {
|
|
445
455
|
}
|
446
456
|
}, theme);
|
447
457
|
const sectionTypeOptions = (itemOptions?.section || []).filter(f => (hideTools || []).indexOf(f) === -1);
|
458
|
+
|
459
|
+
// const id = useMemo(() => {
|
460
|
+
// let eleId = `freegrid_container_${path.join("|")}_${breakpoint}`;
|
461
|
+
|
462
|
+
// if (autoAlign) {
|
463
|
+
// eleId += `_${updated_at}`; // re-render component on force auto align
|
464
|
+
// }
|
465
|
+
|
466
|
+
// return eleId;
|
467
|
+
// }, [autoAlign, updated_at, breakpoint, path]);
|
468
|
+
|
448
469
|
return /*#__PURE__*/_jsx(RnD, {
|
449
470
|
id: `freegrid_container_${path.join("|")}_${updated_at}_${breakpoint}`,
|
450
471
|
className: `
|
@@ -458,6 +479,9 @@ const FreeGrid = props => {
|
|
458
479
|
position: "relative",
|
459
480
|
"--height": `${height}px`
|
460
481
|
},
|
482
|
+
dataSets: {
|
483
|
+
"data-height-xs": height_xs
|
484
|
+
},
|
461
485
|
defaultStyle: {
|
462
486
|
width: "100%",
|
463
487
|
height: height ? `${height}px` : "auto"
|
@@ -514,7 +538,8 @@ const FreeGrid = props => {
|
|
514
538
|
},
|
515
539
|
customProps: {
|
516
540
|
customProps
|
517
|
-
}
|
541
|
+
},
|
542
|
+
breakpoint
|
518
543
|
}
|
519
544
|
},
|
520
545
|
settings: {
|
@@ -525,9 +550,7 @@ const FreeGrid = props => {
|
|
525
550
|
editor,
|
526
551
|
path,
|
527
552
|
classes,
|
528
|
-
|
529
|
-
translation,
|
530
|
-
customProps
|
553
|
+
translation
|
531
554
|
}
|
532
555
|
}
|
533
556
|
},
|
@@ -537,6 +560,9 @@ const FreeGrid = props => {
|
|
537
560
|
handleContextMenuClick: handleContextMenuClick,
|
538
561
|
translation: translation,
|
539
562
|
customProps: customProps,
|
563
|
+
sectionElement: element,
|
564
|
+
autoAlign: autoAlign,
|
565
|
+
setAutoAlign: setAutoAlign,
|
540
566
|
children: /*#__PURE__*/_jsxs(Box, {
|
541
567
|
...attributes,
|
542
568
|
id: sectionName,
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import React from "react";
|
1
|
+
import React, { useMemo } from "react";
|
2
2
|
import { Transforms, Node, Path } from "slate";
|
3
3
|
import { useSlateStatic } from "slate-react";
|
4
4
|
import { ReactEditor } from "slate-react";
|
@@ -37,7 +37,12 @@ const FreeGridBox = props => {
|
|
37
37
|
sectionBorderRadius,
|
38
38
|
borderWidth,
|
39
39
|
borderColor,
|
40
|
-
borderStyle
|
40
|
+
borderStyle,
|
41
|
+
height_xs,
|
42
|
+
marginTop_xs,
|
43
|
+
gridArea_xs,
|
44
|
+
width_xs,
|
45
|
+
left_xs
|
41
46
|
} = element;
|
42
47
|
// get values based on breakpoint size
|
43
48
|
const {
|
@@ -152,9 +157,12 @@ const FreeGridBox = props => {
|
|
152
157
|
};
|
153
158
|
const repeatTimes = Math.floor(height / ROW_HEIGHT);
|
154
159
|
const sectionTypeOptions = (itemOptions?.box || []).filter(f => (hideTools || []).indexOf(f) === -1);
|
160
|
+
const isBoxHeader = useMemo(() => {
|
161
|
+
return element?.children?.some(c => c.childType === "appHeader" && !c.xs_updatedOn);
|
162
|
+
}, [element]);
|
155
163
|
return /*#__PURE__*/_jsx(RnD, {
|
156
164
|
id: `freegrid_box_item_${path.join("|")}_${updated_at}_${breakpoint}`,
|
157
|
-
className: `freegrid-item path-${path.length} breakpoint-${breakpoint}`,
|
165
|
+
className: `freegrid-item path-${path.length} breakpoint-${breakpoint} freegrid-box_${path.join("_")}`,
|
158
166
|
editor: editor,
|
159
167
|
path: path,
|
160
168
|
actions: sectionTypeOptions,
|
@@ -169,12 +177,23 @@ const FreeGridBox = props => {
|
|
169
177
|
"--gridArea": `${gridArea}`,
|
170
178
|
"--width": `${width}px`,
|
171
179
|
"--height": `${height}px`,
|
172
|
-
"--zIndex": 100 + arrangeIndex
|
180
|
+
"--zIndex": 100 + arrangeIndex,
|
181
|
+
"--height_xs": height_xs ? `${height_xs}px` : "auto",
|
182
|
+
"--marginTop_xs": marginTop_xs ? `${marginTop_xs}px` : "24px"
|
183
|
+
// "--gridArea_xs": gridArea_xs ? gridArea_xs : "unset",
|
173
184
|
},
|
185
|
+
|
174
186
|
defaultStyle: {
|
175
187
|
height: `${height}px`,
|
176
188
|
width: `${width}px`
|
177
189
|
},
|
190
|
+
dataSets: {
|
191
|
+
"data-grid-area-xs": gridArea_xs,
|
192
|
+
"data-margin-top-xs": marginTop_xs,
|
193
|
+
"data-height-xs": height_xs,
|
194
|
+
"data-width-xs": width_xs,
|
195
|
+
"data-left-xs": left_xs
|
196
|
+
},
|
178
197
|
gridArea: gridArea,
|
179
198
|
onChange: onChange,
|
180
199
|
delta: {
|
@@ -192,6 +211,8 @@ const FreeGridBox = props => {
|
|
192
211
|
type: "parent-container",
|
193
212
|
customProps: customProps,
|
194
213
|
translation: translation,
|
214
|
+
breakpoint: breakpoint,
|
215
|
+
isBoxHeader: isBoxHeader,
|
195
216
|
children: /*#__PURE__*/_jsx(Box, {
|
196
217
|
component: "div",
|
197
218
|
...attributes,
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import React, { useState } from "react";
|
1
|
+
import React, { useMemo, useState } from "react";
|
2
2
|
import { Transforms, Node, Path } from "slate";
|
3
3
|
import { useSlateStatic } from "slate-react";
|
4
4
|
import { ReactEditor } from "slate-react";
|
@@ -35,7 +35,12 @@ const FreeGridItem = props => {
|
|
35
35
|
const {
|
36
36
|
updated_at,
|
37
37
|
childType,
|
38
|
-
zIndex
|
38
|
+
zIndex,
|
39
|
+
height_xs,
|
40
|
+
width_xs,
|
41
|
+
marginTop_xs,
|
42
|
+
gridArea_xs,
|
43
|
+
left_xs
|
39
44
|
} = element;
|
40
45
|
// get values based on breakpoint size
|
41
46
|
const {
|
@@ -54,6 +59,9 @@ const FreeGridItem = props => {
|
|
54
59
|
arrangeIndex = Math.max(1, arrangeIndex);
|
55
60
|
const [popup, setPopup] = useState(null);
|
56
61
|
const onChangeSettings = () => {};
|
62
|
+
// const refInput = useRef();
|
63
|
+
// const [virtualHeight, setVirtualHeight] = useState(height || 0);
|
64
|
+
|
57
65
|
const onChange = data => {
|
58
66
|
let updateData = {
|
59
67
|
...data
|
@@ -109,6 +117,13 @@ const FreeGridItem = props => {
|
|
109
117
|
Transforms.removeNodes(editor, {
|
110
118
|
at: path
|
111
119
|
});
|
120
|
+
const parentPath = Path.parent(path);
|
121
|
+
Transforms.setNodes(editor, {
|
122
|
+
xs_updatedOn: null,
|
123
|
+
updated_at: new Date().getTime()
|
124
|
+
}, {
|
125
|
+
at: parentPath
|
126
|
+
});
|
112
127
|
} catch (err) {
|
113
128
|
console.log(err);
|
114
129
|
}
|
@@ -235,6 +250,22 @@ const FreeGridItem = props => {
|
|
235
250
|
}
|
236
251
|
};
|
237
252
|
const itemTypeOptions = (itemOptions[childType] || itemOptions?.default).filter(f => (hideTools || []).indexOf(f) === -1);
|
253
|
+
const variableStyle = useMemo(() => {
|
254
|
+
const {
|
255
|
+
width,
|
256
|
+
height
|
257
|
+
} = element || {};
|
258
|
+
let widthVar = width_xs;
|
259
|
+
let heightVar = height_xs;
|
260
|
+
if (element?.childType === "image") {
|
261
|
+
widthVar = width_xs || width;
|
262
|
+
heightVar = height_xs || height;
|
263
|
+
}
|
264
|
+
return {
|
265
|
+
"--width_xs": widthVar ? `${widthVar}px` : "auto",
|
266
|
+
"--height_xs": heightVar ? `${heightVar}px` : "auto"
|
267
|
+
};
|
268
|
+
}, [element]);
|
238
269
|
return /*#__PURE__*/_jsx(RnD, {
|
239
270
|
id: `freegrid_item_${path.join("|")}_${updated_at}_${breakpoint}`,
|
240
271
|
className: `freegrid-item path-${path.length} breakpoint-${breakpoint}`,
|
@@ -254,7 +285,18 @@ const FreeGridItem = props => {
|
|
254
285
|
"--gridArea": `${gridArea}`,
|
255
286
|
"--width": `${width}px`,
|
256
287
|
"--height": `${height}px`,
|
257
|
-
"--zIndex": 100 + arrangeIndex
|
288
|
+
"--zIndex": 100 + arrangeIndex,
|
289
|
+
"--marginTop_xs": marginTop_xs ? `${marginTop_xs}px` : "0px",
|
290
|
+
...variableStyle
|
291
|
+
// "--gridArea_xs": gridArea_xs ? gridArea_xs : "unset",
|
292
|
+
},
|
293
|
+
|
294
|
+
dataSets: {
|
295
|
+
"data-grid-area-xs": gridArea_xs,
|
296
|
+
"data-margin-top-xs": marginTop_xs,
|
297
|
+
"data-height-xs": height_xs,
|
298
|
+
"data-width-xs": width_xs,
|
299
|
+
"data-left-xs": left_xs
|
258
300
|
},
|
259
301
|
defaultStyle: {
|
260
302
|
height: `${height}px`,
|
@@ -277,6 +319,7 @@ const FreeGridItem = props => {
|
|
277
319
|
},
|
278
320
|
customProps: customProps,
|
279
321
|
translation: translation,
|
322
|
+
breakpoint: breakpoint,
|
280
323
|
children: /*#__PURE__*/_jsxs(Box, {
|
281
324
|
component: "div",
|
282
325
|
...attributes,
|
@@ -5,7 +5,8 @@ import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
5
|
const More = props => {
|
6
6
|
const {
|
7
7
|
handleClick,
|
8
|
-
translation
|
8
|
+
translation,
|
9
|
+
breakpoint
|
9
10
|
} = props;
|
10
11
|
return /*#__PURE__*/_jsx(Box, {
|
11
12
|
children: /*#__PURE__*/_jsxs(List, {
|
@@ -18,7 +19,11 @@ const More = props => {
|
|
18
19
|
className: "item-wrapper",
|
19
20
|
onClick: handleClick("duplicateSection"),
|
20
21
|
children: translation?.translation("Duplicate Section")
|
21
|
-
}), /*#__PURE__*/_jsx(ListItemButton, {
|
22
|
+
}), breakpoint === "xs" ? /*#__PURE__*/_jsx(ListItemButton, {
|
23
|
+
className: "item-wrapper",
|
24
|
+
onClick: handleClick("forceAutoAlignment"),
|
25
|
+
children: "Force Auto Alignment"
|
26
|
+
}) : null, /*#__PURE__*/_jsx(ListItemButton, {
|
22
27
|
className: "item-wrapper",
|
23
28
|
onClick: handleClick("deleteSection"),
|
24
29
|
children: "Delete Section"
|
@@ -292,7 +292,7 @@ const GridItem = props => {
|
|
292
292
|
...getBRProps,
|
293
293
|
display: "flex",
|
294
294
|
flexDirection: flexDirection || "column",
|
295
|
-
background: bgColor
|
295
|
+
background: bgColor,
|
296
296
|
borderColor: getBorderColor(),
|
297
297
|
borderWidth: borderWidth || "1px",
|
298
298
|
borderStyle: borderStyle || "solid",
|
@@ -27,6 +27,9 @@ const CheckList = props => {
|
|
27
27
|
checked
|
28
28
|
} = element;
|
29
29
|
const path = ReactEditor.findPath(editor, element);
|
30
|
+
const {
|
31
|
+
customLineHeight
|
32
|
+
} = customProps || {};
|
30
33
|
const handleCheck = e => {
|
31
34
|
Transforms.setNodes(editor, {
|
32
35
|
checked: e.target.checked
|
@@ -45,7 +48,7 @@ const CheckList = props => {
|
|
45
48
|
justifyContent: "center",
|
46
49
|
alignItems: "center",
|
47
50
|
...(style || {}),
|
48
|
-
lineHeight:
|
51
|
+
lineHeight: `${customLineHeight} !important`
|
49
52
|
},
|
50
53
|
children: [/*#__PURE__*/_jsxs("div", {
|
51
54
|
contentEditable: false,
|
@@ -5,6 +5,7 @@ import { Box } from "@mui/material";
|
|
5
5
|
import { isTextSelected } from "../../utils/helper";
|
6
6
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
7
7
|
import SimpleTextStyle from "./style";
|
8
|
+
import { getBreakpointLineSpacing } from "../../helper/theme";
|
8
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
10
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
10
11
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
@@ -27,10 +28,17 @@ const SimpleText = props => {
|
|
27
28
|
editorPlaceholder,
|
28
29
|
translation
|
29
30
|
} = customProps;
|
31
|
+
const {
|
32
|
+
activeBreakPoint
|
33
|
+
} = useEditorContext();
|
30
34
|
// const { element: pageSt } = getPageSettings(editor) || {};
|
31
35
|
// const { pageColor } = pageSt?.pageProps || {};
|
36
|
+
const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
|
37
|
+
const lineH = element?.children[0]?.lineHeight;
|
38
|
+
const lineHeight = getBreakpointLineSpacing(lineH, activeBreakPoint || (isMobile ? "xs" : "lg"));
|
32
39
|
const classes = SimpleTextStyle({
|
33
|
-
pageColor: "#FFFFFF"
|
40
|
+
pageColor: "#FFFFFF",
|
41
|
+
lineHeight
|
34
42
|
});
|
35
43
|
const selected = useSelected();
|
36
44
|
const path = ReactEditor.findPath(editor, element);
|
@@ -35,8 +35,8 @@ const SimpleTextStyle = ({
|
|
35
35
|
height: "24px",
|
36
36
|
overflow: "hidden",
|
37
37
|
fontSize: "14px",
|
38
|
-
display:
|
39
|
-
alignItems:
|
38
|
+
display: "inline-flex",
|
39
|
+
alignItems: "center",
|
40
40
|
"& .bg-pad-sl": {
|
41
41
|
padding: "2px 4px 2px 4px",
|
42
42
|
background: "transparent",
|
@@ -307,7 +307,7 @@ const Table = props => {
|
|
307
307
|
onScroll: handleScroll,
|
308
308
|
onMouseOver: onMouseOver,
|
309
309
|
onMouseLeave: onMouseLeave,
|
310
|
-
className:
|
310
|
+
className: "custom-scroll",
|
311
311
|
children: [/*#__PURE__*/_jsx(TableComp, {
|
312
312
|
className: readOnly ? "readOnly" : "",
|
313
313
|
sx: {
|
@@ -345,8 +345,8 @@ const Table = props => {
|
|
345
345
|
handleAction: handleAction,
|
346
346
|
exandTools: exandTools,
|
347
347
|
openSetttings: openSetttings,
|
348
|
-
|
349
|
-
|
348
|
+
hideTools: hideTools,
|
349
|
+
translation: translation
|
350
350
|
}), /*#__PURE__*/_jsx(MoreTableSettings, {
|
351
351
|
exandTools: exandTools,
|
352
352
|
handleAction: handleAction,
|
@@ -4,6 +4,12 @@ import { useSlate } from "slate-react";
|
|
4
4
|
import { getNodeText } from "../../utils/helper";
|
5
5
|
import { jsx as _jsx } from "react/jsx-runtime";
|
6
6
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
7
|
+
const isEmptyTextNode = node => {
|
8
|
+
if (Text.isText(node)) {
|
9
|
+
return !node.text.trim();
|
10
|
+
}
|
11
|
+
return false;
|
12
|
+
};
|
7
13
|
const Title = props => {
|
8
14
|
const {
|
9
15
|
attributes,
|
@@ -50,10 +56,4 @@ const useDetectExitFromTitle = (titleNode, onSaveTitle) => {
|
|
50
56
|
}
|
51
57
|
}, [editor.selection]);
|
52
58
|
return null;
|
53
|
-
};
|
54
|
-
const isEmptyTextNode = node => {
|
55
|
-
if (Text.isText(node)) {
|
56
|
-
return !node.text.trim();
|
57
|
-
}
|
58
|
-
return false;
|
59
59
|
};
|
@@ -34,7 +34,8 @@ const VariableButton = props => {
|
|
34
34
|
PaperProps: {
|
35
35
|
style: {
|
36
36
|
maxHeight: 300,
|
37
|
-
overflowY: "auto"
|
37
|
+
overflowY: "auto",
|
38
|
+
transformOrigin: 'top left'
|
38
39
|
},
|
39
40
|
sx: {
|
40
41
|
"&::-webkit-scrollbar-track": {
|
@@ -44,6 +45,14 @@ const VariableButton = props => {
|
|
44
45
|
borderRadius: "16px"
|
45
46
|
}
|
46
47
|
}
|
48
|
+
},
|
49
|
+
anchorOrigin: {
|
50
|
+
vertical: 'bottom',
|
51
|
+
horizontal: 'right'
|
52
|
+
},
|
53
|
+
transformOrigin: {
|
54
|
+
vertical: 'top',
|
55
|
+
horizontal: 'right'
|
47
56
|
}
|
48
57
|
},
|
49
58
|
children: [/*#__PURE__*/_jsx(MenuItem, {
|
@@ -45,12 +45,13 @@ const MiniEditor = props => {
|
|
45
45
|
const {
|
46
46
|
translationMock
|
47
47
|
} = otherProps;
|
48
|
+
const dummyTranslation = () => {};
|
48
49
|
const customProps = {
|
49
50
|
...(otherProps || {}),
|
50
51
|
readOnly: isReadOnly,
|
51
52
|
editorPlaceholder: miniEditorPlaceholder,
|
52
53
|
page_id: id,
|
53
|
-
translation: translation || translationMock
|
54
|
+
translation: translation || translationMock || dummyTranslation
|
54
55
|
};
|
55
56
|
const [mentions, setMentions] = useMentions({
|
56
57
|
editor,
|
@@ -133,7 +133,7 @@ const editorStyles = ({
|
|
133
133
|
},
|
134
134
|
"& .accordion-summary-collapse-btn": {
|
135
135
|
padding: "4px",
|
136
|
-
width:
|
136
|
+
width: "5px"
|
137
137
|
},
|
138
138
|
"& .workflow-icon-btn": {
|
139
139
|
pointerEvents: "none",
|
@@ -242,7 +242,7 @@ const editorStyles = ({
|
|
242
242
|
}
|
243
243
|
},
|
244
244
|
"& .section-tw": {
|
245
|
-
background:
|
245
|
+
background: "transparent !important",
|
246
246
|
"& button": {
|
247
247
|
padding: "2px",
|
248
248
|
borderRadius: "0px",
|
@@ -291,8 +291,8 @@ const editorStyles = ({
|
|
291
291
|
}
|
292
292
|
},
|
293
293
|
"& ::selection": {
|
294
|
-
background:
|
295
|
-
color:
|
294
|
+
background: "rgba(35, 131, 226, 0.35)!important",
|
295
|
+
color: "inherit"
|
296
296
|
},
|
297
297
|
"&.readOnlyContainer": {
|
298
298
|
"& .max-content": {
|
@@ -302,7 +302,7 @@ const editorStyles = ({
|
|
302
302
|
},
|
303
303
|
fullScreenWrapper: {
|
304
304
|
"& .editor-wrapper": {
|
305
|
-
paddingTop:
|
305
|
+
paddingTop: "20px"
|
306
306
|
},
|
307
307
|
"& .MuiDialog-paper, & .MuiPopover-paper": {
|
308
308
|
background: `${theme?.palette?.editor?.background} !important`
|
@@ -1,8 +1,32 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { Select, MenuItem } from "@mui/material";
|
3
|
-
import { addMarkData, activeMark } from "../../utils/SlateUtilityFunctions.js";
|
3
|
+
import { addMarkData, activeMark, getSelectedElementStyle } from "../../utils/SlateUtilityFunctions.js";
|
4
|
+
import { toolbarGroups } from "../toolbarGroups.js";
|
4
5
|
import KeyboardArrowDownRoundedIcon from "@mui/icons-material/KeyboardArrowDownRounded";
|
6
|
+
import { googleFontList as defaultFonts } from "../../common/FontLoader/FontList.js";
|
5
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
8
|
+
const allTools = toolbarGroups.flat();
|
9
|
+
const fontWeight = allTools.find(f => f.format === "fontWeight");
|
10
|
+
export const getValue = (editor, format) => {
|
11
|
+
switch (format) {
|
12
|
+
case "fontFamily":
|
13
|
+
{
|
14
|
+
const style = getSelectedElementStyle("font-family", editor, format);
|
15
|
+
return style || defaultFonts[0];
|
16
|
+
}
|
17
|
+
case "fontWeight":
|
18
|
+
{
|
19
|
+
const {
|
20
|
+
options
|
21
|
+
} = fontWeight || {};
|
22
|
+
const fontWeightStyle = getSelectedElementStyle("font-weight", editor, format);
|
23
|
+
const selected = options?.find(o => o.value === fontWeightStyle || o.numVal === fontWeightStyle);
|
24
|
+
return selected?.value;
|
25
|
+
}
|
26
|
+
default:
|
27
|
+
return activeMark(editor, format);
|
28
|
+
}
|
29
|
+
};
|
6
30
|
const Dropdown = ({
|
7
31
|
classes,
|
8
32
|
editor,
|
@@ -10,7 +34,7 @@ const Dropdown = ({
|
|
10
34
|
options,
|
11
35
|
width
|
12
36
|
}) => {
|
13
|
-
const value = activeMark(editor, format);
|
37
|
+
const value = activeMark(editor, format, true) || getValue(editor, format);
|
14
38
|
const changeMarkData = (event, format) => {
|
15
39
|
event.preventDefault();
|
16
40
|
const value = event.target.value;
|
@@ -20,7 +44,7 @@ const Dropdown = ({
|
|
20
44
|
});
|
21
45
|
};
|
22
46
|
return /*#__PURE__*/_jsx(Select, {
|
23
|
-
value: value,
|
47
|
+
value: value || options?.[0]?.value,
|
24
48
|
className: "editor-dd",
|
25
49
|
onChange: e => changeMarkData(e, format),
|
26
50
|
MenuProps: {
|