@flozy/editor 9.7.4 → 9.7.5
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 +30 -15
- package/dist/Editor/Editor.css +2 -2
- package/dist/Editor/Elements/Embed/Image.js +2 -2
- package/dist/Editor/Elements/Search/SearchList.js +2 -3
- package/dist/Editor/Elements/Signature/SignatureOptions/DrawSignature.js +8 -2
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +3 -6
- package/dist/Editor/Toolbar/PopupTool/index.js +9 -3
- package/dist/Editor/common/ImageSelector/Options/Upload.js +1 -1
- package/dist/Editor/common/ImageSelector/UploadStyles.js +9 -9
- package/dist/Editor/common/RnD/ElementSettings/styles.js +1 -0
- package/dist/Editor/common/SwipeableDrawer/index.js +1 -1
- package/dist/Editor/commonStyle.js +49 -49
- package/dist/Editor/hooks/useDrag.js +1 -1
- package/dist/Editor/hooks/useEditorScroll.js +1 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +1 -1
- package/package.json +2 -2
@@ -189,8 +189,16 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
189
189
|
children: children
|
190
190
|
});
|
191
191
|
};
|
192
|
+
const isEmpty = node => {
|
193
|
+
if (node.text && node.text.trim()) return false;
|
194
|
+
if (node.url && node.url.trim()) return false;
|
195
|
+
if (node.children) {
|
196
|
+
return node.children.every(isEmpty);
|
197
|
+
}
|
198
|
+
return true;
|
199
|
+
};
|
192
200
|
const handleEditorChange = newValue => {
|
193
|
-
|
201
|
+
const isSlateEmpty = newValue.every(isEmpty);
|
194
202
|
if (editor.children.length === 0) {
|
195
203
|
Transforms.insertNodes(editor, {
|
196
204
|
type: "paragraph",
|
@@ -199,21 +207,28 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
199
207
|
}]
|
200
208
|
});
|
201
209
|
} else {
|
202
|
-
newValue.
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
210
|
+
const lastNode = newValue?.[newValue.length - 1] || null;
|
211
|
+
if (isSlateEmpty && lastNode?.type !== "paragraph") {
|
212
|
+
Transforms.removeNodes(editor, {
|
213
|
+
at: [0]
|
214
|
+
});
|
215
|
+
} else {
|
216
|
+
newValue.forEach((val, index) => {
|
217
|
+
if (val?.type === "table") {
|
218
|
+
const nextNode = newValue[index + 1];
|
219
|
+
if (!nextNode || nextNode.type !== "paragraph") {
|
220
|
+
Transforms.insertNodes(editor, {
|
221
|
+
type: "paragraph",
|
222
|
+
children: [{
|
223
|
+
text: ""
|
224
|
+
}]
|
225
|
+
}, {
|
226
|
+
at: [index + 1]
|
227
|
+
});
|
228
|
+
}
|
214
229
|
}
|
215
|
-
}
|
216
|
-
}
|
230
|
+
});
|
231
|
+
}
|
217
232
|
}
|
218
233
|
debounced(newValue);
|
219
234
|
debouncedValue.current = newValue;
|
package/dist/Editor/Editor.css
CHANGED
@@ -5,7 +5,7 @@ import AspectRatioIcon from "@mui/icons-material/AspectRatio";
|
|
5
5
|
import useResize from "../../utils/customHooks/useResize";
|
6
6
|
import EmbedPopup from "./EmbedPopup";
|
7
7
|
import { IconButton, Tooltip, Box, useTheme } from "@mui/material";
|
8
|
-
import {
|
8
|
+
import { LinkIcon } from "../../common/iconslist";
|
9
9
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
10
10
|
import { getTRBLBreakPoints, getBreakPointsValue, groupByBreakpoint } from "../../helper/theme";
|
11
11
|
import Icon from "../../common/Icon";
|
@@ -32,7 +32,7 @@ const ToolBar = ({
|
|
32
32
|
top: "-4px",
|
33
33
|
left: topM ? "35px" : "0px",
|
34
34
|
margin: "0px",
|
35
|
-
gap:
|
35
|
+
gap: "3px"
|
36
36
|
},
|
37
37
|
children: [/*#__PURE__*/_jsx(Tooltip, {
|
38
38
|
title: "Image Settings",
|
@@ -31,7 +31,7 @@ const SearchAndDocList = ({
|
|
31
31
|
children: "Brains"
|
32
32
|
}), !isMobile ? /*#__PURE__*/_jsx(IconButton, {
|
33
33
|
onClick: e => {
|
34
|
-
e
|
34
|
+
e?.stopPropagation();
|
35
35
|
handleClose();
|
36
36
|
},
|
37
37
|
sx: {
|
@@ -134,8 +134,7 @@ const SearchAndDocList = ({
|
|
134
134
|
position: 'relative',
|
135
135
|
maxHeight: '400px',
|
136
136
|
minWidth: "275px",
|
137
|
-
|
138
|
-
overflowX: 'hidden',
|
137
|
+
overflow: 'auto',
|
139
138
|
padding: '0px 16px 8px',
|
140
139
|
marginBottom: '20px',
|
141
140
|
scrollbarWidth: "thin",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import React, { useRef, useState } from "react";
|
2
2
|
import SignatureCanvas from "react-signature-canvas";
|
3
|
-
import { Grid } from "@mui/material";
|
3
|
+
import { Grid, useMediaQuery } from "@mui/material";
|
4
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
5
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
6
6
|
const DrawSignature = props => {
|
@@ -24,6 +24,11 @@ const DrawSignature = props => {
|
|
24
24
|
signature: result?.imageURL || strImage
|
25
25
|
});
|
26
26
|
};
|
27
|
+
const isMobile = useMediaQuery("(max-width:599px)");
|
28
|
+
const signatureCanvasStyle = isMobile ? {
|
29
|
+
width: "260px",
|
30
|
+
height: "200px"
|
31
|
+
} : {};
|
27
32
|
return /*#__PURE__*/_jsxs(Grid, {
|
28
33
|
container: true,
|
29
34
|
children: [uploading ? "Uploading..." : "", /*#__PURE__*/_jsx(Grid, {
|
@@ -35,7 +40,8 @@ const DrawSignature = props => {
|
|
35
40
|
},
|
36
41
|
children: /*#__PURE__*/_jsx(SignatureCanvas, {
|
37
42
|
canvasProps: {
|
38
|
-
className: "signature-canvas"
|
43
|
+
className: "signature-canvas",
|
44
|
+
...signatureCanvasStyle
|
39
45
|
},
|
40
46
|
onEnd: onSigned,
|
41
47
|
ref: ref => canvasRef = ref,
|
@@ -33,17 +33,14 @@ const TextFormat = props => {
|
|
33
33
|
const [anchorEl, setAnchorEl] = useState(null);
|
34
34
|
const [type, setType] = useState(null);
|
35
35
|
const open = Boolean(anchorEl);
|
36
|
-
|
37
|
-
|
38
|
-
} = getPageSettings(editor) || {};
|
36
|
+
|
37
|
+
// const { element: pageSt } = getPageSettings(editor) || {};
|
39
38
|
// const pageSettingLine = pageSt?.pageProps?.lineHeight;
|
40
39
|
const {
|
41
40
|
fontFamilies,
|
42
41
|
theme
|
43
42
|
} = useEditorContext();
|
44
|
-
const {
|
45
|
-
activeBreakPoint
|
46
|
-
} = useEditorContext();
|
43
|
+
// const { activeBreakPoint } = useEditorContext();
|
47
44
|
// const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
|
48
45
|
const fontWeight = allTools.find(f => f.format === "fontWeight");
|
49
46
|
const fontStyle = allTools.filter(f => f.type === "mark" && f.format !== "strikethrough" && f.format !== "superscript" && f.format !== "subscript");
|
@@ -14,7 +14,6 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
14
14
|
const PopupTool = props => {
|
15
15
|
const {
|
16
16
|
theme,
|
17
|
-
setIsTextSelected,
|
18
17
|
customProps,
|
19
18
|
editorWrapper
|
20
19
|
} = props;
|
@@ -35,6 +34,9 @@ const PopupTool = props => {
|
|
35
34
|
const [size] = useWindowResize();
|
36
35
|
const updateAnchorEl = isScroll => {
|
37
36
|
try {
|
37
|
+
const {
|
38
|
+
selection
|
39
|
+
} = editor;
|
38
40
|
const isHavingSelection = selection && !Range.isCollapsed(selection);
|
39
41
|
if (isHavingSelection && event === "end") {
|
40
42
|
const domRange = ReactEditor.toDOMRange(editor, editor.selection);
|
@@ -74,15 +76,16 @@ const PopupTool = props => {
|
|
74
76
|
if (!isCarouselEdit) {
|
75
77
|
setOpen(true);
|
76
78
|
setPopupType("textFormat");
|
77
|
-
setIsTextSelected(true);
|
79
|
+
// setIsTextSelected(true);
|
78
80
|
}
|
79
81
|
} else if (!anchorEl) {
|
80
82
|
setOpen(false);
|
81
83
|
setPopupType("");
|
82
|
-
setIsTextSelected(false);
|
84
|
+
// setIsTextSelected(false);
|
83
85
|
}
|
84
86
|
}, [event, anchorEl]);
|
85
87
|
useEffect(() => {
|
88
|
+
console.log("Editor useEffect", selection);
|
86
89
|
const {
|
87
90
|
path,
|
88
91
|
enable
|
@@ -92,17 +95,20 @@ const PopupTool = props => {
|
|
92
95
|
if (!selection || Range.isCollapsed(selection) || Editor.string(editor, selection) === "" || isFreeGridEnabled) {
|
93
96
|
setAnchorEl(null);
|
94
97
|
} else {
|
98
|
+
console.log("Editor updateAnchorEl", selection);
|
95
99
|
updateAnchorEl();
|
96
100
|
hideSlateSelection(); // removes slate selection background, when there is no selection
|
97
101
|
}
|
98
102
|
}, [selection, event, selectedElement?.enable]);
|
99
103
|
const handleClose = () => {
|
104
|
+
console.log("Editor closing");
|
100
105
|
// setAnchorEl(null);
|
101
106
|
setOpen(false);
|
102
107
|
setPopupType("");
|
103
108
|
};
|
104
109
|
return open && !openAI ? /*#__PURE__*/_jsx(ClickAwayListener, {
|
105
110
|
onClickAway: e => {
|
111
|
+
console.log("ClickAwayListener", e.target, document.body, e.target !== document.body);
|
106
112
|
// close the mini toolbar, if user clicks outside the editor (in Flozy app.)
|
107
113
|
if (e.target !== document.body) {
|
108
114
|
// e.target returns body, if the user clicks material ui select popup inside the tool bar, on that time, we don't need to close
|
@@ -5,8 +5,8 @@ const UploadStyles = theme => ({
|
|
5
5
|
borderRadius: "11px",
|
6
6
|
boxShadow: "0px 4px 10px rgba(0, 0, 0, 0.16)",
|
7
7
|
background: theme?.palette?.editor?.uploadFileBg,
|
8
|
-
minHeight:
|
9
|
-
height:
|
8
|
+
minHeight: "150px",
|
9
|
+
height: "inherit"
|
10
10
|
},
|
11
11
|
uploadField: {
|
12
12
|
width: "100%",
|
@@ -18,21 +18,21 @@ const UploadStyles = theme => ({
|
|
18
18
|
backgroundColor: theme?.palette?.editor?.uploadFileInnerBg,
|
19
19
|
borderRadius: "9px",
|
20
20
|
border: "1px dashed #2563EB",
|
21
|
-
minHeight:
|
21
|
+
minHeight: "150px"
|
22
22
|
},
|
23
23
|
uploadIcon: {
|
24
24
|
display: "grid !important",
|
25
25
|
"& svg": {
|
26
|
-
display:
|
27
|
-
width:
|
26
|
+
display: "flex",
|
27
|
+
width: "100%",
|
28
28
|
"& path": {
|
29
29
|
stroke: "#2563EB"
|
30
30
|
}
|
31
31
|
},
|
32
|
-
|
33
|
-
display:
|
34
|
-
width:
|
35
|
-
marginTop:
|
32
|
+
"& span": {
|
33
|
+
display: "flex",
|
34
|
+
width: "100%",
|
35
|
+
marginTop: "5px"
|
36
36
|
}
|
37
37
|
}
|
38
38
|
});
|
@@ -58,6 +58,7 @@ const useElementSettingsStyle = theme => ({
|
|
58
58
|
maxHeight: "500px",
|
59
59
|
overflowX: "hidden",
|
60
60
|
overflowY: "auto",
|
61
|
+
paddingLeft: "4px",
|
61
62
|
background: theme?.palette?.editor?.background,
|
62
63
|
paddingLeft: "4px",
|
63
64
|
"& .MuiTypography-root, .MuiInputBase-root, input": {
|
@@ -29,8 +29,8 @@ function SwipeableDrawerComponent({
|
|
29
29
|
} = useEditorContext();
|
30
30
|
const classes = DrawerStyles(theme);
|
31
31
|
const handleClose = e => {
|
32
|
-
e.stopPropagation();
|
33
32
|
onClose();
|
33
|
+
e?.stopPropagation();
|
34
34
|
};
|
35
35
|
return /*#__PURE__*/_jsx(Fragment, {
|
36
36
|
children: swipeableDrawer ? /*#__PURE__*/_jsxs(SwipeableDrawer, {
|
@@ -54,10 +54,10 @@ const useCommonStyle = theme => ({
|
|
54
54
|
marginTop: "4px"
|
55
55
|
},
|
56
56
|
"& .MuiPaper-root": {
|
57
|
-
border:
|
58
|
-
borderRadius:
|
59
|
-
height:
|
60
|
-
padding:
|
57
|
+
border: "unset !important",
|
58
|
+
borderRadius: "0px",
|
59
|
+
height: "fit-content",
|
60
|
+
padding: "2px"
|
61
61
|
},
|
62
62
|
"& .muiIconsListParent": {
|
63
63
|
"& svg": {
|
@@ -73,7 +73,7 @@ const useCommonStyle = theme => ({
|
|
73
73
|
"& .MuiGrid-root>.MuiGrid-item": {
|
74
74
|
paddingRight: "0px !important",
|
75
75
|
fontFamily: "Inter, sans-serif",
|
76
|
-
height:
|
76
|
+
height: "fit-content"
|
77
77
|
},
|
78
78
|
"& .MuiInputBase-root": {
|
79
79
|
borderRadius: "10px",
|
@@ -134,14 +134,14 @@ const useCommonStyle = theme => ({
|
|
134
134
|
borderRadius: "10px",
|
135
135
|
width: "46px !important",
|
136
136
|
marginLeft: "10px",
|
137
|
-
height:
|
137
|
+
height: "36px !important"
|
138
138
|
},
|
139
139
|
"& .spacingSlider": {
|
140
140
|
width: "calc(100% - 18px)"
|
141
141
|
}
|
142
142
|
},
|
143
|
-
|
144
|
-
margin:
|
143
|
+
"& .MuiFormHelperText-root": {
|
144
|
+
margin: "4px 0px 0px 0px",
|
145
145
|
color: theme?.palette?.editor?.closeButtonSvgStroke,
|
146
146
|
fontFamily: "Inter, sans-serif"
|
147
147
|
}
|
@@ -397,14 +397,14 @@ const useCommonStyle = theme => ({
|
|
397
397
|
padding: "8px 12px",
|
398
398
|
fontSize: "12px",
|
399
399
|
color: theme?.palette?.editor?.menuOptionTextColor,
|
400
|
-
fontWeight:
|
400
|
+
fontWeight: "500",
|
401
401
|
fontFamily: "Inter, sans-serif",
|
402
|
-
minHeight:
|
402
|
+
minHeight: "36px",
|
403
403
|
"&:hover": {
|
404
404
|
backgroundColor: theme?.palette?.editor?.menuOptionHoverBackground
|
405
405
|
}
|
406
406
|
},
|
407
|
-
|
407
|
+
"& .Mui-selected": {
|
408
408
|
background: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
|
409
409
|
},
|
410
410
|
"& .MuiListSubheader-root": {
|
@@ -413,16 +413,16 @@ const useCommonStyle = theme => ({
|
|
413
413
|
fontSize: "12px"
|
414
414
|
},
|
415
415
|
"& .MuiPaper-root": {
|
416
|
-
borderRadius:
|
417
|
-
padding:
|
416
|
+
borderRadius: "8px",
|
417
|
+
padding: "0px",
|
418
418
|
background: `${theme?.palette?.editor?.textWeightPopUpBackground} !important`
|
419
419
|
},
|
420
|
-
|
421
|
-
margin:
|
422
|
-
borderRadius:
|
420
|
+
"& .MuiButtonBase-root": {
|
421
|
+
margin: "4px",
|
422
|
+
borderRadius: "6px"
|
423
423
|
},
|
424
|
-
|
425
|
-
padding:
|
424
|
+
"& .MuiList-root": {
|
425
|
+
padding: "0px"
|
426
426
|
}
|
427
427
|
},
|
428
428
|
datePicker: {
|
@@ -529,11 +529,11 @@ const useCommonStyle = theme => ({
|
|
529
529
|
buttonMoreOption: {
|
530
530
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
531
531
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
532
|
-
padding:
|
533
|
-
|
534
|
-
width:
|
535
|
-
height:
|
536
|
-
|
532
|
+
padding: "4px !important",
|
533
|
+
"& svg": {
|
534
|
+
width: "18px !important",
|
535
|
+
height: "18px !important",
|
536
|
+
"& path": {
|
537
537
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
538
538
|
}
|
539
539
|
}
|
@@ -541,8 +541,8 @@ const useCommonStyle = theme => ({
|
|
541
541
|
buttonMoreOption2: {
|
542
542
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
543
543
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
544
|
-
|
545
|
-
|
544
|
+
"& svg": {
|
545
|
+
"& path": {
|
546
546
|
fill: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
547
547
|
}
|
548
548
|
}
|
@@ -550,11 +550,11 @@ const useCommonStyle = theme => ({
|
|
550
550
|
buttonMoreOption3: {
|
551
551
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
552
552
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
553
|
-
padding:
|
554
|
-
|
555
|
-
width:
|
556
|
-
height:
|
557
|
-
|
553
|
+
padding: "5px !important",
|
554
|
+
"& svg": {
|
555
|
+
width: "16px !important",
|
556
|
+
height: "16px !important",
|
557
|
+
"& path": {
|
558
558
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
559
559
|
}
|
560
560
|
}
|
@@ -562,37 +562,37 @@ const useCommonStyle = theme => ({
|
|
562
562
|
resizeButton: {
|
563
563
|
background: theme?.palette?.editor?.aiInputBackground,
|
564
564
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1}`,
|
565
|
-
padding:
|
566
|
-
borderRadius:
|
567
|
-
|
568
|
-
width:
|
569
|
-
height:
|
570
|
-
|
565
|
+
padding: "5px !important",
|
566
|
+
borderRadius: "50% !important",
|
567
|
+
"& svg": {
|
568
|
+
width: "18px",
|
569
|
+
height: "18px",
|
570
|
+
"& path": {
|
571
571
|
fill: `${theme?.palette?.editor?.closeButtonSvgStroke}`
|
572
572
|
}
|
573
573
|
},
|
574
|
-
|
574
|
+
"&:hover": {
|
575
575
|
background: theme?.palette?.editor?.aiInputBackground
|
576
576
|
}
|
577
577
|
},
|
578
578
|
gradientFillBtn: {
|
579
579
|
background: `linear-gradient(112.61deg, #2C63ED 19.3%, #8360FD 88.14%) !important`,
|
580
|
-
textTransform:
|
581
|
-
color:
|
582
|
-
padding:
|
583
|
-
height:
|
584
|
-
borderRadius:
|
585
|
-
fontWeight:
|
586
|
-
fontSize:
|
580
|
+
textTransform: "math-auto !important",
|
581
|
+
color: "#FFFFFF !important",
|
582
|
+
padding: "0px 12px !important",
|
583
|
+
height: "32px",
|
584
|
+
borderRadius: "8px",
|
585
|
+
fontWeight: "500",
|
586
|
+
fontSize: "14px"
|
587
587
|
},
|
588
588
|
emptyThumbBtn: {
|
589
589
|
background: `${theme?.palette?.editor?.sectionSettingIconHover} !important`,
|
590
590
|
color: `${theme?.palette?.editor?.textColor} !important`,
|
591
|
-
fontSize:
|
592
|
-
|
593
|
-
width:
|
594
|
-
height:
|
595
|
-
|
591
|
+
fontSize: "14px !important",
|
592
|
+
"& svg": {
|
593
|
+
width: "20px !important",
|
594
|
+
height: "20px !important",
|
595
|
+
"& path": {
|
596
596
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
597
597
|
}
|
598
598
|
}
|
@@ -5,6 +5,7 @@ function useEditorScroll(editorWrapper = {
|
|
5
5
|
useEffect(() => {
|
6
6
|
if (!editorWrapper?.current) return;
|
7
7
|
const handleScroll = () => {
|
8
|
+
console.log("Editor debug useEditorScroll ====>", editorWrapper, callback);
|
8
9
|
callback("scroll");
|
9
10
|
};
|
10
11
|
const currentEditorWrapper = editorWrapper.current;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Editor, Transforms, Element as SlateElement, Range
|
1
|
+
import { Editor, Transforms, Element as SlateElement, Range } from "slate";
|
2
2
|
import { Box } from "@mui/material";
|
3
3
|
import { sizeMap } from "./font";
|
4
4
|
import Link from "../Elements/Link/Link";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@flozy/editor",
|
3
|
-
"version": "9.7.
|
3
|
+
"version": "9.7.5",
|
4
4
|
"description": "An Editor for flozy app brain",
|
5
5
|
"files": [
|
6
6
|
"dist"
|
@@ -61,7 +61,7 @@
|
|
61
61
|
"scripts": {
|
62
62
|
"prepare": "husky install .husky",
|
63
63
|
"analyze": "source-map-explorer build/static/js/*.js",
|
64
|
-
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore .",
|
64
|
+
"lint": "./node_modules/. bin/eslint --ignore-path .gitignore .",
|
65
65
|
"start": "craco start",
|
66
66
|
"build": "NODE_OPTIONS='--max_old_space_size=4096' craco build",
|
67
67
|
"test": "craco test --passWithNoTests",
|