@flozy/editor 9.3.7 → 9.3.9
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 +52 -16
- package/dist/Editor/CommonEditor.js +133 -23
- package/dist/Editor/DialogWrapper.js +31 -25
- package/dist/Editor/Editor.css +19 -9
- 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 +4 -4
- package/dist/Editor/Elements/Color Picker/Styles.js +3 -3
- 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 +4 -1
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +422 -0
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +4 -3
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +23 -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/index.js +3 -1
- package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +5 -2
- 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/Frames/Slider.js +16 -14
- package/dist/Editor/Elements/Embed/Image.js +18 -12
- package/dist/Editor/Elements/Embed/Video.js +10 -7
- 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/UserInputs.js +4 -2
- package/dist/Editor/Elements/Form/Workflow/index.js +15 -9
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +63 -25
- 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 +35 -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 +14 -7
- 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 +16 -5
- 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 +48 -25
- package/dist/Editor/Elements/Table/TableCell.js +10 -27
- 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 +7 -13
- package/dist/Editor/Toolbar/Mini/MiniToolbar.js +20 -15
- 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 +6 -2
- 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 +15 -7
- package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +8 -4
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +16 -9
- package/dist/Editor/Toolbar/PopupTool/TemplateCard.js +11 -5
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +126 -44
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +441 -0
- package/dist/Editor/Toolbar/PopupTool/index.js +15 -17
- package/dist/Editor/Toolbar/Toolbar.js +20 -10
- package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
- package/dist/Editor/assets/svg/CalenderIconTick.js +1 -0
- package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
- package/dist/Editor/assets/svg/ThemeIcons.js +291 -0
- package/dist/Editor/common/ColorPickerButton.js +45 -10
- package/dist/Editor/common/CustomColorPicker/index.js +125 -0
- package/dist/Editor/common/CustomColorPicker/style.js +53 -0
- package/dist/Editor/common/CustomDialog/index.js +8 -10
- package/dist/Editor/common/CustomDialog/styles.js +1 -1
- package/dist/Editor/common/CustomDialog2/index.js +94 -0
- package/dist/Editor/common/CustomDialog2/style.js +67 -0
- package/dist/Editor/common/CustomSelect.js +33 -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/Options/Upload.js +1 -1
- package/dist/Editor/common/ImageSelector/Styles.js +3 -9
- package/dist/Editor/common/ImageSelector/UploadStyles.js +9 -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/Styles.js +111 -73
- package/dist/Editor/common/MentionsPopup/index.js +8 -4
- 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/ElementSettings/styles.js +0 -1
- 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 +58 -7
- package/dist/Editor/common/RnD/Utils/index.js +48 -0
- package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +110 -0
- package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +112 -0
- package/dist/Editor/common/RnD/VirtualElement/helper.js +267 -0
- package/dist/Editor/common/RnD/VirtualElement/index.js +186 -104
- package/dist/Editor/common/RnD/VirtualElement/styles.js +95 -8
- package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
- package/dist/Editor/common/RnD/index.js +82 -10
- package/dist/Editor/common/Section/index.js +7 -4
- package/dist/Editor/common/Shorthands/elements.js +98 -10
- 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 +41 -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 +13 -23
- package/dist/Editor/helper/index.js +8 -12
- package/dist/Editor/helper/textIndeces.js +58 -0
- package/dist/Editor/helper/theme.js +200 -2
- package/dist/Editor/hooks/useAutoScroll.js +38 -0
- package/dist/Editor/hooks/useDrag.js +17 -11
- package/dist/Editor/hooks/useEditorScroll.js +10 -6
- package/dist/Editor/hooks/useEditorTheme.js +153 -0
- package/dist/Editor/hooks/useMouseMove.js +28 -13
- package/dist/Editor/hooks/useTable.js +5 -2
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +19 -15
- 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 +144 -0
- package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
- package/dist/Editor/themeSettings/buttons/index.js +285 -0
- package/dist/Editor/themeSettings/buttons/style.js +23 -0
- package/dist/Editor/themeSettings/colorTheme/index.js +297 -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 +222 -0
- package/dist/Editor/themeSettings/fonts/style.js +59 -0
- package/dist/Editor/themeSettings/icons.js +60 -0
- package/dist/Editor/themeSettings/index.js +328 -0
- package/dist/Editor/themeSettings/style.js +193 -0
- package/dist/Editor/themeSettingsAI/icons.js +96 -0
- package/dist/Editor/themeSettingsAI/index.js +355 -0
- package/dist/Editor/themeSettingsAI/saveTheme.js +215 -0
- package/dist/Editor/themeSettingsAI/style.js +250 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +171 -47
- package/dist/Editor/utils/button.js +7 -2
- package/dist/Editor/utils/chatEditor/SlateUtilityFunctions.js +23 -0
- package/dist/Editor/utils/dataView.js +5 -2
- package/dist/Editor/utils/divider.js +18 -2
- package/dist/Editor/utils/draftToSlate.js +3 -2
- package/dist/Editor/utils/embed.js +9 -4
- package/dist/Editor/utils/font.js +40 -37
- package/dist/Editor/utils/freegrid.js +2 -2
- package/dist/Editor/utils/helper.js +136 -29
- package/dist/Editor/utils/signature.js +5 -2
- package/dist/Editor/utils/table.js +53 -37
- package/package.json +2 -2
@@ -1,4 +1,6 @@
|
|
1
|
+
import { ReactEditor } from "slate-react";
|
1
2
|
import { sizeMap } from "../utils/font";
|
3
|
+
import { Editor, Node } from "slate";
|
2
4
|
export const breakpoints = {
|
3
5
|
small: 0,
|
4
6
|
mobile: 600,
|
@@ -33,7 +35,7 @@ const overrideValues = (value, ot) => {
|
|
33
35
|
return Object.keys(value).reduce((a, b) => {
|
34
36
|
return {
|
35
37
|
...a,
|
36
|
-
[b]: overrides[ot] ? overrides[ot](value[b]) : value
|
38
|
+
[b]: overrides[ot] ? overrides[ot](value[b], value) : value
|
37
39
|
};
|
38
40
|
}, {});
|
39
41
|
};
|
@@ -50,7 +52,15 @@ const overrides = {
|
|
50
52
|
overrideReSizeH: val => {
|
51
53
|
return val ? `${val?.height}px` : "auto";
|
52
54
|
},
|
53
|
-
overrideBorderRadius: val => {
|
55
|
+
overrideBorderRadius: (val, breakpointValues) => {
|
56
|
+
if (!val?.topLeft) {
|
57
|
+
Object.values(breakpointValues || {}).forEach(v => {
|
58
|
+
if (v) {
|
59
|
+
// Applying the values from breakpoints that exist to those that do not have
|
60
|
+
val = v;
|
61
|
+
}
|
62
|
+
});
|
63
|
+
}
|
54
64
|
return `${val?.topLeft}px ${val?.topRight}px ${val?.bottomLeft}px ${val?.bottomRight}px`;
|
55
65
|
}
|
56
66
|
};
|
@@ -118,6 +128,194 @@ export const getTRBLBreakPoints = (value, breakpoint) => {
|
|
118
128
|
console.log(err);
|
119
129
|
}
|
120
130
|
};
|
131
|
+
export function getElementStyle(editor, element, stylePropertyName) {
|
132
|
+
try {
|
133
|
+
const path = ReactEditor.findPath(editor, element);
|
134
|
+
if (path?.length) {
|
135
|
+
const currentEle = Node.get(editor, path);
|
136
|
+
const dom = ReactEditor.toDOMNode(editor, currentEle);
|
137
|
+
const editorBtn = dom?.querySelector(".button.theme-element");
|
138
|
+
return getElementProperty(editorBtn, stylePropertyName);
|
139
|
+
}
|
140
|
+
} catch (err) {
|
141
|
+
// console.log(err);
|
142
|
+
}
|
143
|
+
}
|
144
|
+
export function getTextSizeVal(editor) {
|
145
|
+
try {
|
146
|
+
const currentNode = Node.get(editor, editor.selection.anchor.path);
|
147
|
+
const currentElement = ReactEditor.toDOMNode(editor, currentNode);
|
148
|
+
if (currentElement) {
|
149
|
+
const element = currentElement.querySelector('span[data-slate-string="true"]');
|
150
|
+
return getElementProperty(element, "font-size");
|
151
|
+
}
|
152
|
+
} catch (err) {
|
153
|
+
// console.log(err);
|
154
|
+
}
|
155
|
+
}
|
156
|
+
export function getVariableValue(val) {
|
157
|
+
const bodyElement = document.body;
|
158
|
+
const computedStyle = getComputedStyle(bodyElement);
|
159
|
+
const [, variableName] = val?.match(/var\((--[^)]+)\)/) || [];
|
160
|
+
const varValue = computedStyle.getPropertyValue(variableName).trim();
|
161
|
+
return varValue;
|
162
|
+
}
|
163
|
+
const MAP_PROPERTY_KEYS = {
|
164
|
+
fontFamily: "font-family",
|
165
|
+
fontSize: "font-size",
|
166
|
+
textSize: "font-size",
|
167
|
+
fontWeight: "font-weight"
|
168
|
+
};
|
169
|
+
export function getElementProperty(element, styleProperty) {
|
170
|
+
if (!element) {
|
171
|
+
return "";
|
172
|
+
}
|
173
|
+
const computedStyle = window.getComputedStyle(element);
|
174
|
+
const property = MAP_PROPERTY_KEYS[styleProperty] || styleProperty;
|
175
|
+
let style = computedStyle.getPropertyValue(property);
|
176
|
+
if (property === "font-family") {
|
177
|
+
style = style.replace(/"/g, ""); // remove double quotes if exists e.g: '"Courier New"'
|
178
|
+
}
|
179
|
+
|
180
|
+
return style || "";
|
181
|
+
}
|
182
|
+
export const textThemeFields = ["fontFamily", "fontSize", "color", "bold", "italic"
|
183
|
+
// "underline",
|
184
|
+
// "strikethrough",
|
185
|
+
];
|
186
|
+
|
187
|
+
const themeElements = ["headingOne", "headingTwo", "headingThree", "headingFour", "headingFive", "headingSix", "paragraphOne", "paragraphTwo", "paragraphThree"];
|
188
|
+
export const isTextCustomized = editor => {
|
189
|
+
try {
|
190
|
+
if (editor.selection) {
|
191
|
+
const currentElement = Node.parent(editor, editor?.selection?.anchor?.path);
|
192
|
+
if (!currentElement) {
|
193
|
+
return false;
|
194
|
+
}
|
195
|
+
const {
|
196
|
+
children,
|
197
|
+
type
|
198
|
+
} = currentElement;
|
199
|
+
if (!themeElements.includes(type)) {
|
200
|
+
return false;
|
201
|
+
}
|
202
|
+
if (!children?.length) {
|
203
|
+
return true;
|
204
|
+
}
|
205
|
+
const customized = textThemeFields.some(field => {
|
206
|
+
const element = children.find(child => child.text.trim() !== "") || {};
|
207
|
+
const value = element[field];
|
208
|
+
if (field === "fontSize") {
|
209
|
+
return Object.keys(value || {}).length;
|
210
|
+
} else {
|
211
|
+
return value;
|
212
|
+
}
|
213
|
+
});
|
214
|
+
return customized;
|
215
|
+
} else {
|
216
|
+
return null;
|
217
|
+
}
|
218
|
+
} catch (err) {
|
219
|
+
return null;
|
220
|
+
}
|
221
|
+
};
|
222
|
+
const addToTheme = (field, value, element) => {
|
223
|
+
switch (field) {
|
224
|
+
case "fontFamily":
|
225
|
+
return {
|
226
|
+
fontFamily: value
|
227
|
+
};
|
228
|
+
case "fontSize":
|
229
|
+
return {
|
230
|
+
fontSize: value?.lg
|
231
|
+
};
|
232
|
+
case "color":
|
233
|
+
return {
|
234
|
+
color: value
|
235
|
+
};
|
236
|
+
case "bold":
|
237
|
+
return {
|
238
|
+
fontWeight: "bold"
|
239
|
+
};
|
240
|
+
case "italic":
|
241
|
+
return {
|
242
|
+
fontStyle: "italic"
|
243
|
+
};
|
244
|
+
// case "underline":
|
245
|
+
// case "strikethrough":
|
246
|
+
// let textDecoration = "";
|
247
|
+
|
248
|
+
// if (element.underline) {
|
249
|
+
// textDecoration = "underline";
|
250
|
+
// }
|
251
|
+
|
252
|
+
// if (element.strikethrough) {
|
253
|
+
// textDecoration += " strikethrough";
|
254
|
+
// }
|
255
|
+
|
256
|
+
// return { textDecoration };
|
257
|
+
default:
|
258
|
+
return {};
|
259
|
+
}
|
260
|
+
};
|
261
|
+
const MAP_TEXT_THEME_FIELD = {
|
262
|
+
headingOne: "h1",
|
263
|
+
headingTwo: "h2",
|
264
|
+
headingThree: "h3",
|
265
|
+
headingFour: "h4",
|
266
|
+
headingFive: "h5",
|
267
|
+
headingSix: "h6",
|
268
|
+
paragraphOne: "para1",
|
269
|
+
paragraphTwo: "para2",
|
270
|
+
paragraphThree: "para3"
|
271
|
+
};
|
272
|
+
export const saveToTheme = editor => {
|
273
|
+
try {
|
274
|
+
if (editor.selection) {
|
275
|
+
const currentElement = Node.parent(editor, editor?.selection?.anchor?.path);
|
276
|
+
if (!currentElement) {
|
277
|
+
return false;
|
278
|
+
}
|
279
|
+
const {
|
280
|
+
children
|
281
|
+
} = currentElement;
|
282
|
+
if (!children?.length) {
|
283
|
+
return true;
|
284
|
+
}
|
285
|
+
let theme = {};
|
286
|
+
textThemeFields.forEach(field => {
|
287
|
+
const element = children.find(child => child.text.trim() !== "") || {};
|
288
|
+
const value = element[field];
|
289
|
+
let style = {};
|
290
|
+
let isValueExist = false;
|
291
|
+
if (value) {
|
292
|
+
isValueExist = true;
|
293
|
+
if (field === "fontSize") {
|
294
|
+
isValueExist = !!Object.keys(value).length;
|
295
|
+
}
|
296
|
+
}
|
297
|
+
if (isValueExist) {
|
298
|
+
style = addToTheme(field, value, element);
|
299
|
+
}
|
300
|
+
theme = {
|
301
|
+
...theme,
|
302
|
+
...style
|
303
|
+
};
|
304
|
+
});
|
305
|
+
textThemeFields.forEach(field => {
|
306
|
+
Editor.removeMark(editor, field);
|
307
|
+
});
|
308
|
+
return {
|
309
|
+
field: MAP_TEXT_THEME_FIELD[currentElement?.type],
|
310
|
+
theme
|
311
|
+
};
|
312
|
+
}
|
313
|
+
} catch (err) {
|
314
|
+
return;
|
315
|
+
}
|
316
|
+
};
|
317
|
+
export const HEADING_THEME_FIELDS = ["h1", "h2", "h3", "h4", "h5", "h6"];
|
318
|
+
export const PARAGRAPH_THEME_FIELDS = ["para1", "para2", "para3"];
|
121
319
|
export const getBRValue = (props, rbr = "lg") => {
|
122
320
|
const {
|
123
321
|
value,
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import { useEffect, useRef } from "react";
|
2
|
+
function useAutoScroll(speed = 10, scrollElementId = "slate-wrapper-scroll-container") {
|
3
|
+
const scrollInterval = useRef(null);
|
4
|
+
function getScrollElement() {
|
5
|
+
return document.getElementById(scrollElementId) || window;
|
6
|
+
}
|
7
|
+
function startAutoScroll(direction) {
|
8
|
+
if (scrollInterval.current) return; // Prevent multiple intervals
|
9
|
+
|
10
|
+
const scrollContainer = getScrollElement();
|
11
|
+
scrollInterval.current = setInterval(() => {
|
12
|
+
scrollContainer.style.scrollBehavior = "auto";
|
13
|
+
if (direction === "up") {
|
14
|
+
scrollContainer.scrollBy(0, -speed);
|
15
|
+
} else if (direction === "down") {
|
16
|
+
scrollContainer.scrollBy(0, speed);
|
17
|
+
scrollContainer.style.scrollBehavior = "smooth";
|
18
|
+
}
|
19
|
+
}, 16); // Approx 60fps
|
20
|
+
}
|
21
|
+
|
22
|
+
function stopAutoScroll() {
|
23
|
+
if (scrollInterval.current) {
|
24
|
+
clearInterval(scrollInterval.current);
|
25
|
+
scrollInterval.current = null;
|
26
|
+
const scrollContainer = getScrollElement();
|
27
|
+
scrollContainer.style.scrollBehavior = "smooth";
|
28
|
+
}
|
29
|
+
}
|
30
|
+
useEffect(() => {
|
31
|
+
return () => stopAutoScroll(); // Cleanup on unmount
|
32
|
+
}, []);
|
33
|
+
return {
|
34
|
+
startAutoScroll,
|
35
|
+
stopAutoScroll
|
36
|
+
};
|
37
|
+
}
|
38
|
+
export default useAutoScroll;
|
@@ -1,20 +1,26 @@
|
|
1
|
-
import {
|
1
|
+
import { useEffect, useState } from "react";
|
2
2
|
const useDrag = () => {
|
3
3
|
const [event, setEvent] = useState("");
|
4
4
|
useEffect(() => {
|
5
|
-
|
6
|
-
setEvent("start");
|
7
|
-
};
|
8
|
-
const onMouseUp = () => {
|
9
|
-
setEvent("end");
|
10
|
-
};
|
11
|
-
document.addEventListener("pointerdown", onMouseDown);
|
12
|
-
document.addEventListener("pointerup", onMouseUp);
|
5
|
+
addListener();
|
13
6
|
return () => {
|
14
|
-
|
15
|
-
document.removeEventListener("pointerup", onMouseUp);
|
7
|
+
removeListener();
|
16
8
|
};
|
17
9
|
}, []);
|
10
|
+
const onMouseDown = () => {
|
11
|
+
setEvent("start");
|
12
|
+
};
|
13
|
+
const onMouseUp = () => {
|
14
|
+
setEvent("end");
|
15
|
+
};
|
16
|
+
const addListener = () => {
|
17
|
+
document.addEventListener("pointerdown", onMouseDown);
|
18
|
+
document.addEventListener("pointerup", onMouseUp);
|
19
|
+
};
|
20
|
+
const removeListener = () => {
|
21
|
+
document.removeEventListener("pointerdown", onMouseDown);
|
22
|
+
document.removeEventListener("pointerup", onMouseUp);
|
23
|
+
};
|
18
24
|
return [event];
|
19
25
|
};
|
20
26
|
export default useDrag;
|
@@ -3,18 +3,22 @@ function useEditorScroll(editorWrapper = {
|
|
3
3
|
current: null
|
4
4
|
}, callback) {
|
5
5
|
useEffect(() => {
|
6
|
-
if (!editorWrapper?.current) return;
|
7
6
|
const handleScroll = () => {
|
8
|
-
|
9
|
-
|
7
|
+
if (editorWrapper.current) {
|
8
|
+
callback("scroll");
|
9
|
+
}
|
10
10
|
};
|
11
11
|
const currentEditorWrapper = editorWrapper.current;
|
12
|
-
currentEditorWrapper
|
12
|
+
if (currentEditorWrapper) {
|
13
|
+
currentEditorWrapper.addEventListener("scroll", handleScroll);
|
14
|
+
}
|
13
15
|
|
14
16
|
// Cleanup the event listener on component unmount
|
15
17
|
return () => {
|
16
|
-
currentEditorWrapper
|
18
|
+
if (currentEditorWrapper) {
|
19
|
+
currentEditorWrapper.removeEventListener("scroll", handleScroll);
|
20
|
+
}
|
17
21
|
};
|
18
|
-
}, [editorWrapper, callback]);
|
22
|
+
}, [editorWrapper.current, callback]);
|
19
23
|
}
|
20
24
|
export default useEditorScroll;
|
@@ -0,0 +1,153 @@
|
|
1
|
+
import { useSlate } from "slate-react";
|
2
|
+
import { defaultTheme } from "../theme";
|
3
|
+
import { getPageSettings, updatePageSettings } from "../utils/pageSettings";
|
4
|
+
import { HEADING_THEME_FIELDS, PARAGRAPH_THEME_FIELDS } from "../helper/theme";
|
5
|
+
import { useEditorContext } from "./useMouseMove";
|
6
|
+
const MAP_FIELDS = {
|
7
|
+
HEADING: HEADING_THEME_FIELDS,
|
8
|
+
PARAGRAPH: PARAGRAPH_THEME_FIELDS
|
9
|
+
};
|
10
|
+
const MAP_FONT_FIELD_KEYS = {
|
11
|
+
HEADING: "headingFontFamily",
|
12
|
+
PARAGRAPH: "paragraphFontFamily"
|
13
|
+
};
|
14
|
+
function getUpdatePayload(prevTheme = {}, update, actionData) {
|
15
|
+
const {
|
16
|
+
action,
|
17
|
+
fieldName
|
18
|
+
} = actionData || {};
|
19
|
+
const {
|
20
|
+
theme: prev
|
21
|
+
} = prevTheme;
|
22
|
+
let theme = {};
|
23
|
+
let themeProps = {};
|
24
|
+
switch (action) {
|
25
|
+
case "THEME_CHANGE":
|
26
|
+
theme = update;
|
27
|
+
break;
|
28
|
+
case "CSS_VAR_CHANGE":
|
29
|
+
const prevCssVars = prev?.cssVars || {};
|
30
|
+
const prevValue = prevCssVars[fieldName] || {};
|
31
|
+
themeProps = {
|
32
|
+
...(prev || {}),
|
33
|
+
cssVars: {
|
34
|
+
...prevCssVars,
|
35
|
+
[fieldName]: {
|
36
|
+
...prevValue,
|
37
|
+
...update
|
38
|
+
}
|
39
|
+
}
|
40
|
+
};
|
41
|
+
theme = {
|
42
|
+
...prevTheme,
|
43
|
+
theme: themeProps
|
44
|
+
};
|
45
|
+
break;
|
46
|
+
case "ELEMENT_PROPS_CHANGE":
|
47
|
+
const prevEleProps = prev?.elementProps || {};
|
48
|
+
const prevEleValue = prevEleProps[fieldName] || {};
|
49
|
+
themeProps = {
|
50
|
+
...(prev || {}),
|
51
|
+
elementProps: {
|
52
|
+
...prevEleProps,
|
53
|
+
[fieldName]: {
|
54
|
+
...prevEleValue,
|
55
|
+
...update
|
56
|
+
}
|
57
|
+
}
|
58
|
+
};
|
59
|
+
theme = {
|
60
|
+
...prevTheme,
|
61
|
+
theme: themeProps
|
62
|
+
};
|
63
|
+
break;
|
64
|
+
case "OTHER_PROPS_CHANGE":
|
65
|
+
themeProps = {
|
66
|
+
...(prev || {}),
|
67
|
+
otherProps: {
|
68
|
+
...(prev.otherProps || {}),
|
69
|
+
...update
|
70
|
+
}
|
71
|
+
};
|
72
|
+
theme = {
|
73
|
+
...prevTheme,
|
74
|
+
theme: themeProps
|
75
|
+
};
|
76
|
+
break;
|
77
|
+
case "FONT_CHANGE":
|
78
|
+
const {
|
79
|
+
elementProps = {},
|
80
|
+
otherProps = {}
|
81
|
+
} = prev;
|
82
|
+
const {
|
83
|
+
fieldType
|
84
|
+
} = actionData || {};
|
85
|
+
const fields = MAP_FIELDS[fieldType];
|
86
|
+
const fontFieldsUpdate = {};
|
87
|
+
fields?.forEach(field => {
|
88
|
+
const prevFieldData = elementProps[field];
|
89
|
+
fontFieldsUpdate[field] = {
|
90
|
+
...prevFieldData,
|
91
|
+
...update
|
92
|
+
};
|
93
|
+
});
|
94
|
+
const FONT_KEY_FOR_FIELD = MAP_FONT_FIELD_KEYS[fieldType];
|
95
|
+
themeProps = {
|
96
|
+
...(prev || {}),
|
97
|
+
elementProps: {
|
98
|
+
...elementProps,
|
99
|
+
...fontFieldsUpdate
|
100
|
+
},
|
101
|
+
otherProps: {
|
102
|
+
...otherProps,
|
103
|
+
[FONT_KEY_FOR_FIELD]: update?.fontFamily
|
104
|
+
}
|
105
|
+
};
|
106
|
+
theme = {
|
107
|
+
...prevTheme,
|
108
|
+
theme: themeProps
|
109
|
+
};
|
110
|
+
break;
|
111
|
+
default:
|
112
|
+
theme = {
|
113
|
+
...prevTheme,
|
114
|
+
...(update || {})
|
115
|
+
};
|
116
|
+
break;
|
117
|
+
}
|
118
|
+
return theme;
|
119
|
+
}
|
120
|
+
const updateTheme = (editor, pageSt, update, actionData, triggerRender) => {
|
121
|
+
const {
|
122
|
+
pageProps
|
123
|
+
} = pageSt || {};
|
124
|
+
const {
|
125
|
+
theme
|
126
|
+
} = pageProps || {};
|
127
|
+
const updatedTheme = getUpdatePayload(theme, update, actionData);
|
128
|
+
updatePageSettings(editor, {
|
129
|
+
...(pageProps || {}),
|
130
|
+
theme: updatedTheme
|
131
|
+
});
|
132
|
+
triggerRender();
|
133
|
+
};
|
134
|
+
export const useEditorTheme = () => {
|
135
|
+
const editor = useSlate();
|
136
|
+
const {
|
137
|
+
triggerRender
|
138
|
+
} = useEditorContext();
|
139
|
+
const {
|
140
|
+
element: pageSt
|
141
|
+
} = getPageSettings(editor) || {};
|
142
|
+
const {
|
143
|
+
pageProps
|
144
|
+
} = pageSt || {};
|
145
|
+
const {
|
146
|
+
theme
|
147
|
+
} = pageProps || {};
|
148
|
+
return {
|
149
|
+
selectedTheme: theme?.theme || defaultTheme?.theme,
|
150
|
+
updateTheme: (update, actionData) => updateTheme(editor, pageSt, update, actionData, triggerRender),
|
151
|
+
theme
|
152
|
+
};
|
153
|
+
};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { useEffect, useState, createContext, useContext, useMemo
|
1
|
+
import { useEffect, useState, createContext, useContext, useMemo } from "react";
|
2
2
|
import { getSelectedText } from "../utils/helper";
|
3
3
|
import { debounce } from "../helper";
|
4
4
|
import { defaultFontFamilies } from "../common/FontLoader/FontList";
|
@@ -21,7 +21,10 @@ export const useEditorSelection = editor => {
|
|
21
21
|
export const EditorProvider = ({
|
22
22
|
editor,
|
23
23
|
theme,
|
24
|
-
children
|
24
|
+
children,
|
25
|
+
openTheme = false,
|
26
|
+
setOpenTheme = () => {},
|
27
|
+
triggerRender
|
25
28
|
}) => {
|
26
29
|
const [previous, setPrevious] = useState("");
|
27
30
|
const [drop, setDrop] = useState(0);
|
@@ -37,6 +40,7 @@ export const EditorProvider = ({
|
|
37
40
|
});
|
38
41
|
const [fontFamilies, setFontFamilies] = useState(defaultFontFamilies);
|
39
42
|
const [activeBreakPoint, setActiveBreakPoint] = useState("");
|
43
|
+
const [autoAlign, setAutoAlign] = useState(false);
|
40
44
|
useEffect(() => {
|
41
45
|
window.updateSelectedItem = d => {
|
42
46
|
setSelectedElement(d);
|
@@ -100,9 +104,14 @@ export const EditorProvider = ({
|
|
100
104
|
updateDragging,
|
101
105
|
fontFamilies,
|
102
106
|
setFontFamilies,
|
107
|
+
openTheme,
|
108
|
+
setOpenTheme,
|
103
109
|
activeBreakPoint,
|
104
|
-
setActiveBreakPoint
|
105
|
-
|
110
|
+
setActiveBreakPoint,
|
111
|
+
triggerRender,
|
112
|
+
autoAlign,
|
113
|
+
setAutoAlign
|
114
|
+
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop, openTheme, activeBreakPoint, autoAlign]);
|
106
115
|
return /*#__PURE__*/_jsx(EditorContext.Provider, {
|
107
116
|
value: otherValues,
|
108
117
|
children: children
|
@@ -115,7 +124,13 @@ const useMouseMove = dragging => {
|
|
115
124
|
const [event, setEvent] = useState({
|
116
125
|
target: null
|
117
126
|
});
|
118
|
-
|
127
|
+
useEffect(() => {
|
128
|
+
addListener();
|
129
|
+
return () => {
|
130
|
+
removeListener();
|
131
|
+
};
|
132
|
+
}, []);
|
133
|
+
const onMouseMove = e => {
|
119
134
|
if (!dragging?.id) {
|
120
135
|
const dpath = e?.target?.closest(".dpath");
|
121
136
|
if (dpath) {
|
@@ -124,14 +139,14 @@ const useMouseMove = dragging => {
|
|
124
139
|
});
|
125
140
|
}
|
126
141
|
}
|
127
|
-
}
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
}
|
142
|
+
};
|
143
|
+
const debounceMouseMove = debounce(onMouseMove, 100);
|
144
|
+
const addListener = () => {
|
145
|
+
document.addEventListener("mousemove", debounceMouseMove);
|
146
|
+
};
|
147
|
+
const removeListener = () => {
|
148
|
+
document.removeEventListener("mousemove", debounceMouseMove);
|
149
|
+
};
|
135
150
|
return [event];
|
136
151
|
};
|
137
152
|
export default useMouseMove;
|
@@ -184,7 +184,7 @@ export const TableProvider = ({
|
|
184
184
|
window.removeEventListener("copy", handleCopy);
|
185
185
|
window.removeEventListener("cut", handleCut);
|
186
186
|
};
|
187
|
-
}, [tableSelection, editor]);
|
187
|
+
}, [tableSelection, editor, tableSelection]);
|
188
188
|
|
189
189
|
// useEffect(() => {
|
190
190
|
// selectFirstCell(tablePath, editor, updateTableSelection);
|
@@ -196,7 +196,10 @@ export const TableProvider = ({
|
|
196
196
|
sensors: sensors,
|
197
197
|
onDragEnd: data => handleDragEnd(data, editor, resetAll),
|
198
198
|
children: [/*#__PURE__*/_jsx(ClickAwayListener, {
|
199
|
-
onClickAway: () =>
|
199
|
+
onClickAway: () => {
|
200
|
+
setTableSelection(getDefaultTableSelection());
|
201
|
+
setHoverPath(null);
|
202
|
+
},
|
200
203
|
children: /*#__PURE__*/_jsx("div", {
|
201
204
|
children: children
|
202
205
|
})
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Transforms, Path, Node } from "slate";
|
2
|
-
const AvoidCopying = ["headingOne", "headingTwo", "headingThree", "blockquote"];
|
2
|
+
const AvoidCopying = ["headingOne", "headingTwo", "headingThree", "headingFour", "headingFive", "headingSix", "paragraphOne", "paragraphTwo", "paragraphThree", "blockquote"];
|
3
3
|
const BlockTypes = ["grid"];
|
4
4
|
const withEmbeds = editor => {
|
5
5
|
const {
|
@@ -30,6 +30,8 @@ const parseCopiedHTML = html => {
|
|
30
30
|
|
31
31
|
// claude.ai, copy list inbetween, some li tags are not wrapped with ul or ol
|
32
32
|
parsed.querySelectorAll("li").forEach(li => {
|
33
|
+
li.innerHTML = li.innerHTML.replace(/^\n+|\n+$/g, ""); // Removes leading and trailing newlines
|
34
|
+
|
33
35
|
// Check if the parent of <li> is not a <ul> or <ol>
|
34
36
|
if (!li.parentElement || li.parentElement.tagName !== "UL" && li.parentElement.tagName !== "OL") {
|
35
37
|
// Create a <ul> element
|
@@ -55,7 +57,7 @@ const loopChildren = (children = [], defaultInsert) => {
|
|
55
57
|
}
|
56
58
|
return defaultInsert;
|
57
59
|
};
|
58
|
-
const getCurrentElement = editor => {
|
60
|
+
export const getCurrentElement = editor => {
|
59
61
|
try {
|
60
62
|
if (editor.selection) {
|
61
63
|
return Node.parent(editor, editor?.selection?.anchor?.path);
|
@@ -149,7 +151,6 @@ const getFocusedNode = (editor, nodeType = "") => {
|
|
149
151
|
console.log(err);
|
150
152
|
}
|
151
153
|
};
|
152
|
-
const voidTypes = ["image", "page-settings"];
|
153
154
|
const withHtml = editor => {
|
154
155
|
const {
|
155
156
|
insertData,
|
@@ -160,7 +161,7 @@ const withHtml = editor => {
|
|
160
161
|
return element.type === "link" ? true : isInline(element);
|
161
162
|
};
|
162
163
|
editor.isVoid = element => {
|
163
|
-
return
|
164
|
+
return element.type === "image" ? true : isVoid(element);
|
164
165
|
};
|
165
166
|
editor.insertData = data => {
|
166
167
|
const slateHTML = data?.getData("application/x-slate-fragment");
|
@@ -237,9 +238,9 @@ const withHtml = editor => {
|
|
237
238
|
const isNonText = rootElement ? rootElement?.querySelector(NON_TEXT_TAGS.toString()) : false;
|
238
239
|
const isGoogleSheet = parsed.body.querySelector("google-sheets-html-origin");
|
239
240
|
if (isGoogleSheet) {
|
240
|
-
if (editor.isChatEditor) {
|
241
|
-
|
242
|
-
}
|
241
|
+
// if (editor.isChatEditor) {
|
242
|
+
// return;
|
243
|
+
// }
|
243
244
|
const table = rootElement.querySelector("table");
|
244
245
|
const colGrp = table.querySelector("colgroup");
|
245
246
|
if (colGrp) {
|
@@ -261,15 +262,18 @@ const withHtml = editor => {
|
|
261
262
|
return;
|
262
263
|
}
|
263
264
|
const formattedFragment = normalizeFragment ? normalizeFragment(fragment) : fragment;
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
}
|
270
|
-
|
271
|
-
|
272
|
-
|
265
|
+
|
266
|
+
// let is_img_table = false;
|
267
|
+
// formattedFragment.map((f) => {
|
268
|
+
// if (f.type === "image" || f?.type?.includes("table")) {
|
269
|
+
// is_img_table = true;
|
270
|
+
// }
|
271
|
+
// });
|
272
|
+
|
273
|
+
// if (editor.isChatEditor && is_img_table) {
|
274
|
+
// return;
|
275
|
+
// }
|
276
|
+
|
273
277
|
if (isTitlePath && isNonText) {
|
274
278
|
insertAtNextNode(editor, formattedFragment);
|
275
279
|
return;
|
@@ -27,7 +27,8 @@ const ORDERS_LAYOUT_VALIDATIONS = {
|
|
27
27
|
};
|
28
28
|
const withLayout = editor => {
|
29
29
|
const {
|
30
|
-
normalizeNode
|
30
|
+
normalizeNode,
|
31
|
+
translation
|
31
32
|
} = editor;
|
32
33
|
editor.normalizeNode = ([node, path]) => {
|
33
34
|
if (path.length === 0) {
|
@@ -39,7 +40,7 @@ const withLayout = editor => {
|
|
39
40
|
const title = {
|
40
41
|
type: "title",
|
41
42
|
children: [{
|
42
|
-
text: "Untitled"
|
43
|
+
text: translation ? translation("Untitled") : "Untitled"
|
43
44
|
}]
|
44
45
|
};
|
45
46
|
Transforms.insertNodes(editor, title, {
|