@flozy/editor 6.0.8 → 7.0.0
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 +21 -79
- package/dist/Editor/DialogWrapper.js +25 -31
- package/dist/Editor/Editor.css +16 -21
- package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
- package/dist/Editor/Elements/Button/EditorButton.js +9 -25
- 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/Providers/DataViewProvider.js +1 -1
- package/dist/Editor/Elements/Embed/Image.js +2 -2
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +14 -0
- package/dist/Editor/Elements/FreeGrid/styles.js +0 -3
- package/dist/Editor/Elements/Grid/GridItem.js +3 -2
- package/dist/Editor/Elements/Link/Link.js +43 -70
- package/dist/Editor/Elements/SimpleText/index.js +12 -7
- package/dist/Editor/Elements/SimpleText/style.js +2 -2
- package/dist/Editor/Elements/Table/Table.js +12 -12
- 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/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 +8 -9
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +13 -6
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +85 -210
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +1 -2
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +12 -16
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +9 -56
- package/dist/Editor/Toolbar/PopupTool/index.js +48 -32
- 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 +11 -3
- package/dist/Editor/common/FontLoader/FontLoader.js +42 -74
- package/dist/Editor/common/Icon.js +0 -28
- package/dist/Editor/common/ImageSelector/Options/Upload.js +1 -1
- package/dist/Editor/common/ImageSelector/Styles.js +9 -3
- package/dist/Editor/common/ImageSelector/UploadStyles.js +2 -1
- 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/ElementSettings/styles.js +1 -0
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +2 -8
- 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/Section/index.js +89 -60
- 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/textOptions.js +7 -15
- package/dist/Editor/common/Uploader.js +0 -8
- package/dist/Editor/commonStyle.js +65 -55
- package/dist/Editor/helper/deserialize/index.js +1 -1
- package/dist/Editor/helper/index.js +2 -2
- package/dist/Editor/helper/theme.js +2 -200
- package/dist/Editor/hooks/useDrag.js +11 -17
- package/dist/Editor/hooks/useEditorScroll.js +2 -1
- package/dist/Editor/hooks/useMouseMove.js +3 -9
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +9 -3
- 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 +49 -157
- package/dist/Editor/utils/button.js +14 -0
- package/dist/Editor/utils/draftToSlate.js +2 -3
- package/dist/Editor/utils/font.js +37 -40
- package/dist/Editor/utils/helper.js +20 -48
- package/dist/Editor/utils/link.js +1 -1
- package/package.json +3 -6
- 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/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
@@ -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,
|
@@ -1,26 +1,20 @@
|
|
1
|
-
import { useEffect, useState } from "react";
|
1
|
+
import { useCallback, useEffect, useState } from "react";
|
2
2
|
const useDrag = () => {
|
3
3
|
const [event, setEvent] = useState("");
|
4
|
-
|
5
|
-
addListener();
|
6
|
-
return () => {
|
7
|
-
removeListener();
|
8
|
-
};
|
9
|
-
}, []);
|
10
|
-
const onMouseDown = () => {
|
4
|
+
const onMouseDown = useCallback(() => {
|
11
5
|
setEvent("start");
|
12
|
-
};
|
13
|
-
const onMouseUp = () => {
|
6
|
+
}, []);
|
7
|
+
const onMouseUp = useCallback(() => {
|
14
8
|
setEvent("end");
|
15
|
-
};
|
16
|
-
|
9
|
+
}, []);
|
10
|
+
useEffect(() => {
|
17
11
|
document.addEventListener("pointerdown", onMouseDown);
|
18
12
|
document.addEventListener("pointerup", onMouseUp);
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
};
|
13
|
+
return () => {
|
14
|
+
document.removeEventListener("pointerdown", onMouseDown);
|
15
|
+
document.removeEventListener("pointerup", onMouseUp);
|
16
|
+
};
|
17
|
+
}, []);
|
24
18
|
return [event];
|
25
19
|
};
|
26
20
|
export default useDrag;
|
@@ -4,8 +4,9 @@ function useEditorScroll(editorWrapper = {
|
|
4
4
|
}, callback) {
|
5
5
|
useEffect(() => {
|
6
6
|
const handleScroll = () => {
|
7
|
+
console.log("Editor debug useEditorScroll ====>", editorWrapper, callback);
|
7
8
|
if (editorWrapper.current) {
|
8
|
-
callback(
|
9
|
+
callback();
|
9
10
|
}
|
10
11
|
};
|
11
12
|
const currentEditorWrapper = editorWrapper.current;
|
@@ -20,10 +20,7 @@ export const useEditorSelection = editor => {
|
|
20
20
|
export const EditorProvider = ({
|
21
21
|
editor,
|
22
22
|
theme,
|
23
|
-
children
|
24
|
-
openTheme = false,
|
25
|
-
setOpenTheme = () => {},
|
26
|
-
triggerRender
|
23
|
+
children
|
27
24
|
}) => {
|
28
25
|
const [previous, setPrevious] = useState("");
|
29
26
|
const [drop, setDrop] = useState(0);
|
@@ -102,12 +99,9 @@ export const EditorProvider = ({
|
|
102
99
|
updateDragging,
|
103
100
|
fontFamilies,
|
104
101
|
setFontFamilies,
|
105
|
-
openTheme,
|
106
|
-
setOpenTheme,
|
107
102
|
activeBreakPoint,
|
108
|
-
setActiveBreakPoint
|
109
|
-
|
110
|
-
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop, openTheme, activeBreakPoint]);
|
103
|
+
setActiveBreakPoint
|
104
|
+
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop, activeBreakPoint]);
|
111
105
|
return /*#__PURE__*/_jsx(EditorContext.Provider, {
|
112
106
|
value: otherValues,
|
113
107
|
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);
|
@@ -253,7 +253,13 @@ const withHtml = editor => {
|
|
253
253
|
return;
|
254
254
|
}
|
255
255
|
const fragment = deserialize(parsed.body);
|
256
|
-
const
|
256
|
+
const normalizeFragment = formatFragment[eltype];
|
257
|
+
if (normalizeFragment && isNonText) {
|
258
|
+
// When a non-text node is pasted into a list item, insert it into the next node.
|
259
|
+
insertAtNextNode(editor, fragment);
|
260
|
+
return;
|
261
|
+
}
|
262
|
+
const formattedFragment = normalizeFragment ? normalizeFragment(fragment) : fragment;
|
257
263
|
let is_img_table = false;
|
258
264
|
formattedFragment.map(f => {
|
259
265
|
if (f.type === "image" || f?.type?.includes("table")) {
|
@@ -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,
|
@@ -1,58 +1,181 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import {
|
4
|
-
import { useEffect, useState } from "react";
|
1
|
+
import { MenuItem, Select, useTheme } from "@mui/material";
|
2
|
+
import { fontOptions } from "../utils/font";
|
3
|
+
import { toolbarGroups } from "../Toolbar/toolbarGroups";
|
5
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
6
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
}
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
} catch (err) {
|
20
|
-
console.log(err);
|
21
|
-
}
|
22
|
-
setLoading(false);
|
23
|
-
};
|
6
|
+
const themes = [{
|
7
|
+
label: "Theme 1",
|
8
|
+
colors: ["#c90c1f", "#ff5d05"]
|
9
|
+
}, {
|
10
|
+
label: "Theme 2",
|
11
|
+
colors: ["#4c0be3", "#43f7ee"]
|
12
|
+
}, {
|
13
|
+
label: "Theme 3",
|
14
|
+
colors: ["#22f20f", "#fff705"]
|
15
|
+
}];
|
16
|
+
const allTools = toolbarGroups.flat();
|
17
|
+
function ThemeList(props) {
|
24
18
|
const {
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
19
|
+
selectedTheme,
|
20
|
+
setSelectedTheme
|
21
|
+
} = props;
|
22
|
+
const fontWeight = allTools.find(f => f.format === "fontWeight");
|
23
|
+
const fontStyles = [{
|
24
|
+
text: "Bold",
|
25
|
+
value: "bold",
|
26
|
+
styleField: "fontWeight"
|
27
|
+
}, {
|
28
|
+
text: "Italic",
|
29
|
+
value: "italic",
|
30
|
+
styleField: "fontStyle"
|
31
|
+
}
|
32
|
+
// {
|
33
|
+
// text: "Underline",
|
34
|
+
// value: "underline",
|
35
|
+
// styleField: "textDecoration",
|
36
|
+
// },
|
37
|
+
// {
|
38
|
+
// text: "Line through",
|
39
|
+
// value: "line-through",
|
40
|
+
// styleField: "textDecoration",
|
41
|
+
// },
|
42
|
+
];
|
43
|
+
|
44
|
+
const theme = useTheme();
|
45
|
+
const colorVars = theme?.vars?.colors || {};
|
46
|
+
const handleTypographyTheme = (key, value, elementType) => {
|
47
|
+
setSelectedTheme(prev => {
|
48
|
+
const newValue = {
|
49
|
+
...prev,
|
50
|
+
typography: {
|
51
|
+
...(prev.typography || {}),
|
52
|
+
[elementType]: {
|
53
|
+
...(prev?.typography?.[elementType] || {}),
|
54
|
+
[key]: value
|
55
|
+
}
|
56
|
+
}
|
57
|
+
};
|
58
|
+
if (!value) {
|
59
|
+
delete newValue?.typography?.[elementType]?.[key];
|
60
|
+
}
|
61
|
+
return newValue;
|
62
|
+
});
|
36
63
|
};
|
37
|
-
return /*#__PURE__*/
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
64
|
+
return /*#__PURE__*/_jsxs("div", {
|
65
|
+
children: [themes.map((theme, i) => {
|
66
|
+
return /*#__PURE__*/_jsxs("button", {
|
67
|
+
style: {
|
68
|
+
margin: "10px"
|
69
|
+
},
|
70
|
+
onClick: () => setSelectedTheme(prev => ({
|
71
|
+
...prev,
|
72
|
+
colors: theme.colors
|
73
|
+
})),
|
74
|
+
children: [theme.label, /*#__PURE__*/_jsx("div", {
|
75
|
+
children: theme.colors.map((c, j) => {
|
76
|
+
return /*#__PURE__*/_jsx("div", {
|
77
|
+
style: {
|
78
|
+
width: "20px",
|
79
|
+
height: "20px",
|
80
|
+
background: c,
|
81
|
+
margin: "10px"
|
82
|
+
}
|
83
|
+
}, j);
|
84
|
+
})
|
85
|
+
})]
|
86
|
+
}, i);
|
87
|
+
}), /*#__PURE__*/_jsxs("div", {
|
88
|
+
children: ["Heading 1 Font Family", /*#__PURE__*/_jsx(Select
|
89
|
+
// value={""}
|
90
|
+
, {
|
91
|
+
label: "Font Family",
|
92
|
+
onChange: e => {
|
93
|
+
handleTypographyTheme("fontFamily", e.target.value, "h1");
|
94
|
+
},
|
95
|
+
children: fontOptions.map((font, i) => {
|
96
|
+
const {
|
97
|
+
text,
|
98
|
+
value
|
99
|
+
} = font;
|
100
|
+
return /*#__PURE__*/_jsx(MenuItem, {
|
101
|
+
value: value,
|
102
|
+
children: text
|
103
|
+
}, i);
|
104
|
+
})
|
105
|
+
}), "Font Weight", /*#__PURE__*/_jsx(Select
|
106
|
+
// value={""}
|
107
|
+
, {
|
108
|
+
label: "Font Weight",
|
109
|
+
onChange: e => {
|
110
|
+
handleTypographyTheme("fontWeight", e.target.value, "h1");
|
111
|
+
},
|
112
|
+
children: fontWeight.options.map((option, i) => {
|
113
|
+
const {
|
114
|
+
text,
|
115
|
+
value
|
116
|
+
} = option;
|
117
|
+
return /*#__PURE__*/_jsx(MenuItem, {
|
118
|
+
value: value,
|
119
|
+
children: text
|
120
|
+
}, i);
|
121
|
+
})
|
122
|
+
}), /*#__PURE__*/_jsx("input", {
|
123
|
+
type: "number",
|
124
|
+
placeholder: "font size",
|
125
|
+
onChange: e => {
|
126
|
+
handleTypographyTheme("fontSize", e.target.value, "h1");
|
127
|
+
}
|
128
|
+
}), /*#__PURE__*/_jsxs("div", {
|
129
|
+
children: ["Text", /*#__PURE__*/_jsx("br", {}), "Theme color", Object.values(colorVars).map((colorVar, i) => {
|
130
|
+
return /*#__PURE__*/_jsx("button", {
|
131
|
+
style: {
|
132
|
+
width: "20px",
|
133
|
+
height: "20px",
|
134
|
+
background: colorVar,
|
135
|
+
margin: "10px",
|
136
|
+
outline: "none"
|
137
|
+
},
|
138
|
+
onClick: () => handleTypographyTheme("color", colorVar, "h1")
|
139
|
+
}, i);
|
140
|
+
}), "normal color", /*#__PURE__*/_jsx("button", {
|
141
|
+
style: {
|
142
|
+
width: "20px",
|
143
|
+
height: "20px",
|
144
|
+
background: "#ff00e1",
|
145
|
+
margin: "10px",
|
146
|
+
outline: "none"
|
147
|
+
},
|
148
|
+
onClick: () => handleTypographyTheme("color", "#ff00e1", "h1")
|
149
|
+
})]
|
150
|
+
}), /*#__PURE__*/_jsxs("div", {
|
151
|
+
children: ["Font styles", fontStyles.map((option, i) => {
|
152
|
+
const styles = selectedTheme?.typography?.h1 || {};
|
153
|
+
const {
|
154
|
+
text,
|
155
|
+
value,
|
156
|
+
styleField
|
157
|
+
} = option;
|
158
|
+
return /*#__PURE__*/_jsxs("button", {
|
159
|
+
onClick: () => {
|
160
|
+
handleTypographyTheme(styleField, styles[styleField] === value ? null : value, "h1");
|
161
|
+
},
|
162
|
+
children: [text, " ", styles[styleField] === value]
|
163
|
+
}, i);
|
164
|
+
})]
|
165
|
+
}), /*#__PURE__*/_jsx("input", {
|
166
|
+
type: "number",
|
167
|
+
placeholder: "Margin text Spacing",
|
168
|
+
onChange: e => {
|
169
|
+
handleTypographyTheme("letterSpacing", e.target.value, "h1");
|
170
|
+
}
|
171
|
+
}), /*#__PURE__*/_jsx("input", {
|
172
|
+
type: "number",
|
173
|
+
placeholder: "Line spacing",
|
174
|
+
onChange: e => {
|
175
|
+
handleTypographyTheme("lineHeight", e.target.value, "h1");
|
176
|
+
}
|
54
177
|
})]
|
55
|
-
})
|
178
|
+
})]
|
56
179
|
});
|
57
180
|
}
|
58
181
|
export default ThemeList;
|