@flozy/editor 9.4.9 → 9.5.1
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/CommonEditor.js +4 -3
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +5 -4
- package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
- package/dist/Editor/Elements/Search/SearchButton.js +5 -2
- package/dist/Editor/common/ColorPickerButton.js +1 -11
- package/dist/Editor/common/CustomColorPicker/index.js +2 -1
- package/dist/Editor/common/RnD/ContextMenu/CMenus.js +3 -6
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +2 -4
- package/dist/Editor/common/RnD/VirtualElement/helper.js +4 -1
- package/dist/Editor/common/RnD/VirtualElement/styles.js +24 -0
- package/dist/Editor/common/RnD/index.js +4 -4
- package/dist/Editor/common/Section/index.js +21 -5
- package/dist/Editor/common/Shorthands/elements.js +5 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +8 -4
- package/dist/Editor/commonStyle.js +10 -0
- package/dist/Editor/hooks/useMouseMove.js +2 -5
- package/dist/Editor/hooks/useThemeValues.js +31 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +3 -23
- package/package.json +1 -1
@@ -352,7 +352,8 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
352
352
|
...mentions,
|
353
353
|
CHARACTERS,
|
354
354
|
hideTools: updatedHideTools || [],
|
355
|
-
translation: translation || translationFn
|
355
|
+
translation: translation || translationFn,
|
356
|
+
editor
|
356
357
|
}) : [];
|
357
358
|
const handleEditorChange = newValue => {
|
358
359
|
if (JSON.stringify(newValue) !== JSON.stringify(debouncedValue?.current)) {
|
@@ -699,8 +700,8 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
699
700
|
chars: chars,
|
700
701
|
type: type,
|
701
702
|
theme: theme,
|
702
|
-
|
703
|
-
|
703
|
+
customProps: customProps,
|
704
|
+
otherProps: customProps
|
704
705
|
}) : null, /*#__PURE__*/_jsx(RnDCopy, {
|
705
706
|
readOnly: readOnly
|
706
707
|
})]
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import React, { useEffect, useRef } 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";
|
@@ -63,10 +63,9 @@ const FreeGrid = props => {
|
|
63
63
|
height
|
64
64
|
} = breakpointValues(element.type, breakpoint, element);
|
65
65
|
const {
|
66
|
-
setSelectedElement
|
67
|
-
setAutoAlign,
|
68
|
-
autoAlign
|
66
|
+
setSelectedElement
|
69
67
|
} = useEditorContext();
|
68
|
+
const [autoAlign, setAutoAlign] = useState(false);
|
70
69
|
const count = useRef(2);
|
71
70
|
const childrenCountRef = useRef(element?.children?.length);
|
72
71
|
const onChange = data => {
|
@@ -563,6 +562,8 @@ const FreeGrid = props => {
|
|
563
562
|
translation: translation,
|
564
563
|
customProps: customProps,
|
565
564
|
sectionElement: element,
|
565
|
+
autoAlign: autoAlign,
|
566
|
+
setAutoAlign: setAutoAlign,
|
566
567
|
children: /*#__PURE__*/_jsxs(Box, {
|
567
568
|
...attributes,
|
568
569
|
id: sectionName,
|
@@ -25,6 +25,7 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
|
|
25
25
|
const [target, setTarget] = useState(selectionTarget);
|
26
26
|
const open = Boolean(anchorEl);
|
27
27
|
const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
|
28
|
+
const currentId = otherProps?.tagName === 'Brains' ? otherProps?.page_id : 0;
|
28
29
|
const [mapData, setMapData] = useState([]);
|
29
30
|
const [skip, setSkip] = useState(0);
|
30
31
|
const [search, setSearch] = useState("");
|
@@ -65,7 +66,8 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
|
|
65
66
|
getDocs({
|
66
67
|
debouncedSearch,
|
67
68
|
skip,
|
68
|
-
limit
|
69
|
+
limit,
|
70
|
+
current_doc_id: currentId
|
69
71
|
});
|
70
72
|
}, [skip, debouncedSearch]);
|
71
73
|
const getDocs = async () => {
|
@@ -75,7 +77,8 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
|
|
75
77
|
const result = await otherProps?.services("getDocs", {
|
76
78
|
skip,
|
77
79
|
limit,
|
78
|
-
search
|
80
|
+
search,
|
81
|
+
current_doc_id: currentId
|
79
82
|
});
|
80
83
|
setMapData(prev => skip === 0 ? result.data : [...prev, ...result.data]);
|
81
84
|
}
|
@@ -39,9 +39,6 @@ const ColorPickerToolComponent = ({
|
|
39
39
|
position: "relative"
|
40
40
|
},
|
41
41
|
children: [/*#__PURE__*/_jsx("div", {
|
42
|
-
style: {
|
43
|
-
marginBottom: "50px"
|
44
|
-
},
|
45
42
|
children: /*#__PURE__*/_jsx(CustomColorPicker, {
|
46
43
|
gradient: hideGradient ? false : true,
|
47
44
|
color: color,
|
@@ -53,14 +50,7 @@ const ColorPickerToolComponent = ({
|
|
53
50
|
disableEditTheme: disableEditTheme
|
54
51
|
})
|
55
52
|
}), /*#__PURE__*/_jsxs("div", {
|
56
|
-
|
57
|
-
display: "flex",
|
58
|
-
justifyContent: "end",
|
59
|
-
margin: "8px",
|
60
|
-
position: "absolute",
|
61
|
-
bottom: 0,
|
62
|
-
right: 0
|
63
|
-
},
|
53
|
+
className: "colorPickerActionBtns",
|
64
54
|
children: [/*#__PURE__*/_jsx(Button, {
|
65
55
|
onClick: handleClose,
|
66
56
|
className: "secondaryBtn",
|
@@ -4,6 +4,7 @@ import customColorPickerStyles from "./style";
|
|
4
4
|
import { colors } from "../../Elements/Color Picker/defaultColors";
|
5
5
|
import { useMemo, useState } from "react";
|
6
6
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
7
|
+
import { getVariableValue } from "../../helper/theme";
|
7
8
|
import { jsx as _jsx } from "react/jsx-runtime";
|
8
9
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
9
10
|
const getColors = (colors, colorTab, key) => {
|
@@ -67,7 +68,7 @@ function CustomColorPicker(props) {
|
|
67
68
|
sx: classes.customColorPickerContainer,
|
68
69
|
children: [/*#__PURE__*/_jsx(ColorPickerTool, {
|
69
70
|
gradient: gradient,
|
70
|
-
value: color?.startsWith("var") ?
|
71
|
+
value: color?.startsWith("var") ? getVariableValue(color) : color,
|
71
72
|
onChange: onChange,
|
72
73
|
defaultColors: [],
|
73
74
|
popupWidth: "300",
|
@@ -69,7 +69,7 @@ const CMenus = {
|
|
69
69
|
label: "Cut",
|
70
70
|
render: translation => {
|
71
71
|
return /*#__PURE__*/_jsxs(_Fragment, {
|
72
|
-
children: [translation("Cut"), " ", /*#__PURE__*/_jsxs("span", {
|
72
|
+
children: [translation("Cut Section"), " ", /*#__PURE__*/_jsxs("span", {
|
73
73
|
className: "shortcut-help-info",
|
74
74
|
children: [/*#__PURE__*/_jsx(CMDIcon, {}), " X"]
|
75
75
|
})]
|
@@ -80,7 +80,7 @@ const CMenus = {
|
|
80
80
|
label: "Copy",
|
81
81
|
render: translation => {
|
82
82
|
return /*#__PURE__*/_jsxs(_Fragment, {
|
83
|
-
children: [translation("Copy"), " ", /*#__PURE__*/_jsxs("span", {
|
83
|
+
children: [translation("Copy Section"), " ", /*#__PURE__*/_jsxs("span", {
|
84
84
|
className: "shortcut-help-info",
|
85
85
|
children: [/*#__PURE__*/_jsx(CMDIcon, {}), " C"]
|
86
86
|
})]
|
@@ -91,15 +91,12 @@ const CMenus = {
|
|
91
91
|
label: "Paste",
|
92
92
|
render: translation => {
|
93
93
|
return /*#__PURE__*/_jsxs(_Fragment, {
|
94
|
-
children: [translation("Paste"), " ", /*#__PURE__*/_jsxs("span", {
|
94
|
+
children: [translation("Paste Section"), " ", /*#__PURE__*/_jsxs("span", {
|
95
95
|
className: "shortcut-help-info",
|
96
96
|
children: [/*#__PURE__*/_jsx(CMDIcon, {}), " V"]
|
97
97
|
})]
|
98
98
|
});
|
99
99
|
}
|
100
|
-
}, {
|
101
|
-
name: "delete",
|
102
|
-
label: "Delete"
|
103
100
|
}],
|
104
101
|
"parent-container": [{
|
105
102
|
name: "cut",
|
@@ -70,7 +70,7 @@ const handleMoveNode = (editor, path, newPath, {
|
|
70
70
|
export const reRenderChildNodes = (editor, path) => {
|
71
71
|
try {
|
72
72
|
const sectionNode = Node.get(editor, path);
|
73
|
-
|
73
|
+
|
74
74
|
// parent node
|
75
75
|
Transforms.setNodes(editor, {
|
76
76
|
updated_at: new Date().getTime()
|
@@ -103,9 +103,7 @@ function isContainerElement(editor, moveTopath, props, appenBp) {
|
|
103
103
|
// get parent node
|
104
104
|
parentNode = Node.get(editor, Path.parent(dragItemPath));
|
105
105
|
}
|
106
|
-
console.log("moveTopath", moveTopath, path, parentPath, dragOver);
|
107
106
|
const moveToNode = Node.get(editor, moveTopath);
|
108
|
-
console.log("parentNode, moveToNode", parentNode, moveToNode);
|
109
107
|
const leftOfMoveToNode = moveToNode[`left${appenBp}`];
|
110
108
|
if (moveToNode.type === "freegridBox") {
|
111
109
|
if (parentNode.type === "freegridBox") {
|
@@ -216,7 +214,7 @@ export function onDropItem(props, parentClass) {
|
|
216
214
|
|
217
215
|
// const boxNode = Node.get(editor, moveTo);
|
218
216
|
|
219
|
-
if (
|
217
|
+
if (moveTo?.length === 2 && autoAlign) {
|
220
218
|
// auto align in mobile
|
221
219
|
Transforms.setNodes(editor, {
|
222
220
|
xs_updatedOn: null
|
@@ -41,7 +41,7 @@ const getBoxToAutoAlign = (editor, sectionPath) => {
|
|
41
41
|
at: sectionPath,
|
42
42
|
match: node => node.type === "freegridBox" && node.autoAlign
|
43
43
|
});
|
44
|
-
return boxData;
|
44
|
+
return boxData || [];
|
45
45
|
};
|
46
46
|
const handleGridItems = (gridItems, lastRow) => {
|
47
47
|
// to find the previously occupied rows
|
@@ -242,6 +242,9 @@ export const handleBoxAlignment = (editor, sectionNode, sectionPath) => {
|
|
242
242
|
}, {
|
243
243
|
at: boxPath
|
244
244
|
});
|
245
|
+
if (!boxNode) {
|
246
|
+
return;
|
247
|
+
}
|
245
248
|
const containerItems = boxNode?.children || [];
|
246
249
|
const {
|
247
250
|
containerHeight
|
@@ -9,6 +9,15 @@ const useVirtualElementStyles = () => ({
|
|
9
9
|
opacity: 1,
|
10
10
|
right: 0,
|
11
11
|
top: 0,
|
12
|
+
"& .leaf-item": {
|
13
|
+
fontSize: "var(--fontSize_xs) !important",
|
14
|
+
"& span": {
|
15
|
+
fontSize: "var(--fontSize_xs) !important"
|
16
|
+
}
|
17
|
+
},
|
18
|
+
"& .editor-blocker": {
|
19
|
+
display: "none"
|
20
|
+
},
|
12
21
|
"& .freegrid-item": {
|
13
22
|
position: "relative !important",
|
14
23
|
top: "0 !important",
|
@@ -18,6 +27,9 @@ const useVirtualElementStyles = () => ({
|
|
18
27
|
left: "24px !important",
|
19
28
|
marginTop: "var(--marginTop_xs) !important",
|
20
29
|
outline: "1px solid gray !important",
|
30
|
+
"&.type_text": {
|
31
|
+
height: "auto !important"
|
32
|
+
},
|
21
33
|
// "&.type_box": {
|
22
34
|
// // display: "grid !important",
|
23
35
|
// // gridTemplateRows: "repeat(auto-fill, 50px) !important",
|
@@ -44,6 +56,15 @@ export const useAutoAlignStyles = () => ({
|
|
44
56
|
top: 0,
|
45
57
|
height: "auto !important",
|
46
58
|
pointerEvents: "none",
|
59
|
+
"& .leaf-item": {
|
60
|
+
fontSize: "var(--fontSize_xs) !important",
|
61
|
+
"& span": {
|
62
|
+
fontSize: "var(--fontSize_xs) !important"
|
63
|
+
}
|
64
|
+
},
|
65
|
+
"& .editor-blocker": {
|
66
|
+
display: "none"
|
67
|
+
},
|
47
68
|
"& .freegrid-item": {
|
48
69
|
position: "relative !important",
|
49
70
|
top: "0 !important",
|
@@ -61,6 +82,9 @@ export const useAutoAlignStyles = () => ({
|
|
61
82
|
width: "var(--width_xs) !important",
|
62
83
|
height: "var(--height_xs) !important"
|
63
84
|
},
|
85
|
+
"&.type_text": {
|
86
|
+
height: "auto !important"
|
87
|
+
},
|
64
88
|
// start - default signature classes on free-grid
|
65
89
|
"& .fgi_type_signature": {
|
66
90
|
height: "100%",
|
@@ -71,7 +71,9 @@ const RnD = props => {
|
|
71
71
|
itemData = {},
|
72
72
|
customProps,
|
73
73
|
sectionElement,
|
74
|
-
dataSets
|
74
|
+
dataSets,
|
75
|
+
autoAlign,
|
76
|
+
setAutoAlign
|
75
77
|
} = props;
|
76
78
|
const {
|
77
79
|
isSelectedElement,
|
@@ -79,9 +81,7 @@ const RnD = props => {
|
|
79
81
|
updateDragging,
|
80
82
|
contextMenu,
|
81
83
|
setContextMenu,
|
82
|
-
theme
|
83
|
-
autoAlign,
|
84
|
-
setAutoAlign
|
84
|
+
theme
|
85
85
|
} = useEditorContext();
|
86
86
|
const str_path = path.join("|");
|
87
87
|
const selectedElementProps = isSelectedElement(str_path, type);
|
@@ -14,6 +14,7 @@ import { SectionSettingIcon } from "../iconListV2";
|
|
14
14
|
// const list_types = ["orderedList", "unorderedList"];
|
15
15
|
import { jsx as _jsx } from "react/jsx-runtime";
|
16
16
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
17
|
+
const SECTION_PROPS = ["sectionBgColor", "sectionBackgroundImage", "sectionBannerSpacing", "sectionBorderRadius", "sectionGridSize", "sectionAlignment"];
|
17
18
|
const Toolbar = ({
|
18
19
|
readOnly,
|
19
20
|
showTool,
|
@@ -118,11 +119,26 @@ const Section = props => {
|
|
118
119
|
...data
|
119
120
|
};
|
120
121
|
delete updateData.children;
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
122
|
+
if (element.type !== "paragraph") {
|
123
|
+
// remove section properties
|
124
|
+
Transforms.unsetNodes(editor, SECTION_PROPS, {
|
125
|
+
at: path
|
126
|
+
});
|
127
|
+
// wrap with paragraph with section properties
|
128
|
+
Transforms.wrapNodes(editor, {
|
129
|
+
...updateData,
|
130
|
+
type: "paragraph",
|
131
|
+
children: []
|
132
|
+
}, {
|
133
|
+
at: path
|
134
|
+
});
|
135
|
+
} else {
|
136
|
+
Transforms.setNodes(editor, {
|
137
|
+
...updateData
|
138
|
+
}, {
|
139
|
+
at: path
|
140
|
+
});
|
141
|
+
}
|
126
142
|
onClose();
|
127
143
|
};
|
128
144
|
const onClose = () => {
|
@@ -15,6 +15,7 @@ import { Transforms } from "slate";
|
|
15
15
|
import { insertInfinityAI } from "../../utils/infinityAI";
|
16
16
|
import { insertDataView } from "../../utils/dataView";
|
17
17
|
import SearchButton from "../../Elements/Search/SearchButton";
|
18
|
+
import canOpen from "../../helper/canOpen";
|
18
19
|
import { jsx as _jsx } from "react/jsx-runtime";
|
19
20
|
const ELEMENTS_LIST = [{
|
20
21
|
name: "Heading 1",
|
@@ -358,8 +359,10 @@ const elements = props => {
|
|
358
359
|
const {
|
359
360
|
search,
|
360
361
|
hideTools,
|
361
|
-
translation
|
362
|
+
translation,
|
363
|
+
editor
|
362
364
|
} = props;
|
365
|
+
const nodeType = canOpen(editor);
|
363
366
|
const translatedElements = ELEMENTS_LIST.map(element => ({
|
364
367
|
...element,
|
365
368
|
name: translation(element.name),
|
@@ -370,7 +373,7 @@ const elements = props => {
|
|
370
373
|
});
|
371
374
|
} : undefined
|
372
375
|
}));
|
373
|
-
const filteredElements = translatedElements.filter(f => (hideTools || []).indexOf(f.type) === -1);
|
376
|
+
const filteredElements = translatedElements.filter(f => (hideTools || []).indexOf(f.type) === -1 && (!f?.hideFor || f?.hideFor?.indexOf(nodeType) === -1));
|
374
377
|
return filteredElements.filter(c => c.name.toLowerCase().includes(search?.toLowerCase()));
|
375
378
|
};
|
376
379
|
export default elements;
|
@@ -2,7 +2,8 @@ import React, { useEffect, useMemo, useState } from "react";
|
|
2
2
|
import { Grid, TextField, InputAdornment, Typography, Tooltip } from "@mui/material";
|
3
3
|
import ColorPickerButton from "../../ColorPickerButton";
|
4
4
|
import { useSlateStatic } from "slate-react";
|
5
|
-
import {
|
5
|
+
import { getVariableValue } from "../../../helper/theme";
|
6
|
+
import { useButtonStyle } from "../../../hooks/useThemeValues";
|
6
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
7
8
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
8
9
|
const MAP_STYLE_PROPS = {
|
@@ -29,18 +30,21 @@ const Color = props => {
|
|
29
30
|
} = customProps;
|
30
31
|
const [recentColors, setRecentColors] = useState({});
|
31
32
|
const editor = useSlateStatic();
|
33
|
+
const {
|
34
|
+
buttonStyle
|
35
|
+
} = useButtonStyle(val, editor, elementProps, MAP_STYLE_PROPS[key]);
|
32
36
|
const {
|
33
37
|
value,
|
34
38
|
inputValue
|
35
39
|
} = useMemo(() => {
|
36
40
|
const isVariable = val && val.startsWith("var");
|
37
|
-
const value = isVariable ? val :
|
38
|
-
const inputValue = isVariable ? getVariableValue(val) :
|
41
|
+
const value = isVariable ? val : buttonStyle;
|
42
|
+
const inputValue = isVariable ? getVariableValue(val) : buttonStyle;
|
39
43
|
return {
|
40
44
|
value: value || val,
|
41
45
|
inputValue: inputValue || val
|
42
46
|
};
|
43
|
-
}, [
|
47
|
+
}, [buttonStyle, val]);
|
44
48
|
const getLable = label === "Text" ? translation("selectTextColor") : label === "Background" ? translation("selectBgColor") : translation(label);
|
45
49
|
useEffect(() => {
|
46
50
|
const storedColors = JSON.parse(localStorage.getItem("recentColors"));
|
@@ -247,6 +247,16 @@ const useCommonStyle = theme => ({
|
|
247
247
|
backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
|
248
248
|
color: theme?.palette?.editor?.textColor
|
249
249
|
}
|
250
|
+
},
|
251
|
+
"& .colorPickerActionBtns": {
|
252
|
+
backgroundColor: theme?.palette?.editor?.background,
|
253
|
+
display: "flex",
|
254
|
+
justifyContent: "end",
|
255
|
+
padding: "10px",
|
256
|
+
position: "sticky",
|
257
|
+
bottom: 0,
|
258
|
+
right: 0,
|
259
|
+
boxShadow: "0px -3px 12px 0px #00000017"
|
250
260
|
}
|
251
261
|
},
|
252
262
|
colorPickerBtnBorder: {
|
@@ -40,7 +40,6 @@ export const EditorProvider = ({
|
|
40
40
|
});
|
41
41
|
const [fontFamilies, setFontFamilies] = useState(defaultFontFamilies);
|
42
42
|
const [activeBreakPoint, setActiveBreakPoint] = useState("");
|
43
|
-
const [autoAlign, setAutoAlign] = useState(false);
|
44
43
|
useEffect(() => {
|
45
44
|
window.updateSelectedItem = d => {
|
46
45
|
setSelectedElement(d);
|
@@ -108,10 +107,8 @@ export const EditorProvider = ({
|
|
108
107
|
setOpenTheme,
|
109
108
|
activeBreakPoint,
|
110
109
|
setActiveBreakPoint,
|
111
|
-
triggerRender
|
112
|
-
|
113
|
-
setAutoAlign
|
114
|
-
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop, openTheme, activeBreakPoint, autoAlign]);
|
110
|
+
triggerRender
|
111
|
+
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop, openTheme, activeBreakPoint]);
|
115
112
|
return /*#__PURE__*/_jsx(EditorContext.Provider, {
|
116
113
|
value: otherValues,
|
117
114
|
children: children
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { useEffect, useState } from "react";
|
2
|
+
import { getElementProperty } from "../helper/theme";
|
3
|
+
import { ReactEditor } from "slate-react";
|
4
|
+
import { Node } from "slate";
|
5
|
+
function useThemeValues() {
|
6
|
+
return {};
|
7
|
+
}
|
8
|
+
export default useThemeValues;
|
9
|
+
export function useButtonStyle(value, editor, element, stylePropertyName) {
|
10
|
+
const [buttonStyle, setButtonStyle] = useState(value);
|
11
|
+
useEffect(() => {
|
12
|
+
const style = getButtonElementStyle(editor, element, stylePropertyName);
|
13
|
+
setButtonStyle(style);
|
14
|
+
}, [value, editor, element, stylePropertyName]);
|
15
|
+
return {
|
16
|
+
buttonStyle
|
17
|
+
};
|
18
|
+
}
|
19
|
+
export function getButtonElementStyle(editor, element, stylePropertyName) {
|
20
|
+
try {
|
21
|
+
const path = ReactEditor.findPath(editor, element);
|
22
|
+
if (path?.length) {
|
23
|
+
const currentEle = Node.get(editor, path);
|
24
|
+
const dom = ReactEditor.toDOMNode(editor, currentEle);
|
25
|
+
const editorBtn = dom?.querySelector(".button.theme-element");
|
26
|
+
return getElementProperty(editorBtn, stylePropertyName);
|
27
|
+
}
|
28
|
+
} catch (err) {
|
29
|
+
// console.log(err);
|
30
|
+
}
|
31
|
+
}
|
@@ -62,7 +62,6 @@ export const toggleBlock = (editor, format, selection = true, attr = {}) => {
|
|
62
62
|
const isList = list_types.includes(format);
|
63
63
|
const isIndent = alignment.includes(format);
|
64
64
|
const isAligned = alignment.some(alignmentType => isBlockActive(editor, alignmentType));
|
65
|
-
console.log(isAligned, isIndent);
|
66
65
|
|
67
66
|
/*If the node is already aligned and change in indent is called we should unwrap it first and split the node to prevent
|
68
67
|
messy, nested DOM structure and bugs due to that.*/
|
@@ -75,29 +74,10 @@ export const toggleBlock = (editor, format, selection = true, attr = {}) => {
|
|
75
74
|
|
76
75
|
/* Wraping the nodes for alignment, to allow it to co-exist with other block level operations*/
|
77
76
|
if (isIndent) {
|
78
|
-
|
79
|
-
|
80
|
-
|
77
|
+
Transforms.wrapNodes(editor, {
|
78
|
+
type: format,
|
79
|
+
children: []
|
81
80
|
});
|
82
|
-
// for heading background preserve while alignment change
|
83
|
-
if (nodeEntry) {
|
84
|
-
// for headings alone
|
85
|
-
Transforms.wrapNodes(editor, {
|
86
|
-
type: format,
|
87
|
-
children: []
|
88
|
-
}, {
|
89
|
-
at: editor.selection,
|
90
|
-
match: n => {
|
91
|
-
return Text.isText(n);
|
92
|
-
}
|
93
|
-
});
|
94
|
-
} else {
|
95
|
-
// follow old logic
|
96
|
-
Transforms.wrapNodes(editor, {
|
97
|
-
type: format,
|
98
|
-
children: []
|
99
|
-
});
|
100
|
-
}
|
101
81
|
return;
|
102
82
|
}
|
103
83
|
Transforms.unwrapNodes(editor, {
|