@flozy/editor 9.8.5 → 9.8.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/dist/Editor/ChatEditor.js +17 -16
  2. package/dist/Editor/CommonEditor.js +119 -17
  3. package/dist/Editor/DialogWrapper.js +31 -25
  4. package/dist/Editor/Editor.css +17 -9
  5. package/dist/Editor/Elements/AI/PopoverAIInput.js +11 -3
  6. package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
  7. package/dist/Editor/Elements/Button/EditorButton.js +25 -9
  8. package/dist/Editor/Elements/Color Picker/ColorButtons.js +61 -14
  9. package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
  10. package/dist/Editor/Elements/Color Picker/ColorPicker.js +10 -7
  11. package/dist/Editor/Elements/Color Picker/Styles.js +15 -13
  12. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +4 -2
  13. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +448 -0
  14. package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +21 -6
  15. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +5 -1
  16. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +3 -2
  17. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +11 -0
  18. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
  19. package/dist/Editor/Elements/Embed/Image.js +2 -2
  20. package/dist/Editor/Elements/Embed/Video.js +1 -1
  21. package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
  22. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +48 -22
  23. package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +25 -4
  24. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +46 -3
  25. package/dist/Editor/Elements/FreeGrid/Options/More.js +7 -2
  26. package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
  27. package/dist/Editor/Elements/Grid/GridItem.js +1 -1
  28. package/dist/Editor/Elements/List/CheckList.js +4 -1
  29. package/dist/Editor/Elements/SimpleText/index.js +9 -1
  30. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  31. package/dist/Editor/Elements/Table/Table.js +3 -3
  32. package/dist/Editor/Elements/Title/title.js +6 -6
  33. package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
  34. package/dist/Editor/MiniEditor.js +2 -1
  35. package/dist/Editor/Styles/EditorStyles.js +5 -5
  36. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
  37. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
  38. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  39. package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
  40. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +4 -2
  41. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
  42. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +167 -42
  43. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +7 -4
  44. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +2 -1
  45. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +72 -12
  46. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +95 -23
  47. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +439 -0
  48. package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
  49. package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
  50. package/dist/Editor/assets/svg/BackIcon.js +18 -0
  51. package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
  52. package/dist/Editor/assets/svg/ResetIconNew.js +23 -0
  53. package/dist/Editor/assets/svg/ThemeIcons.js +293 -0
  54. package/dist/Editor/common/ColorPickerButton.js +38 -16
  55. package/dist/Editor/common/CustomColorPicker/index.js +131 -0
  56. package/dist/Editor/common/CustomColorPicker/style.js +53 -0
  57. package/dist/Editor/common/CustomDialog2/index.js +94 -0
  58. package/dist/Editor/common/CustomDialog2/style.js +67 -0
  59. package/dist/Editor/common/CustomSelect.js +43 -0
  60. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  61. package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
  62. package/dist/Editor/common/Icon.js +31 -1
  63. package/dist/Editor/common/ImageSelector/Styles.js +3 -9
  64. package/dist/Editor/common/RnD/ContextMenu/CMenus.js +24 -0
  65. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +2 -1
  66. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
  67. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
  68. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
  69. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
  70. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +4 -2
  71. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
  72. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
  73. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +3 -1
  74. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
  75. package/dist/Editor/common/RnD/ShadowElement.js +2 -1
  76. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +8 -2
  77. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
  78. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -3
  79. package/dist/Editor/common/RnD/Utils/gridDropItem.js +73 -9
  80. package/dist/Editor/common/RnD/Utils/index.js +3 -0
  81. package/dist/Editor/common/RnD/VirtualElement/BoxHeaderAutoAlignment.js +43 -0
  82. package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +44 -0
  83. package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
  84. package/dist/Editor/common/RnD/VirtualElement/helper.js +382 -0
  85. package/dist/Editor/common/RnD/VirtualElement/index.js +187 -103
  86. package/dist/Editor/common/RnD/VirtualElement/styles.js +155 -7
  87. package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
  88. package/dist/Editor/common/RnD/index.js +59 -3
  89. package/dist/Editor/common/Shorthands/elements.js +54 -0
  90. package/dist/Editor/common/SnackBar/index.js +43 -0
  91. package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
  92. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +5 -0
  93. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +12 -2
  94. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
  95. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +16 -8
  96. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +36 -10
  97. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +16 -7
  98. package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +7 -6
  99. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +15 -7
  100. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
  101. package/dist/Editor/common/Uploader.js +8 -0
  102. package/dist/Editor/common/iconslist.js +7 -8
  103. package/dist/Editor/commonStyle.js +95 -60
  104. package/dist/Editor/helper/textIndeces.js +58 -0
  105. package/dist/Editor/helper/theme.js +202 -2
  106. package/dist/Editor/hooks/useAutoScroll.js +38 -0
  107. package/dist/Editor/hooks/useEditorTheme.js +153 -0
  108. package/dist/Editor/hooks/useMouseMove.js +9 -3
  109. package/dist/Editor/hooks/useThemeValues.js +63 -0
  110. package/dist/Editor/plugins/withEmbeds.js +1 -1
  111. package/dist/Editor/plugins/withHTML.js +10 -7
  112. package/dist/Editor/plugins/withLinks.js +9 -10
  113. package/dist/Editor/plugins/withTable.js +1 -1
  114. package/dist/Editor/theme/ThemeList.js +50 -173
  115. package/dist/Editor/theme/index.js +149 -0
  116. package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
  117. package/dist/Editor/themeSettings/buttons/index.js +290 -0
  118. package/dist/Editor/themeSettings/buttons/style.js +23 -0
  119. package/dist/Editor/themeSettings/colorTheme/index.js +309 -0
  120. package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
  121. package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
  122. package/dist/Editor/themeSettings/fonts/index.js +240 -0
  123. package/dist/Editor/themeSettings/fonts/style.js +62 -0
  124. package/dist/Editor/themeSettings/icons.js +60 -0
  125. package/dist/Editor/themeSettings/index.js +361 -0
  126. package/dist/Editor/themeSettings/style.js +292 -0
  127. package/dist/Editor/themeSettingsAI/icons.js +96 -0
  128. package/dist/Editor/themeSettingsAI/index.js +355 -0
  129. package/dist/Editor/themeSettingsAI/saveTheme.js +202 -0
  130. package/dist/Editor/themeSettingsAI/style.js +324 -0
  131. package/dist/Editor/utils/SlateUtilityFunctions.js +171 -45
  132. package/dist/Editor/utils/button.js +1 -17
  133. package/dist/Editor/utils/draftToSlate.js +3 -2
  134. package/dist/Editor/utils/font.js +40 -37
  135. package/dist/Editor/utils/freegrid.js +2 -3
  136. package/dist/Editor/utils/helper.js +90 -19
  137. package/package.json +4 -4
