@flozy/editor 6.0.3 → 6.0.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 +7 -7
- package/dist/Editor/CommonEditor.js +25 -81
- package/dist/Editor/DialogWrapper.js +25 -31
- package/dist/Editor/Editor.css +16 -22
- package/dist/Editor/Elements/AI/PopoverAIInput.js +12 -2
- package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
- package/dist/Editor/Elements/Button/EditorButton.js +9 -26
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +12 -57
- package/dist/Editor/Elements/Color Picker/ColorPicker.css +1 -25
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +4 -4
- package/dist/Editor/Elements/Color Picker/Styles.js +1 -1
- package/dist/Editor/Elements/DataView/DataView.js +3 -4
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/NumberType.js +1 -5
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/TextType.js +1 -5
- package/dist/Editor/Elements/DataView/Layouts/FilterView.js +19 -23
- package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +1 -1
- package/dist/Editor/Elements/Embed/Image.js +2 -2
- package/dist/Editor/Elements/Form/Form.js +0 -1
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +14 -0
- package/dist/Editor/Elements/FreeGrid/styles.js +0 -4
- package/dist/Editor/Elements/Grid/GridItem.js +3 -2
- package/dist/Editor/Elements/Link/Link.js +43 -70
- package/dist/Editor/Elements/List/CheckList.js +1 -2
- package/dist/Editor/Elements/Search/SearchAttachment.js +0 -1
- package/dist/Editor/Elements/Search/SearchList.js +1 -8
- package/dist/Editor/Elements/SimpleText/index.js +1 -8
- package/dist/Editor/Elements/SimpleText/style.js +1 -5
- package/dist/Editor/Elements/Table/Table.js +3 -3
- package/dist/Editor/Elements/Table/TableCell.js +9 -14
- package/dist/Editor/Elements/Title/title.js +1 -13
- package/dist/Editor/Elements/Variables/Style.js +2 -28
- package/dist/Editor/Elements/Variables/VariableButton.js +4 -17
- package/dist/Editor/MiniEditor.js +2 -4
- package/dist/Editor/Toolbar/FormatTools/Dropdown.js +3 -27
- package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +3 -4
- package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +15 -7
- package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +36 -46
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectAlignment.js +1 -3
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +13 -6
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectList.js +1 -3
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +91 -211
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +4 -11
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +12 -16
- package/dist/Editor/Toolbar/PopupTool/TemplateCard.js +1 -1
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +7 -99
- package/dist/Editor/Toolbar/PopupTool/index.js +0 -2
- package/dist/Editor/Toolbar/toolbarGroups.js +6 -48
- package/dist/Editor/common/ColorPickerButton.js +9 -32
- package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
- package/dist/Editor/common/DnD/Draggable.js +1 -0
- package/dist/Editor/common/FontLoader/FontList.js +9 -1
- package/dist/Editor/common/FontLoader/FontLoader.js +4 -6
- package/dist/Editor/common/Icon.js +0 -28
- package/dist/Editor/common/ImageSelector/Styles.js +9 -3
- package/dist/Editor/common/MentionsPopup/Styles.js +9 -3
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +1 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +2 -4
- package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +2 -3
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +2 -14
- package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +3 -6
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +4 -5
- package/dist/Editor/common/RnD/Utils/index.js +0 -40
- package/dist/Editor/common/RnD/index.js +3 -23
- package/dist/Editor/common/Shorthands/elements.js +0 -54
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +2 -4
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +0 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +2 -12
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +7 -15
- package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +2 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +11 -35
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +4 -13
- package/dist/Editor/common/StyleBuilder/fieldTypes/index.js +1 -3
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +7 -15
- package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +0 -4
- package/dist/Editor/common/Uploader.js +0 -8
- package/dist/Editor/commonStyle.js +63 -58
- package/dist/Editor/helper/deserialize/index.js +1 -1
- package/dist/Editor/helper/index.js +2 -2
- package/dist/Editor/helper/theme.js +3 -224
- package/dist/Editor/hooks/useMouseMove.js +5 -13
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +2 -2
- package/dist/Editor/plugins/withLayout.js +1 -1
- package/dist/Editor/plugins/withTable.js +1 -1
- package/dist/Editor/theme/ThemeList.js +173 -50
- package/dist/Editor/utils/SlateUtilityFunctions.js +42 -161
- package/dist/Editor/utils/button.js +14 -0
- package/dist/Editor/utils/customHooks/useTableResize.js +1 -2
- package/dist/Editor/utils/draftToSlate.js +2 -3
- package/dist/Editor/utils/font.js +37 -40
- package/dist/Editor/utils/helper.js +19 -88
- package/dist/Editor/utils/link.js +1 -1
- package/dist/Editor/utils/pageSettings.js +2 -14
- package/dist/Editor/utils/table.js +0 -21
- package/package.json +2 -5
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +0 -438
- package/dist/Editor/assets/svg/ThemeIcons.js +0 -291
- package/dist/Editor/common/CustomColorPicker/index.js +0 -106
- package/dist/Editor/common/CustomColorPicker/style.js +0 -53
- package/dist/Editor/common/CustomDialog/index.js +0 -94
- package/dist/Editor/common/CustomDialog/style.js +0 -67
- package/dist/Editor/common/CustomSelect.js +0 -33
- package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +0 -17
- package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +0 -79
- package/dist/Editor/helper/ensureWrappedVariables.js +0 -28
- package/dist/Editor/hooks/useEditorTheme.js +0 -153
- package/dist/Editor/theme/index.js +0 -144
- package/dist/Editor/themeSettings/ActiveTheme.js +0 -72
- package/dist/Editor/themeSettings/buttons/index.js +0 -283
- package/dist/Editor/themeSettings/buttons/style.js +0 -21
- package/dist/Editor/themeSettings/colorTheme/index.js +0 -292
- package/dist/Editor/themeSettings/colorTheme/style.js +0 -77
- package/dist/Editor/themeSettings/fonts/PreviewElement.js +0 -121
- package/dist/Editor/themeSettings/fonts/index.js +0 -220
- package/dist/Editor/themeSettings/fonts/style.js +0 -44
- package/dist/Editor/themeSettings/icons.js +0 -60
- package/dist/Editor/themeSettings/index.js +0 -320
- package/dist/Editor/themeSettings/style.js +0 -152
- package/dist/Editor/themeSettingsAI/icons.js +0 -96
- package/dist/Editor/themeSettingsAI/index.js +0 -356
- package/dist/Editor/themeSettingsAI/saveTheme.js +0 -197
- package/dist/Editor/themeSettingsAI/style.js +0 -250
@@ -49,32 +49,37 @@ 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
|
-
},
|
58
52
|
"& p": {
|
59
53
|
marginBottom: "7px",
|
60
54
|
marginTop: "4px"
|
61
55
|
},
|
62
|
-
"&
|
63
|
-
|
64
|
-
|
56
|
+
"& .MuiPaper-root": {
|
57
|
+
border: 'unset !important',
|
58
|
+
borderRadius: '0px',
|
59
|
+
height: 'fit-content',
|
60
|
+
padding: '2px'
|
65
61
|
},
|
66
62
|
"& .muiIconsListParent": {
|
67
63
|
"& svg": {
|
68
64
|
color: `${theme?.palette?.editor?.svgTextAlignStrokeColor} !important`
|
69
65
|
},
|
66
|
+
"&::-webkit-scrollbar-thumb": {
|
67
|
+
background: `none !important`
|
68
|
+
},
|
69
|
+
"&::-webkit-scrollbar-track": {
|
70
|
+
visibility: "hidden"
|
71
|
+
},
|
70
72
|
"&::-webkit-scrollbar-thumb": {
|
71
73
|
background: `${theme?.palette?.editor?.brainPopupScroll} !important`
|
74
|
+
},
|
75
|
+
"&::-webkit-scrollbar-track": {
|
76
|
+
visibility: "hidden"
|
72
77
|
}
|
73
78
|
},
|
74
79
|
"& .MuiGrid-root>.MuiGrid-item": {
|
75
80
|
paddingRight: "0px !important",
|
76
81
|
fontFamily: "Inter, sans-serif",
|
77
|
-
height:
|
82
|
+
height: 'fit-content'
|
78
83
|
},
|
79
84
|
"& .MuiInputBase-root": {
|
80
85
|
borderRadius: "10px",
|
@@ -135,11 +140,11 @@ const useCommonStyle = theme => ({
|
|
135
140
|
borderRadius: "10px",
|
136
141
|
width: "46px !important",
|
137
142
|
marginLeft: "10px",
|
138
|
-
height:
|
143
|
+
height: '36px !important'
|
139
144
|
}
|
140
145
|
},
|
141
|
-
|
142
|
-
margin:
|
146
|
+
'& .MuiFormHelperText-root': {
|
147
|
+
margin: '4px 0px 0px 0px',
|
143
148
|
color: theme?.palette?.editor?.closeButtonSvgStroke,
|
144
149
|
fontFamily: "Inter, sans-serif"
|
145
150
|
}
|
@@ -395,14 +400,14 @@ const useCommonStyle = theme => ({
|
|
395
400
|
padding: "8px 12px",
|
396
401
|
fontSize: "12px",
|
397
402
|
color: theme?.palette?.editor?.menuOptionTextColor,
|
398
|
-
fontWeight:
|
403
|
+
fontWeight: '500',
|
399
404
|
fontFamily: "Inter, sans-serif",
|
400
|
-
minHeight:
|
405
|
+
minHeight: '36px',
|
401
406
|
"&:hover": {
|
402
407
|
backgroundColor: theme?.palette?.editor?.menuOptionHoverBackground
|
403
408
|
}
|
404
409
|
},
|
405
|
-
|
410
|
+
'& .Mui-selected': {
|
406
411
|
background: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
|
407
412
|
},
|
408
413
|
"& .MuiListSubheader-root": {
|
@@ -411,16 +416,16 @@ const useCommonStyle = theme => ({
|
|
411
416
|
fontSize: "12px"
|
412
417
|
},
|
413
418
|
"& .MuiPaper-root": {
|
414
|
-
borderRadius:
|
415
|
-
padding:
|
419
|
+
borderRadius: '8px',
|
420
|
+
padding: '0px',
|
416
421
|
background: `${theme?.palette?.editor?.textWeightPopUpBackground} !important`
|
417
422
|
},
|
418
|
-
|
419
|
-
margin:
|
420
|
-
borderRadius:
|
423
|
+
'& .MuiButtonBase-root': {
|
424
|
+
margin: '4px',
|
425
|
+
borderRadius: '6px'
|
421
426
|
},
|
422
|
-
|
423
|
-
padding:
|
427
|
+
'& .MuiList-root': {
|
428
|
+
padding: '0px'
|
424
429
|
}
|
425
430
|
},
|
426
431
|
datePicker: {
|
@@ -465,27 +470,27 @@ const useCommonStyle = theme => ({
|
|
465
470
|
}
|
466
471
|
}
|
467
472
|
},
|
473
|
+
pageSettingPopUpRoot: {
|
474
|
+
padding: "16px 8px 16px 10px!important",
|
475
|
+
height: "100%"
|
476
|
+
},
|
468
477
|
buttonMoreOption: {
|
469
478
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
470
479
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
471
|
-
padding:
|
472
|
-
|
473
|
-
width:
|
474
|
-
height:
|
475
|
-
|
480
|
+
padding: '4px !important',
|
481
|
+
'& svg': {
|
482
|
+
width: '18px !important',
|
483
|
+
height: '18px !important',
|
484
|
+
'& path': {
|
476
485
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
477
486
|
}
|
478
487
|
}
|
479
488
|
},
|
480
|
-
pageSettingPopUpRoot: {
|
481
|
-
padding: "16px 8px 16px 10px!important",
|
482
|
-
height: "100%"
|
483
|
-
},
|
484
489
|
buttonMoreOption2: {
|
485
490
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
486
491
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
487
|
-
|
488
|
-
|
492
|
+
'& svg': {
|
493
|
+
'& path': {
|
489
494
|
fill: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
490
495
|
}
|
491
496
|
}
|
@@ -493,11 +498,11 @@ const useCommonStyle = theme => ({
|
|
493
498
|
buttonMoreOption3: {
|
494
499
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
495
500
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
496
|
-
padding:
|
497
|
-
|
498
|
-
width:
|
499
|
-
height:
|
500
|
-
|
501
|
+
padding: '5px !important',
|
502
|
+
'& svg': {
|
503
|
+
width: '16px !important',
|
504
|
+
height: '16px !important',
|
505
|
+
'& path': {
|
501
506
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
502
507
|
}
|
503
508
|
}
|
@@ -505,37 +510,37 @@ const useCommonStyle = theme => ({
|
|
505
510
|
resizeButton: {
|
506
511
|
background: theme?.palette?.editor?.aiInputBackground,
|
507
512
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1}`,
|
508
|
-
padding:
|
509
|
-
borderRadius:
|
510
|
-
|
511
|
-
width:
|
512
|
-
height:
|
513
|
-
|
513
|
+
padding: '5px !important',
|
514
|
+
borderRadius: '50% !important',
|
515
|
+
'& svg': {
|
516
|
+
width: '18px',
|
517
|
+
height: '18px',
|
518
|
+
'& path': {
|
514
519
|
fill: `${theme?.palette?.editor?.closeButtonSvgStroke}`
|
515
520
|
}
|
516
521
|
},
|
517
|
-
|
522
|
+
'&:hover': {
|
518
523
|
background: theme?.palette?.editor?.aiInputBackground
|
519
524
|
}
|
520
525
|
},
|
521
526
|
gradientFillBtn: {
|
522
527
|
background: `linear-gradient(112.61deg, #2C63ED 19.3%, #8360FD 88.14%) !important`,
|
523
|
-
textTransform:
|
524
|
-
color:
|
525
|
-
padding:
|
526
|
-
height:
|
527
|
-
borderRadius:
|
528
|
-
fontWeight:
|
529
|
-
fontSize:
|
528
|
+
textTransform: 'math-auto !important',
|
529
|
+
color: '#FFFFFF !important',
|
530
|
+
padding: '0px 12px !important',
|
531
|
+
height: '32px',
|
532
|
+
borderRadius: '8px',
|
533
|
+
fontWeight: '500',
|
534
|
+
fontSize: '14px'
|
530
535
|
},
|
531
536
|
emptyThumbBtn: {
|
532
537
|
background: `${theme?.palette?.editor?.sectionSettingIconHover} !important`,
|
533
538
|
color: `${theme?.palette?.editor?.textColor} !important`,
|
534
|
-
fontSize:
|
535
|
-
|
536
|
-
width:
|
537
|
-
height:
|
538
|
-
|
539
|
+
fontSize: '14px !important',
|
540
|
+
'& svg': {
|
541
|
+
width: '20px !important',
|
542
|
+
height: '20px !important',
|
543
|
+
'& path': {
|
539
544
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
540
545
|
}
|
541
546
|
}
|
@@ -175,7 +175,7 @@ const deserialize = el => {
|
|
175
175
|
if (el.nodeType === 3) {
|
176
176
|
// if there is any line-breaks
|
177
177
|
const match = /\r|\n/.exec(el.textContent);
|
178
|
-
const text = el.textContent.replace(/\r|\n/g, "").trim();
|
178
|
+
const text = el.textContent?.trim()?.length === 0 ? el.textContent.replace(/\r|\n/g, "").trim() : el.textContent;
|
179
179
|
return match && !text ? null : {
|
180
180
|
text,
|
181
181
|
...getInlineTextStyles(el.parentNode)
|
@@ -337,14 +337,14 @@ export const isCarouselSelected = editor => {
|
|
337
337
|
return false;
|
338
338
|
}
|
339
339
|
const [nodeEntry] = Editor.nodes(editor, {
|
340
|
-
match: n => !Editor.isEditor(n) && Element.isElement(n) && n.type ===
|
340
|
+
match: n => !Editor.isEditor(n) && Element.isElement(n) && n.type === 'carousel'
|
341
341
|
});
|
342
342
|
if (!nodeEntry) {
|
343
343
|
return false;
|
344
344
|
}
|
345
345
|
const [node] = nodeEntry;
|
346
346
|
const carouselDom = ReactEditor.toDOMNode(editor, node);
|
347
|
-
const isEdit = carouselDom.classList.contains(
|
347
|
+
const isEdit = carouselDom.classList.contains('carousel_slider_edit');
|
348
348
|
return !isEdit;
|
349
349
|
} catch (err) {
|
350
350
|
console.log(err);
|
@@ -1,6 +1,4 @@
|
|
1
|
-
import { ReactEditor } from "slate-react";
|
2
1
|
import { sizeMap } from "../utils/font";
|
3
|
-
import { Editor, Node } from "slate";
|
4
2
|
export const breakpoints = {
|
5
3
|
small: 0,
|
6
4
|
mobile: 600,
|
@@ -35,7 +33,7 @@ const overrideValues = (value, ot) => {
|
|
35
33
|
return Object.keys(value).reduce((a, b) => {
|
36
34
|
return {
|
37
35
|
...a,
|
38
|
-
[b]: overrides[ot] ? overrides[ot](value[b]
|
36
|
+
[b]: overrides[ot] ? overrides[ot](value[b]) : value
|
39
37
|
};
|
40
38
|
}, {});
|
41
39
|
};
|
@@ -52,15 +50,7 @@ const overrides = {
|
|
52
50
|
overrideReSizeH: val => {
|
53
51
|
return val ? `${val?.height}px` : "auto";
|
54
52
|
},
|
55
|
-
overrideBorderRadius:
|
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
|
-
}
|
53
|
+
overrideBorderRadius: val => {
|
64
54
|
return `${val?.topLeft}px ${val?.topRight}px ${val?.bottomLeft}px ${val?.bottomRight}px`;
|
65
55
|
}
|
66
56
|
};
|
@@ -128,194 +118,6 @@ export const getTRBLBreakPoints = (value, breakpoint) => {
|
|
128
118
|
console.log(err);
|
129
119
|
}
|
130
120
|
};
|
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 > 1) {
|
203
|
-
return true;
|
204
|
-
}
|
205
|
-
const customized = textThemeFields.some(field => {
|
206
|
-
const element = children[0] || {};
|
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 > 1) {
|
283
|
-
return true;
|
284
|
-
}
|
285
|
-
let theme = {};
|
286
|
-
textThemeFields.forEach(field => {
|
287
|
-
const element = children[0] || {};
|
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"];
|
319
121
|
export const getBRValue = (props, rbr = "lg") => {
|
320
122
|
const {
|
321
123
|
value,
|
@@ -359,27 +161,4 @@ export const groupByBreakpoint = (styleProps, theme) => {
|
|
359
161
|
}
|
360
162
|
};
|
361
163
|
};
|
362
|
-
export const getCustomizationValue = value => isNaN(parseInt(value)) ? null : parseInt(value);
|
363
|
-
export const getBreakpointLineSpacing = (value, breakpoint) => {
|
364
|
-
try {
|
365
|
-
const values = getBreakPointsValue(value, breakpoint);
|
366
|
-
const cssVal = BREAKPOINTS_DEVICES.reduce((a, b) => {
|
367
|
-
if (values[b] || values["lg"]) {
|
368
|
-
const value = values[b] || values["lg"];
|
369
|
-
return {
|
370
|
-
...a,
|
371
|
-
[b]: value
|
372
|
-
};
|
373
|
-
} else {
|
374
|
-
return a;
|
375
|
-
}
|
376
|
-
}, {});
|
377
|
-
if (breakpoint) {
|
378
|
-
return value[breakpoint] || value["lg"] || value;
|
379
|
-
} else {
|
380
|
-
return cssVal["lg"];
|
381
|
-
}
|
382
|
-
} catch (err) {
|
383
|
-
// console.log(err);
|
384
|
-
}
|
385
|
-
};
|
164
|
+
export const getCustomizationValue = value => isNaN(parseInt(value)) ? null : parseInt(value);
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { useEffect, useState, createContext, useContext, useMemo } from "react";
|
2
2
|
import { getSelectedText } from "../utils/helper";
|
3
3
|
import { debounce } from "../helper";
|
4
|
+
import { defaultFontFamilies } from "../common/FontLoader/FontList";
|
4
5
|
import { jsx as _jsx } from "react/jsx-runtime";
|
5
6
|
const EditorContext = /*#__PURE__*/createContext();
|
6
7
|
export const useEditorSelection = editor => {
|
@@ -20,10 +21,7 @@ export const useEditorSelection = editor => {
|
|
20
21
|
export const EditorProvider = ({
|
21
22
|
editor,
|
22
23
|
theme,
|
23
|
-
children
|
24
|
-
openTheme = false,
|
25
|
-
setOpenTheme = () => {},
|
26
|
-
triggerRender
|
24
|
+
children
|
27
25
|
}) => {
|
28
26
|
const [previous, setPrevious] = useState("");
|
29
27
|
const [drop, setDrop] = useState(0);
|
@@ -37,8 +35,7 @@ export const EditorProvider = ({
|
|
37
35
|
const [contextMenu, setContextMenu] = useState({
|
38
36
|
path: null
|
39
37
|
});
|
40
|
-
const [fontFamilies, setFontFamilies] = useState(
|
41
|
-
const [activeBreakPoint, setActiveBreakPoint] = useState("");
|
38
|
+
const [fontFamilies, setFontFamilies] = useState(defaultFontFamilies);
|
42
39
|
useEffect(() => {
|
43
40
|
window.updateSelectedItem = d => {
|
44
41
|
setSelectedElement(d);
|
@@ -101,13 +98,8 @@ export const EditorProvider = ({
|
|
101
98
|
setOpenAI,
|
102
99
|
updateDragging,
|
103
100
|
fontFamilies,
|
104
|
-
setFontFamilies
|
105
|
-
|
106
|
-
setOpenTheme,
|
107
|
-
activeBreakPoint,
|
108
|
-
setActiveBreakPoint,
|
109
|
-
triggerRender
|
110
|
-
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop, openTheme, activeBreakPoint]);
|
101
|
+
setFontFamilies
|
102
|
+
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop]);
|
111
103
|
return /*#__PURE__*/_jsx(EditorContext.Provider, {
|
112
104
|
value: otherValues,
|
113
105
|
children: children
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Transforms, Path, Node } from "slate";
|
2
|
-
const AvoidCopying = ["headingOne", "headingTwo", "headingThree", "
|
2
|
+
const AvoidCopying = ["headingOne", "headingTwo", "headingThree", "blockquote"];
|
3
3
|
const BlockTypes = ["grid"];
|
4
4
|
const withEmbeds = editor => {
|
5
5
|
const {
|
@@ -9,7 +9,7 @@ const parseCopiedHTML = html => {
|
|
9
9
|
const parsed = new DOMParser().parseFromString(html, "text/html");
|
10
10
|
|
11
11
|
// if ol, ul are inside li, remove and push ol,ul after that li to maintain format between our slate list and external source list's json
|
12
|
-
parsed.querySelectorAll("li > ul, li > ol
|
12
|
+
parsed.querySelectorAll("li > ul, li > ol").forEach(list => {
|
13
13
|
// Find the parent li
|
14
14
|
const parentLi = list.parentElement;
|
15
15
|
|
@@ -55,7 +55,7 @@ const loopChildren = (children = [], defaultInsert) => {
|
|
55
55
|
}
|
56
56
|
return defaultInsert;
|
57
57
|
};
|
58
|
-
|
58
|
+
const getCurrentElement = editor => {
|
59
59
|
try {
|
60
60
|
if (editor.selection) {
|
61
61
|
return Node.parent(editor, editor?.selection?.anchor?.path);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Editor, Range, Point, Element, Transforms, Node } from "slate";
|
2
2
|
import { TableUtil, createTableCell } from "../utils/table";
|
3
|
-
const NON_DELETABLE_BLOCKS = ["table-cell", "carousel-item"
|
3
|
+
const NON_DELETABLE_BLOCKS = ["table-cell", "carousel-item"];
|
4
4
|
const withTable = editor => {
|
5
5
|
const {
|
6
6
|
deleteBackward,
|