@flozy/editor 9.7.2 → 9.7.4

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.
@@ -189,16 +189,8 @@ 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
- };
200
192
  const handleEditorChange = newValue => {
201
- const isSlateEmpty = newValue.every(isEmpty);
193
+ console.log("🚀 ~ handleEditorChange ~ newValue:", newValue);
202
194
  if (editor.children.length === 0) {
203
195
  Transforms.insertNodes(editor, {
204
196
  type: "paragraph",
@@ -207,28 +199,21 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
207
199
  }]
208
200
  });
209
201
  } else {
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
- }
202
+ newValue.forEach((val, index) => {
203
+ if (val?.type === "table") {
204
+ const nextNode = newValue[index + 1];
205
+ if (!nextNode || nextNode.type !== "paragraph") {
206
+ Transforms.insertNodes(editor, {
207
+ type: "paragraph",
208
+ children: [{
209
+ text: ""
210
+ }]
211
+ }, {
212
+ at: [index + 1]
213
+ });
229
214
  }
230
- });
231
- }
215
+ }
216
+ });
232
217
  }
233
218
  debounced(newValue);
234
219
  debouncedValue.current = newValue;
@@ -1282,8 +1282,8 @@ blockquote {
1282
1282
  }
1283
1283
  @media (max-width: 899px) {
1284
1284
  /* Qa validation required */
1285
- /* .MuiPopover-root {
1286
- z-index: 1302 !important;
1285
+ /* .MuiPopover-root {
1286
+ z-index: 1302 !important;
1287
1287
  } */
1288
1288
 
1289
1289
  canvas {
@@ -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 { LinkIcon } from "../../common/iconslist";
8
+ import { GridSettingsIcon, 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: "3px"
35
+ gap: '3px'
36
36
  },
37
37
  children: [/*#__PURE__*/_jsx(Tooltip, {
38
38
  title: "Image Settings",
@@ -1,6 +1,6 @@
1
1
  import React, { useRef, useState } from "react";
2
2
  import SignatureCanvas from "react-signature-canvas";
3
- import { Grid, useMediaQuery } from "@mui/material";
3
+ import { Grid } 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,11 +24,6 @@ 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
- } : {};
32
27
  return /*#__PURE__*/_jsxs(Grid, {
33
28
  container: true,
34
29
  children: [uploading ? "Uploading..." : "", /*#__PURE__*/_jsx(Grid, {
@@ -40,8 +35,7 @@ const DrawSignature = props => {
40
35
  },
41
36
  children: /*#__PURE__*/_jsx(SignatureCanvas, {
42
37
  canvasProps: {
43
- className: "signature-canvas",
44
- ...signatureCanvasStyle
38
+ className: "signature-canvas"
45
39
  },
46
40
  onEnd: onSigned,
47
41
  ref: ref => canvasRef = ref,
@@ -33,14 +33,17 @@ 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
- // const { element: pageSt } = getPageSettings(editor) || {};
36
+ const {
37
+ element: pageSt
38
+ } = getPageSettings(editor) || {};
38
39
  // const pageSettingLine = pageSt?.pageProps?.lineHeight;
39
40
  const {
40
41
  fontFamilies,
41
42
  theme
42
43
  } = useEditorContext();
43
- // const { activeBreakPoint } = useEditorContext();
44
+ const {
45
+ activeBreakPoint
46
+ } = useEditorContext();
44
47
  // const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
45
48
  const fontWeight = allTools.find(f => f.format === "fontWeight");
46
49
  const fontStyle = allTools.filter(f => f.type === "mark" && f.format !== "strikethrough" && f.format !== "superscript" && f.format !== "subscript");
@@ -14,6 +14,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
14
14
  const PopupTool = props => {
15
15
  const {
16
16
  theme,
17
+ setIsTextSelected,
17
18
  customProps,
18
19
  editorWrapper
19
20
  } = props;
@@ -34,9 +35,6 @@ const PopupTool = props => {
34
35
  const [size] = useWindowResize();
35
36
  const updateAnchorEl = isScroll => {
36
37
  try {
37
- const {
38
- selection
39
- } = editor;
40
38
  const isHavingSelection = selection && !Range.isCollapsed(selection);
41
39
  if (isHavingSelection && event === "end") {
42
40
  const domRange = ReactEditor.toDOMRange(editor, editor.selection);
@@ -76,16 +74,15 @@ const PopupTool = props => {
76
74
  if (!isCarouselEdit) {
77
75
  setOpen(true);
78
76
  setPopupType("textFormat");
79
- // setIsTextSelected(true);
77
+ setIsTextSelected(true);
80
78
  }
81
79
  } else if (!anchorEl) {
82
80
  setOpen(false);
83
81
  setPopupType("");
84
- // setIsTextSelected(false);
82
+ setIsTextSelected(false);
85
83
  }
86
84
  }, [event, anchorEl]);
87
85
  useEffect(() => {
88
- console.log("Editor useEffect", selection);
89
86
  const {
90
87
  path,
91
88
  enable
@@ -95,20 +92,17 @@ const PopupTool = props => {
95
92
  if (!selection || Range.isCollapsed(selection) || Editor.string(editor, selection) === "" || isFreeGridEnabled) {
96
93
  setAnchorEl(null);
97
94
  } else {
98
- console.log("Editor updateAnchorEl", selection);
99
95
  updateAnchorEl();
100
96
  hideSlateSelection(); // removes slate selection background, when there is no selection
101
97
  }
102
98
  }, [selection, event, selectedElement?.enable]);
103
99
  const handleClose = () => {
104
- console.log("Editor closing");
105
100
  // setAnchorEl(null);
106
101
  setOpen(false);
107
102
  setPopupType("");
108
103
  };
109
104
  return open && !openAI ? /*#__PURE__*/_jsx(ClickAwayListener, {
110
105
  onClickAway: e => {
111
- console.log("ClickAwayListener", e.target, document.body, e.target !== document.body);
112
106
  // close the mini toolbar, if user clicks outside the editor (in Flozy app.)
113
107
  if (e.target !== document.body) {
114
108
  // 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
@@ -19,7 +19,7 @@ const Upload = props => {
19
19
  xs: 12,
20
20
  sx: {
21
21
  padding: "10px",
22
- height: "100%"
22
+ height: '100%'
23
23
  },
24
24
  className: "ims-right",
25
25
  children: /*#__PURE__*/_jsx(Uploader, {
@@ -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: "150px",
9
- height: "inherit"
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: "150px"
21
+ minHeight: '150px'
22
22
  },
23
23
  uploadIcon: {
24
24
  display: "grid !important",
25
25
  "& svg": {
26
- display: "flex",
27
- width: "100%",
26
+ display: 'flex',
27
+ width: '100%',
28
28
  "& path": {
29
29
  stroke: "#2563EB"
30
30
  }
31
31
  },
32
- "& span": {
33
- display: "flex",
34
- width: "100%",
35
- marginTop: "5px"
32
+ '& span': {
33
+ display: 'flex',
34
+ width: '100%',
35
+ marginTop: '5px'
36
36
  }
37
37
  }
38
38
  });
@@ -58,7 +58,6 @@ const useElementSettingsStyle = theme => ({
58
58
  maxHeight: "500px",
59
59
  overflowX: "hidden",
60
60
  overflowY: "auto",
61
- paddingLeft: "4px",
62
61
  background: theme?.palette?.editor?.background,
63
62
  paddingLeft: "4px",
64
63
  "& .MuiTypography-root, .MuiInputBase-root, input": {
@@ -54,10 +54,10 @@ const useCommonStyle = theme => ({
54
54
  marginTop: "4px"
55
55
  },
56
56
  "& .MuiPaper-root": {
57
- border: "unset !important",
58
- borderRadius: "0px",
59
- height: "fit-content",
60
- padding: "2px"
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: "fit-content"
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: "36px !important"
137
+ height: '36px !important'
138
138
  },
139
139
  "& .spacingSlider": {
140
140
  width: "calc(100% - 18px)"
141
141
  }
142
142
  },
143
- "& .MuiFormHelperText-root": {
144
- margin: "4px 0px 0px 0px",
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: "500",
400
+ fontWeight: '500',
401
401
  fontFamily: "Inter, sans-serif",
402
- minHeight: "36px",
402
+ minHeight: '36px',
403
403
  "&:hover": {
404
404
  backgroundColor: theme?.palette?.editor?.menuOptionHoverBackground
405
405
  }
406
406
  },
407
- "& .Mui-selected": {
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: "8px",
417
- padding: "0px",
416
+ borderRadius: '8px',
417
+ padding: '0px',
418
418
  background: `${theme?.palette?.editor?.textWeightPopUpBackground} !important`
419
419
  },
420
- "& .MuiButtonBase-root": {
421
- margin: "4px",
422
- borderRadius: "6px"
420
+ '& .MuiButtonBase-root': {
421
+ margin: '4px',
422
+ borderRadius: '6px'
423
423
  },
424
- "& .MuiList-root": {
425
- padding: "0px"
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: "4px !important",
533
- "& svg": {
534
- width: "18px !important",
535
- height: "18px !important",
536
- "& path": {
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
- "& svg": {
545
- "& path": {
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: "5px !important",
554
- "& svg": {
555
- width: "16px !important",
556
- height: "16px !important",
557
- "& path": {
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: "5px !important",
566
- borderRadius: "50% !important",
567
- "& svg": {
568
- width: "18px",
569
- height: "18px",
570
- "& path": {
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
- "&:hover": {
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: "math-auto !important",
581
- color: "#FFFFFF !important",
582
- padding: "0px 12px !important",
583
- height: "32px",
584
- borderRadius: "8px",
585
- fontWeight: "500",
586
- fontSize: "14px"
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: "14px !important",
592
- "& svg": {
593
- width: "20px !important",
594
- height: "20px !important",
595
- "& path": {
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
  }
@@ -1,4 +1,4 @@
1
- import { useCallback, useEffect, useState } from "react";
1
+ import { useEffect, useState } from "react";
2
2
  const useDrag = () => {
3
3
  const [event, setEvent] = useState("");
4
4
  useEffect(() => {
@@ -5,7 +5,6 @@ function useEditorScroll(editorWrapper = {
5
5
  useEffect(() => {
6
6
  if (!editorWrapper?.current) return;
7
7
  const handleScroll = () => {
8
- console.log("Editor debug useEditorScroll ====>", editorWrapper, callback);
9
8
  callback("scroll");
10
9
  };
11
10
  const currentEditorWrapper = editorWrapper.current;
@@ -1,4 +1,4 @@
1
- import { Editor, Transforms, Element as SlateElement, Range } from "slate";
1
+ import { Editor, Transforms, Element as SlateElement, Range, Text, Element } 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.2",
3
+ "version": "9.7.4",
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",