@@ -49,15 +49,19 @@ const useCommonStyle = theme => ({
49
49
  fontWeight: "500",
50
50
  fontFamily: "Inter, sans-serif"
51
51
  },
52
+ "& .MuiPaper-root": {
53
+ border: `unset !important`,
54
+ borderRadius: "0px",
55
+ height: "fit-content",
56
+ padding: "2px"
57
+ },
52
58
  "& p": {
53
59
  marginBottom: "7px",
54
60
  marginTop: "4px"
55
61
  },
56
- "& .MuiPaper-root": {
57
- border: 'unset !important',
58
- borderRadius: '0px',
59
- height: 'fit-content',
60
- padding: '2px'
62
+ "& p": {
63
+ marginBottom: "7px",
64
+ marginTop: "4px"
61
65
  },
62
66
  "& .muiIconsListParent": {
63
67
  "& svg": {
@@ -65,15 +69,12 @@ const useCommonStyle = theme => ({
65
69
  },
66
70
  "&::-webkit-scrollbar-thumb": {
67
71
  background: `${theme?.palette?.editor?.brainPopupScroll} !important`
68
- },
69
- "&::-webkit-scrollbar-track": {
70
- visibility: "hidden"
71
72
  }
72
73
  },
73
74
  "& .MuiGrid-root>.MuiGrid-item": {
74
75
  paddingRight: "0px !important",
75
76
  fontFamily: "Inter, sans-serif",
76
- height: 'fit-content'
77
+ height: "fit-content"
77
78
  },
78
79
  "& .MuiInputBase-root": {
79
80
  borderRadius: "10px",
@@ -134,14 +135,14 @@ const useCommonStyle = theme => ({
134
135
  borderRadius: "10px",
135
136
  width: "46px !important",
136
137
  marginLeft: "10px",
137
- height: '36px !important'
138
+ height: "36px !important"
138
139
  },
139
140
  "& .spacingSlider": {
140
141
  width: "calc(100% - 18px)"
141
142
  }
142
143
  },
143
- '& .MuiFormHelperText-root': {
144
- margin: '4px 0px 0px 0px',
144
+ "& .MuiFormHelperText-root": {
145
+ margin: "4px 0px 0px 0px",
145
146
  color: theme?.palette?.editor?.closeButtonSvgStroke,
146
147
  fontFamily: "Inter, sans-serif"
147
148
  }
@@ -211,16 +212,16 @@ const useCommonStyle = theme => ({
211
212
  backgroundColor: theme?.palette?.editor?.miniToolBarBackground
212
213
  },
213
214
  "& .popup_tabs": {
214
- backgroundColor: theme?.palette?.editor?.background,
215
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
215
216
  "@media only screen and (max-width: 899px)": {
216
217
  width: "100% !important"
217
218
  }
218
219
  },
219
220
  "& .popup_tabs-header": {
220
- backgroundColor: theme?.palette?.editor?.background,
221
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
221
222
  "& .popup_tabs-header-label-active": {
222
223
  color: theme?.palette?.editor?.activeColor,
223
- backgroundColor: theme?.palette?.editor?.background
224
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground
224
225
  }
225
226
  },
226
227
  "& .colorpicker": {
@@ -249,6 +250,40 @@ const useCommonStyle = theme => ({
249
250
  backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
250
251
  color: theme?.palette?.editor?.textColor
251
252
  }
253
+ },
254
+ "& .colorPickerActionBtns": {
255
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
256
+ display: "flex",
257
+ justifyContent: "end",
258
+ padding: "10px",
259
+ position: "sticky",
260
+ bottom: 0,
261
+ right: 0,
262
+ boxShadow: `0px -3px 12px 0px ${theme?.palette?.editor?.cardShadow}`,
263
+ gap: "8px",
264
+ "& button": {
265
+ fontWeight: 600,
266
+ fontSize: "14px",
267
+ opacity: 1,
268
+ borderRadius: "8px",
269
+ textTransform: "math-auto",
270
+ padding: "4px 20px",
271
+ height: "fit-content",
272
+ minWidth: "90px",
273
+ "@media only screen and (max-width: 899px)": {
274
+ width: "50%"
275
+ },
276
+ "&.confirmBtn": {
277
+ backgroundColor: "#2563EB",
278
+ color: "#ffffff",
279
+ border: `1px solid #2563EB`
280
+ },
281
+ "&.cancelBtn": {
282
+ backgroundColor: theme?.palette?.editor?.closeButtonBackground,
283
+ color: theme?.palette?.editor?.customDialogueCloseBtnColor,
284
+ border: `1px solid ${theme?.palette?.editor?.customDialogueCloseBtnBorder}`
285
+ }
286
+ }
252
287
  }
253
288
  },
254
289
  colorPickerBtnBorder: {
@@ -397,14 +432,14 @@ const useCommonStyle = theme => ({
397
432
  padding: "8px 12px",
398
433
  fontSize: "12px",
399
434
  color: theme?.palette?.editor?.menuOptionTextColor,
400
- fontWeight: '500',
435
+ fontWeight: "500",
401
436
  fontFamily: "Inter, sans-serif",
402
- minHeight: '36px',
437
+ minHeight: "36px",
403
438
  "&:hover": {
404
439
  backgroundColor: theme?.palette?.editor?.menuOptionHoverBackground
405
440
  }
406
441
  },
407
- '& .Mui-selected': {
442
+ "& .Mui-selected": {
408
443
  background: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
409
444
  },
410
445
  "& .MuiListSubheader-root": {
@@ -413,16 +448,16 @@ const useCommonStyle = theme => ({
413
448
  fontSize: "12px"
414
449
  },
415
450
  "& .MuiPaper-root": {
416
- borderRadius: '8px',
417
- padding: '0px',
451
+ borderRadius: "8px",
452
+ padding: "0px",
418
453
  background: `${theme?.palette?.editor?.textWeightPopUpBackground} !important`
419
454
  },
420
- '& .MuiButtonBase-root': {
421
- margin: '4px',
422
- borderRadius: '6px'
455
+ "& .MuiButtonBase-root": {
456
+ margin: "4px",
457
+ borderRadius: "6px"
423
458
  },
424
- '& .MuiList-root': {
425
- padding: '0px'
459
+ "& .MuiList-root": {
460
+ padding: "0px"
426
461
  }
427
462
  },
428
463
  datePicker: {
@@ -522,27 +557,27 @@ const useCommonStyle = theme => ({
522
557
  }
523
558
  }
524
559
  },
525
- pageSettingPopUpRoot: {
526
- padding: "16px 8px 16px 10px!important",
527
- height: "100%"
528
- },
529
560
  buttonMoreOption: {
530
561
  background: `${theme?.palette?.editor?.aiInputBackground} !important`,
531
562
  border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
532
- padding: '4px !important',
533
- '& svg': {
534
- width: '18px !important',
535
- height: '18px !important',
536
- '& path': {
563
+ padding: "4px !important",
564
+ "& svg": {
565
+ width: "18px !important",
566
+ height: "18px !important",
567
+ "& path": {
537
568
  stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
538
569
  }
539
570
  }
540
571
  },
572
+ pageSettingPopUpRoot: {
573
+ padding: "16px 8px 16px 10px!important",
574
+ height: "100%"
575
+ },
541
576
  buttonMoreOption2: {
542
577
  background: `${theme?.palette?.editor?.aiInputBackground} !important`,
543
578
  border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
544
- '& svg': {
545
- '& path': {
579
+ "& svg": {
580
+ "& path": {
546
581
  fill: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
547
582
  }
548
583
  }
@@ -550,11 +585,11 @@ const useCommonStyle = theme => ({
550
585
  buttonMoreOption3: {
551
586
  background: `${theme?.palette?.editor?.aiInputBackground} !important`,
552
587
  border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
553
- padding: '5px !important',
554
- '& svg': {
555
- width: '16px !important',
556
- height: '16px !important',
557
- '& path': {
588
+ padding: "5px !important",
589
+ "& svg": {
590
+ width: "16px !important",
591
+ height: "16px !important",
592
+ "& path": {
558
593
  stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
559
594
  }
560
595
  }
@@ -562,37 +597,37 @@ const useCommonStyle = theme => ({
562
597
  resizeButton: {
563
598
  background: theme?.palette?.editor?.aiInputBackground,
564
599
  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': {
600
+ padding: "5px !important",
601
+ borderRadius: "50% !important",
602
+ "& svg": {
603
+ width: "18px",
604
+ height: "18px",
605
+ "& path": {
571
606
  fill: `${theme?.palette?.editor?.closeButtonSvgStroke}`
572
607
  }
573
608
  },
574
- '&:hover': {
609
+ "&:hover": {
575
610
  background: theme?.palette?.editor?.aiInputBackground
576
611
  }
577
612
  },
578
613
  gradientFillBtn: {
579
614
  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'
615
+ textTransform: "math-auto !important",
616
+ color: "#FFFFFF !important",
617
+ padding: "0px 12px !important",
618
+ height: "32px",
619
+ borderRadius: "8px",
620
+ fontWeight: "500",
621
+ fontSize: "14px"
587
622
  },
588
623
  emptyThumbBtn: {
589
624
  background: `${theme?.palette?.editor?.sectionSettingIconHover} !important`,
590
625
  color: `${theme?.palette?.editor?.textColor} !important`,
591
- fontSize: '14px !important',
592
- '& svg': {
593
- width: '20px !important',
594
- height: '20px !important',
595
- '& path': {
626
+ fontSize: "14px !important",
627
+ "& svg": {
628
+ width: "20px !important",
629
+ height: "20px !important",
630
+ "& path": {
596
631
  stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
597
632
  }
598
633
  }
@@ -0,0 +1,58 @@
1
+ export function extractTextWithPath(data, path = []) {
2
+ let result = [];
3
+ data.forEach((item, index) => {
4
+ const currentPath = [...path, index];
5
+ if (item.text) {
6
+ result.push({
7
+ path_id: currentPath.join(","),
8
+ text: item.text
9
+ });
10
+ }
11
+ if (item.children) {
12
+ result = result.concat(extractTextWithPath(item.children, currentPath));
13
+ }
14
+ });
15
+ return result;
16
+ }
17
+ export function replaceTextPath(nestedJson, pathIdJson) {
18
+ // Create a map from path_id JSON for quick lookup
19
+ const pathIdMap = new Map(pathIdJson.map(item => [item.path_id, item.text]));
20
+ console.log(pathIdMap);
21
+ function extractTextWithPath(data, path = []) {
22
+ data.forEach((item, index) => {
23
+ const currentPath = [...path, index];
24
+ if (item.text) {
25
+ if (pathIdMap.has(currentPath?.join(","))) {
26
+ item.text = pathIdMap.get(currentPath?.join(","));
27
+ }
28
+ }
29
+ if (item.children) {
30
+ extractTextWithPath(item.children, currentPath);
31
+ }
32
+ });
33
+ }
34
+ extractTextWithPath(nestedJson, []);
35
+ return nestedJson;
36
+ }
37
+
38
+ // export function replaceTextPath(nestedJson, pathIdJson) {
39
+ // // Create a map from path_id JSON for quick lookup
40
+ // const pathIdMap = new Map(
41
+ // pathIdJson.map((item) => [item.path_id, item.text])
42
+ // );
43
+
44
+ // function traverseAndReplace(node) {
45
+ // if (Array.isArray(node)) {
46
+ // node.forEach(traverseAndReplace);
47
+ // } else if (typeof node === "object" && node !== null) {
48
+ // console.log(node);
49
+ // if (node.text && pathIdMap.has(node.text)) {
50
+ // node.text = pathIdMap.get(node.path_id);
51
+ // }
52
+ // Object.values(node).forEach(traverseAndReplace);
53
+ // }
54
+ // }
55
+
56
+ // traverseAndReplace(nestedJson);
57
+ // return nestedJson;
58
+ // }
@@ -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,196 @@ 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
+ color: "color",
169
+ bgColor: "background-color"
170
+ };
171
+ export function getElementProperty(element, styleProperty) {
172
+ if (!element) {
173
+ return "";
174
+ }
175
+ const computedStyle = window.getComputedStyle(element);
176
+ const property = MAP_PROPERTY_KEYS[styleProperty] || styleProperty;
177
+ let style = computedStyle.getPropertyValue(property);
178
+ if (property === "font-family") {
179
+ style = style.replace(/"/g, ""); // remove double quotes if exists e.g: '"Courier New"'
180
+ }
181
+
182
+ return style || "";
183
+ }
184
+ export const textThemeFields = ["fontFamily", "fontSize", "color", "bold", "italic"
185
+ // "underline",
186
+ // "strikethrough",
187
+ ];
188
+
189
+ const themeElements = ["headingOne", "headingTwo", "headingThree", "headingFour", "headingFive", "headingSix", "paragraphOne", "paragraphTwo", "paragraphThree"];
190
+ export const isTextCustomized = editor => {
191
+ try {
192
+ if (editor.selection) {
193
+ const currentElement = Node.parent(editor, editor?.selection?.anchor?.path);
194
+ if (!currentElement) {
195
+ return false;
196
+ }
197
+ const {
198
+ children,
199
+ type
200
+ } = currentElement;
201
+ if (!themeElements.includes(type)) {
202
+ return false;
203
+ }
204
+ if (!children?.length) {
205
+ return true;
206
+ }
207
+ const customized = textThemeFields.some(field => {
208
+ const element = children.find(child => child.text.trim() !== "") || {};
209
+ const value = element[field];
210
+ if (field === "fontSize") {
211
+ return Object.keys(value || {}).length;
212
+ } else {
213
+ return value;
214
+ }
215
+ });
216
+ return customized;
217
+ } else {
218
+ return null;
219
+ }
220
+ } catch (err) {
221
+ return null;
222
+ }
223
+ };
224
+ const addToTheme = (field, value, element) => {
225
+ switch (field) {
226
+ case "fontFamily":
227
+ return {
228
+ fontFamily: value
229
+ };
230
+ case "fontSize":
231
+ return {
232
+ fontSize: value?.lg
233
+ };
234
+ case "color":
235
+ return {
236
+ color: value
237
+ };
238
+ case "bold":
239
+ return {
240
+ fontWeight: "bold"
241
+ };
242
+ case "italic":
243
+ return {
244
+ fontStyle: "italic"
245
+ };
246
+ // case "underline":
247
+ // case "strikethrough":
248
+ // let textDecoration = "";
249
+
250
+ // if (element.underline) {
251
+ // textDecoration = "underline";
252
+ // }
253
+
254
+ // if (element.strikethrough) {
255
+ // textDecoration += " strikethrough";
256
+ // }
257
+
258
+ // return { textDecoration };
259
+ default:
260
+ return {};
261
+ }
262
+ };
263
+ const MAP_TEXT_THEME_FIELD = {
264
+ headingOne: "h1",
265
+ headingTwo: "h2",
266
+ headingThree: "h3",
267
+ headingFour: "h4",
268
+ headingFive: "h5",
269
+ headingSix: "h6",
270
+ paragraphOne: "para1",
271
+ paragraphTwo: "para2",
272
+ paragraphThree: "para3"
273
+ };
274
+ export const saveToTheme = editor => {
275
+ try {
276
+ if (editor.selection) {
277
+ const currentElement = Node.parent(editor, editor?.selection?.anchor?.path);
278
+ if (!currentElement) {
279
+ return false;
280
+ }
281
+ const {
282
+ children
283
+ } = currentElement;
284
+ if (!children?.length) {
285
+ return true;
286
+ }
287
+ let theme = {};
288
+ textThemeFields.forEach(field => {
289
+ const element = children.find(child => child.text.trim() !== "") || {};
290
+ const value = element[field];
291
+ let style = {};
292
+ let isValueExist = false;
293
+ if (value) {
294
+ isValueExist = true;
295
+ if (field === "fontSize") {
296
+ isValueExist = !!Object.keys(value).length;
297
+ }
298
+ }
299
+ if (isValueExist) {
300
+ style = addToTheme(field, value, element);
301
+ }
302
+ theme = {
303
+ ...theme,
304
+ ...style
305
+ };
306
+ });
307
+ textThemeFields.forEach(field => {
308
+ Editor.removeMark(editor, field);
309
+ });
310
+ return {
311
+ field: MAP_TEXT_THEME_FIELD[currentElement?.type],
312
+ theme
313
+ };
314
+ }
315
+ } catch (err) {
316
+ return;
317
+ }
318
+ };
319
+ export const HEADING_THEME_FIELDS = ["h1", "h2", "h3", "h4", "h5", "h6"];
320
+ export const PARAGRAPH_THEME_FIELDS = ["para1", "para2", "para3"];
121
321
  export const getBRValue = (props, rbr = "lg") => {
122
322
  const {
123
323
  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;