@flozy/editor 1.5.9 → 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Editor/CommonEditor.js +195 -94
- package/dist/Editor/DialogWrapper.js +3 -0
- package/dist/Editor/Editor.css +211 -50
- package/dist/Editor/Elements/Accordion/Accordion.js +0 -1
- package/dist/Editor/Elements/Accordion/AccordionButton.js +13 -12
- package/dist/Editor/Elements/Accordion/AccordionSummary.js +0 -1
- package/dist/Editor/Elements/AppHeader/AppHeader.js +136 -133
- package/dist/Editor/Elements/AppHeader/AppHeaderPopup.js +4 -2
- package/dist/Editor/Elements/Button/ButtonToolIcon.js +10 -9
- package/dist/Editor/Elements/Button/EditorButton.js +8 -24
- package/dist/Editor/Elements/Carousel/Carousel.js +47 -28
- package/dist/Editor/Elements/Carousel/CarouselButton.js +7 -8
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +133 -0
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +49 -58
- package/dist/Editor/Elements/Color Picker/Styles.js +51 -0
- package/dist/Editor/Elements/Color Picker/defaultColors.js +1 -1
- package/dist/Editor/Elements/Embed/Embed.js +35 -126
- package/dist/Editor/Elements/Embed/Image.js +24 -7
- package/dist/Editor/Elements/Embed/Video.js +21 -6
- package/dist/Editor/Elements/Emoji/EmojiButton.js +73 -0
- package/dist/Editor/Elements/Emoji/EmojiPicker.js +0 -0
- package/dist/Editor/Elements/Form/Form.js +24 -13
- package/dist/Editor/Elements/Form/FormButton.js +11 -9
- package/dist/Editor/Elements/Form/FormElements/FormText.js +4 -2
- package/dist/Editor/Elements/Form/FormElements/FormTextArea.js +3 -2
- package/dist/Editor/Elements/Form/FormField.js +7 -1
- package/dist/Editor/Elements/Grid/Grid.js +143 -47
- package/dist/Editor/Elements/Grid/GridButton.js +52 -29
- package/dist/Editor/Elements/Grid/GridItem.js +32 -21
- package/dist/Editor/Elements/Grid/Styles.js +11 -0
- package/dist/Editor/Elements/InlineIcon/InlineIcon.js +0 -1
- package/dist/Editor/Elements/List/CheckList.js +57 -0
- package/dist/Editor/Elements/List/CheckListButton.js +24 -0
- package/dist/Editor/Elements/NewLine/NewLineButton.js +14 -14
- package/dist/Editor/Elements/PageSettings/PageSettings.js +4 -2
- package/dist/Editor/Elements/PageSettings/PageSettingsButton.js +17 -62
- package/dist/Editor/Elements/PageSettings/PageSettingsPopup.js +1 -1
- package/dist/Editor/Elements/Signature/Signature.js +9 -3
- package/dist/Editor/Elements/Signature/SignatureButton.js +10 -9
- package/dist/Editor/Elements/Signature/SignaturePopup.js +42 -6
- package/dist/Editor/Elements/SimpleText.js +62 -0
- package/dist/Editor/Elements/Table/Styles.js +66 -0
- package/dist/Editor/Elements/Table/Table.js +33 -16
- package/dist/Editor/Elements/Table/TableCell.js +54 -24
- package/dist/Editor/Elements/Table/TableSelector.js +13 -15
- package/dist/Editor/Elements/Table/table.css +0 -10
- package/dist/Editor/Elements/TopBanner/Styles.js +33 -0
- package/dist/Editor/Elements/TopBanner/TopBanner.js +106 -0
- package/dist/Editor/Elements/TopBanner/TopBannerButton.js +47 -0
- package/dist/Editor/Styles/EditorStyles.js +50 -0
- package/dist/Editor/Toolbar/FormatTools/Autocomplete.js +0 -2
- package/dist/Editor/Toolbar/FormatTools/Dropdown.js +8 -3
- package/dist/Editor/Toolbar/FormatTools/FontFamilyDropdown.js +63 -0
- package/dist/Editor/Toolbar/FormatTools/FontSize.js +112 -0
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +13 -3
- package/dist/Editor/Toolbar/FormatTools/index.js +4 -1
- package/dist/Editor/Toolbar/Mini/MiniToolbar.js +101 -0
- package/dist/Editor/Toolbar/Mini/Options/Options.js +17 -0
- package/dist/Editor/Toolbar/Mini/Styles.js +30 -0
- package/dist/Editor/Toolbar/PopupTool/AddElements.js +32 -0
- package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +115 -0
- package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +65 -0
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +160 -6
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +263 -80
- package/dist/Editor/Toolbar/PopupTool/index.js +50 -85
- package/dist/Editor/Toolbar/Toolbar.js +189 -129
- package/dist/Editor/Toolbar/styles.css +136 -18
- package/dist/Editor/Toolbar/toolbarGroups.js +94 -34
- package/dist/Editor/assets/svg/AddElementIcon.js +29 -0
- package/dist/Editor/assets/svg/AddTemplateIcon.js +29 -0
- package/dist/Editor/assets/svg/TextIcon.js +29 -0
- package/dist/Editor/common/Icon.js +54 -5
- package/dist/Editor/common/ImageList.js +75 -0
- package/dist/Editor/common/ImageSelector/ImageSelector.js +117 -0
- package/dist/Editor/common/ImageSelector/Options/AddLink.js +44 -0
- package/dist/Editor/common/ImageSelector/Options/ChooseAssets.js +39 -0
- package/dist/Editor/common/ImageSelector/Options/Upload.js +30 -0
- package/dist/Editor/common/ImageSelector/Styles.js +41 -0
- package/dist/Editor/common/ImageUploader.js +94 -0
- package/dist/Editor/common/MentionsPopup/ElementsListCard.js +66 -0
- package/dist/Editor/common/MentionsPopup/MentionsListCard.js +70 -0
- package/dist/Editor/common/MentionsPopup/Styles.js +68 -0
- package/dist/Editor/common/MentionsPopup/index.js +129 -0
- package/dist/Editor/common/Shorthands/elements.js +191 -0
- package/dist/Editor/common/Shorthands/index.js +7 -0
- package/dist/Editor/common/Shorthands/mentions.js +8 -0
- package/dist/Editor/common/StyleBuilder/appHeaderStyle.js +5 -5
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +1 -1
- package/dist/Editor/common/StyleBuilder/embedImageStyle.js +15 -2
- package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +8 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/alignment.js +2 -3
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +23 -35
- package/dist/Editor/common/StyleBuilder/fieldTypes/buttonLink.js +3 -20
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +95 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +14 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/index.js +3 -1
- package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +0 -1
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +3 -2
- package/dist/Editor/common/StyleBuilder/index.js +0 -1
- package/dist/Editor/common/StyleBuilder/tableStyle.js +9 -5
- package/dist/Editor/common/ToolbarIcon.js +43 -0
- package/dist/Editor/common/Uploader.js +35 -61
- package/dist/Editor/common/iconslist.js +46 -1
- package/dist/Editor/helper/index.js +0 -1
- package/dist/Editor/hooks/useDrag.js +2 -2
- package/dist/Editor/hooks/useMentions.js +104 -17
- package/dist/Editor/hooks/useMouseMove.js +53 -0
- package/dist/Editor/hooks/useScroll.js +26 -0
- package/dist/Editor/plugins/withEmbeds.js +12 -0
- package/dist/Editor/service/fileupload.js +2 -2
- package/dist/Editor/utils/SlateUtilityFunctions.js +61 -9
- package/dist/Editor/utils/button.js +2 -1
- package/dist/Editor/utils/carousel.js +5 -2
- package/dist/Editor/utils/carouselItem.js +2 -2
- package/dist/Editor/utils/customHooks/useResize.js +2 -3
- package/dist/Editor/utils/customHooks/useTableResize.js +2 -1
- package/dist/Editor/utils/embed.js +25 -8
- package/dist/Editor/utils/emoji.js +8 -0
- package/dist/Editor/utils/events.js +49 -12
- package/dist/Editor/utils/form.js +3 -9
- package/dist/Editor/utils/formfield.js +2 -1
- package/dist/Editor/utils/grid.js +44 -8
- package/dist/Editor/utils/gridItem.js +4 -3
- package/dist/Editor/utils/insertNewLine.js +12 -0
- package/dist/Editor/utils/mentions.js +14 -10
- package/dist/Editor/utils/pageSettings.js +67 -0
- package/dist/Editor/utils/signature.js +6 -8
- package/dist/Editor/utils/table.js +79 -18
- package/dist/Editor/utils/topBanner.js +58 -0
- package/package.json +6 -2
- package/dist/Editor/common/MentionsPopup.js +0 -56
@@ -0,0 +1,65 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import { Grid, Typography, IconButton, Tooltip } from "@mui/material";
|
3
|
+
import CloseIcon from "@mui/icons-material/Close";
|
4
|
+
import OpenInFullIcon from "@mui/icons-material/OpenInFull";
|
5
|
+
import CloseFullscreenIcon from "@mui/icons-material/CloseFullscreen";
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
7
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
8
|
+
const PopperHeader = props => {
|
9
|
+
const {
|
10
|
+
title,
|
11
|
+
classes,
|
12
|
+
onClose,
|
13
|
+
needFullscreen,
|
14
|
+
fullScreen,
|
15
|
+
toggleFullscreen
|
16
|
+
} = props;
|
17
|
+
return /*#__PURE__*/_jsx(Grid, {
|
18
|
+
container: true,
|
19
|
+
padding: 2,
|
20
|
+
children: /*#__PURE__*/_jsxs(Grid, {
|
21
|
+
item: true,
|
22
|
+
xs: 12,
|
23
|
+
style: {
|
24
|
+
display: "flex",
|
25
|
+
borderBottom: "1px solid #DCE4EC"
|
26
|
+
},
|
27
|
+
justifyContent: "space-between",
|
28
|
+
alignItems: "center",
|
29
|
+
className: "textSettingHeader",
|
30
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
31
|
+
color: "primary",
|
32
|
+
sx: {
|
33
|
+
fontSize: "16px",
|
34
|
+
fontWeight: "700",
|
35
|
+
color: "#000"
|
36
|
+
},
|
37
|
+
children: title
|
38
|
+
}), /*#__PURE__*/_jsxs(Grid, {
|
39
|
+
sx: classes.textFormatLabel,
|
40
|
+
justifyContent: "end",
|
41
|
+
children: [needFullscreen ? /*#__PURE__*/_jsx(Tooltip, {
|
42
|
+
title: "Toggle Fullscreen",
|
43
|
+
arrow: true,
|
44
|
+
children: /*#__PURE__*/_jsx(IconButton, {
|
45
|
+
style: {
|
46
|
+
marginRight: "8px"
|
47
|
+
},
|
48
|
+
className: "close-popupbtn",
|
49
|
+
onClick: toggleFullscreen,
|
50
|
+
children: fullScreen ? /*#__PURE__*/_jsx(CloseFullscreenIcon, {}) : /*#__PURE__*/_jsx(OpenInFullIcon, {})
|
51
|
+
})
|
52
|
+
}) : null, /*#__PURE__*/_jsx(Tooltip, {
|
53
|
+
title: "Close",
|
54
|
+
arrow: true,
|
55
|
+
children: /*#__PURE__*/_jsx(IconButton, {
|
56
|
+
className: "close-popupbtn",
|
57
|
+
onClick: onClose,
|
58
|
+
children: /*#__PURE__*/_jsx(CloseIcon, {})
|
59
|
+
})
|
60
|
+
})]
|
61
|
+
})]
|
62
|
+
})
|
63
|
+
});
|
64
|
+
};
|
65
|
+
export default PopperHeader;
|
@@ -1,14 +1,29 @@
|
|
1
1
|
const usePopupStyle = () => ({
|
2
2
|
popupWrapper: {
|
3
3
|
boxShadow: "0px 4px 10px 0px rgba(0, 0, 0, 0.16)",
|
4
|
-
zIndex:
|
4
|
+
zIndex: 1002,
|
5
|
+
marginBottom: "12px !important",
|
6
|
+
border: "1px solid #E0E0E0",
|
7
|
+
borderRadius: "10px",
|
8
|
+
"&.fullscreen": {
|
9
|
+
marginBottom: "0px !important",
|
10
|
+
"& .papper-wrpr": {
|
11
|
+
boxShadow: "none"
|
12
|
+
}
|
13
|
+
}
|
5
14
|
},
|
6
15
|
textFormatWrapper: {
|
7
16
|
padding: "0px 16px 16px 16px",
|
8
|
-
width: "
|
9
|
-
|
17
|
+
width: "370px",
|
18
|
+
// 30% of window height
|
19
|
+
maxHeight: `${window.innerHeight * 0.45}px`,
|
10
20
|
overflow: "auto",
|
11
|
-
|
21
|
+
"&.templates": {
|
22
|
+
width: "500px",
|
23
|
+
"&.fullscreen": {
|
24
|
+
width: "100%"
|
25
|
+
}
|
26
|
+
},
|
12
27
|
"& .textSettingHeader": {
|
13
28
|
borderBottom: "1px solid #DCE4EC",
|
14
29
|
padding: "8px 0px 5px",
|
@@ -19,6 +34,35 @@ const usePopupStyle = () => ({
|
|
19
34
|
},
|
20
35
|
"& .MuiOutlinedInput-root": {
|
21
36
|
boxShadow: "0px 4px 18px 0px rgba(0, 0, 0, 0.05)"
|
37
|
+
},
|
38
|
+
"& .mini": {
|
39
|
+
borderRadius: "0px",
|
40
|
+
width: "100%",
|
41
|
+
justifyContent: "start",
|
42
|
+
"& svg": {
|
43
|
+
width: "24px",
|
44
|
+
height: "24px",
|
45
|
+
marginRight: "8px"
|
46
|
+
},
|
47
|
+
"& span": {
|
48
|
+
fontSize: "14px",
|
49
|
+
color: "#64748B"
|
50
|
+
}
|
51
|
+
},
|
52
|
+
// for command list style
|
53
|
+
"& .cmd": {
|
54
|
+
borderRadius: "0px",
|
55
|
+
width: "100%",
|
56
|
+
justifyContent: "start",
|
57
|
+
"& svg": {
|
58
|
+
width: "24px",
|
59
|
+
height: "24px",
|
60
|
+
marginRight: "8px"
|
61
|
+
},
|
62
|
+
"& span": {
|
63
|
+
fontSize: "14px",
|
64
|
+
color: "#64748B"
|
65
|
+
}
|
22
66
|
}
|
23
67
|
},
|
24
68
|
textFormatLabel: {
|
@@ -38,12 +82,122 @@ const usePopupStyle = () => ({
|
|
38
82
|
alignItems: "center",
|
39
83
|
marginBottom: "8px",
|
40
84
|
border: "1px solid #ECECEC",
|
41
|
-
padding: "0px 8px",
|
42
85
|
borderRadius: "8px",
|
43
86
|
boxShadow: "0px 4px 18px 0px rgba(0, 0, 0, 0.05)"
|
44
87
|
},
|
45
|
-
|
88
|
+
textFormatColorWrpr: {
|
89
|
+
display: "flex",
|
90
|
+
alignItems: "center",
|
46
91
|
marginBottom: "8px"
|
92
|
+
},
|
93
|
+
textFormatCG: {},
|
94
|
+
evenSpace: {
|
95
|
+
display: "flex",
|
96
|
+
flexDirection: "row",
|
97
|
+
flexWrap: "wrap",
|
98
|
+
"& button": {
|
99
|
+
marginRight: "8px",
|
100
|
+
marginBottom: "8px"
|
101
|
+
},
|
102
|
+
"&.typo-icons": {
|
103
|
+
"& button": {
|
104
|
+
width: "36px",
|
105
|
+
height: "36px"
|
106
|
+
}
|
107
|
+
},
|
108
|
+
"&.text-decorations-wrpr": {
|
109
|
+
"& button": {
|
110
|
+
// width: "140px",
|
111
|
+
}
|
112
|
+
}
|
113
|
+
},
|
114
|
+
typoLabel: {
|
115
|
+
fontSize: "14px",
|
116
|
+
marginBottom: "5px",
|
117
|
+
paddingLeft: "5px",
|
118
|
+
fontWeight: 500
|
119
|
+
},
|
120
|
+
templateCard: {
|
121
|
+
borderRadius: "10px",
|
122
|
+
boxShadow: "none",
|
123
|
+
cursor: "pointer"
|
124
|
+
},
|
125
|
+
templateCardMedia: {
|
126
|
+
width: "100%",
|
127
|
+
height: "210px",
|
128
|
+
backgroundPosition: "left top",
|
129
|
+
backgroundSize: "100% auto",
|
130
|
+
borderRadius: "10px",
|
131
|
+
boxShadow: "0px 1px 3px 3px rgba(0,0,0,0.12)",
|
132
|
+
"&.fullscreen": {
|
133
|
+
height: "280px"
|
134
|
+
}
|
135
|
+
},
|
136
|
+
templateCardMediaWrpr: {
|
137
|
+
padding: "8px",
|
138
|
+
border: "1px solid rgba(0, 0, 0, 0.1)",
|
139
|
+
borderRadius: "10px",
|
140
|
+
background: "#FEFEFE",
|
141
|
+
overflow: "hidden",
|
142
|
+
"&:hover": {
|
143
|
+
border: "1px solid #2563EB"
|
144
|
+
}
|
145
|
+
},
|
146
|
+
templateCardsWrpr: {
|
147
|
+
height: "100%",
|
148
|
+
overflow: "auto",
|
149
|
+
margin: "12px 0px",
|
150
|
+
paddingRight: "8px",
|
151
|
+
"&.fullscreen": {
|
152
|
+
height: `${window.innerHeight - 300}px`
|
153
|
+
}
|
154
|
+
},
|
155
|
+
pageWidthBtn: {
|
156
|
+
color: "#64748B",
|
157
|
+
marginTop: "8px",
|
158
|
+
textTransform: "capitalize",
|
159
|
+
"&.active": {
|
160
|
+
background: "rgba(45,66,91,0.1)"
|
161
|
+
}
|
162
|
+
},
|
163
|
+
btnGroup: {
|
164
|
+
backgroundColor: "#fff",
|
165
|
+
"& button": {
|
166
|
+
marginRight: "0px",
|
167
|
+
color: "#64748B",
|
168
|
+
border: "1px solid #ECECEC",
|
169
|
+
textTransform: "capitalize",
|
170
|
+
"&.active": {
|
171
|
+
backgroundColor: "#ECECEC"
|
172
|
+
},
|
173
|
+
"&.no-hover": {
|
174
|
+
border: "1px solid #ECECEC"
|
175
|
+
}
|
176
|
+
}
|
177
|
+
},
|
178
|
+
allColor: {},
|
179
|
+
allColorInner: {
|
180
|
+
"& .buttonsWrpr": {
|
181
|
+
paddingLeft: "8px",
|
182
|
+
"& button": {
|
183
|
+
border: "1px solid #ccc",
|
184
|
+
margin: "4px",
|
185
|
+
width: "24px",
|
186
|
+
height: "24px",
|
187
|
+
"&.active": {
|
188
|
+
"&:before": {
|
189
|
+
content: '" "',
|
190
|
+
position: "absolute",
|
191
|
+
top: "-5px",
|
192
|
+
left: "-5px",
|
193
|
+
width: "calc(100% + 4px)",
|
194
|
+
height: "calc(100% + 4px)",
|
195
|
+
border: "3px solid blue",
|
196
|
+
borderRadius: "50%"
|
197
|
+
}
|
198
|
+
}
|
199
|
+
}
|
200
|
+
}
|
47
201
|
}
|
48
202
|
});
|
49
203
|
export default usePopupStyle;
|
@@ -1,20 +1,88 @@
|
|
1
|
-
import React from "react";
|
2
|
-
import { Grid, Typography } from "@mui/material";
|
3
|
-
import
|
4
|
-
import
|
1
|
+
import React, { useState } from "react";
|
2
|
+
import { Button, ButtonGroup, Grid, Popover, Typography } from "@mui/material";
|
3
|
+
import WidthFullIcon from "@mui/icons-material/WidthFull";
|
4
|
+
import WidthNormalIcon from "@mui/icons-material/WidthNormal";
|
5
|
+
import ArrowDropDownIcon from "@mui/icons-material/ArrowDropDown";
|
6
|
+
import { Dropdown, MarkButton, TextSize, BlockButton, AccordionButton } from "../FormatTools";
|
7
|
+
import { toolbarGroups } from "../toolbarGroups";
|
5
8
|
import ColorPicker from "../../Elements/Color Picker/ColorPicker";
|
6
|
-
import { activeMark } from "../../utils/SlateUtilityFunctions";
|
9
|
+
import { activeMark, isBlockActive, toggleBlock, getBlockActive, upateBlockActive } from "../../utils/SlateUtilityFunctions";
|
10
|
+
import LinkButton from "../../Elements/Link/LinkButton";
|
11
|
+
import { getPageSettings, updatePageSettings } from "../../utils/pageSettings";
|
12
|
+
import { AllColors } from "../../Elements/Color Picker/ColorButtons";
|
7
13
|
import { jsx as _jsx } from "react/jsx-runtime";
|
8
14
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
9
15
|
const allTools = toolbarGroups.flat();
|
16
|
+
const ButtonComp = {
|
17
|
+
AccordionButton: AccordionButton
|
18
|
+
};
|
10
19
|
const TextFormat = props => {
|
11
20
|
const {
|
12
21
|
classes,
|
13
22
|
editor
|
14
23
|
} = props;
|
24
|
+
const [anchorEl, setAnchorEl] = useState(null);
|
25
|
+
const [type, setType] = useState(null);
|
26
|
+
const open = Boolean(anchorEl);
|
15
27
|
const fontFamily = allTools.find(f => f.format === "fontFamily");
|
28
|
+
const fontWeight = allTools.find(f => f.format === "fontWeight");
|
16
29
|
const fontStyle = allTools.filter(f => f.type === "mark");
|
17
30
|
const fontAlign = allTools.filter(f => f.format?.indexOf("align") >= 0);
|
31
|
+
const link = allTools.find(f => f.format?.indexOf("link") >= 0);
|
32
|
+
const lists = allTools.filter(f => f.group?.indexOf("list") >= 0);
|
33
|
+
const typo = allTools.filter(f => f.group?.indexOf("typography") >= 0);
|
34
|
+
const {
|
35
|
+
pageProps
|
36
|
+
} = getPageSettings(editor)?.element || {};
|
37
|
+
const {
|
38
|
+
pageWidth
|
39
|
+
} = pageProps;
|
40
|
+
const {
|
41
|
+
isActive: isBlockQuoteActive,
|
42
|
+
props: bqProps
|
43
|
+
} = getBlockActive(editor, "blockquote");
|
44
|
+
const {
|
45
|
+
color: bqColor,
|
46
|
+
bgColor: bqBgColor
|
47
|
+
} = bqProps || {
|
48
|
+
color: "",
|
49
|
+
bgColor: ""
|
50
|
+
};
|
51
|
+
const handlePageWidth = width => () => {
|
52
|
+
updatePageSettings(editor, {
|
53
|
+
...pageProps,
|
54
|
+
pageWidth: width
|
55
|
+
});
|
56
|
+
};
|
57
|
+
const handleColorPicker = type => e => {
|
58
|
+
setType(type);
|
59
|
+
setAnchorEl(e.currentTarget);
|
60
|
+
};
|
61
|
+
const updateBlockQuote = attr => {
|
62
|
+
const upAttr = {
|
63
|
+
...(bqProps || {}),
|
64
|
+
...attr
|
65
|
+
};
|
66
|
+
delete upAttr.children;
|
67
|
+
delete upAttr.type;
|
68
|
+
if (isBlockQuoteActive && (upAttr.color || upAttr.bgColor)) {
|
69
|
+
upateBlockActive(editor, "blockquote", upAttr);
|
70
|
+
} else {
|
71
|
+
toggleBlock(editor, "blockquote", editor.selection, upAttr);
|
72
|
+
}
|
73
|
+
};
|
74
|
+
const onSelectColor = color => () => {
|
75
|
+
const attr = {
|
76
|
+
[type]: color
|
77
|
+
};
|
78
|
+
updateBlockQuote(attr);
|
79
|
+
};
|
80
|
+
const handleQuote = attr => () => {
|
81
|
+
updateBlockQuote(attr);
|
82
|
+
};
|
83
|
+
const onClosePicker = () => {
|
84
|
+
setAnchorEl(null);
|
85
|
+
};
|
18
86
|
return /*#__PURE__*/_jsxs(Grid, {
|
19
87
|
container: true,
|
20
88
|
sx: classes.textFormatWrapper,
|
@@ -24,11 +92,7 @@ const TextFormat = props => {
|
|
24
92
|
children: [/*#__PURE__*/_jsx(Typography, {
|
25
93
|
variant: "body1",
|
26
94
|
color: "primary",
|
27
|
-
|
28
|
-
fontSize: "14px",
|
29
|
-
fontWeight: 500,
|
30
|
-
marginBottom: 5
|
31
|
-
},
|
95
|
+
sx: classes.typoLabel,
|
32
96
|
children: "Font Family"
|
33
97
|
}), /*#__PURE__*/_jsx(Grid, {
|
34
98
|
item: true,
|
@@ -39,67 +103,96 @@ const TextFormat = props => {
|
|
39
103
|
editor: editor
|
40
104
|
})
|
41
105
|
})]
|
42
|
-
}), /*#__PURE__*/
|
106
|
+
}), /*#__PURE__*/_jsxs(Grid, {
|
107
|
+
container: true,
|
108
|
+
spacing: 2,
|
109
|
+
children: [/*#__PURE__*/_jsxs(Grid, {
|
110
|
+
item: true,
|
111
|
+
xs: 6,
|
112
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
113
|
+
variant: "body1",
|
114
|
+
color: "primary",
|
115
|
+
sx: classes.typoLabel,
|
116
|
+
children: "Font Weight"
|
117
|
+
}), /*#__PURE__*/_jsx(Grid, {
|
118
|
+
item: true,
|
119
|
+
xs: 12,
|
120
|
+
sx: classes.textFormatField,
|
121
|
+
children: /*#__PURE__*/_jsx(Dropdown, {
|
122
|
+
...fontWeight,
|
123
|
+
editor: editor,
|
124
|
+
width: "100%"
|
125
|
+
})
|
126
|
+
})]
|
127
|
+
}), /*#__PURE__*/_jsxs(Grid, {
|
128
|
+
item: true,
|
129
|
+
xs: 6,
|
130
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
131
|
+
variant: "body1",
|
132
|
+
color: "primary",
|
133
|
+
sx: classes.typoLabel,
|
134
|
+
children: "Font Size"
|
135
|
+
}), /*#__PURE__*/_jsx(Grid, {
|
136
|
+
item: true,
|
137
|
+
xs: 12,
|
138
|
+
sx: classes.textFormatCG,
|
139
|
+
children: /*#__PURE__*/_jsx(TextSize, {
|
140
|
+
format: "fontSize",
|
141
|
+
activeMark: activeMark,
|
142
|
+
editor: editor,
|
143
|
+
fullWidth: true
|
144
|
+
})
|
145
|
+
})]
|
146
|
+
})]
|
147
|
+
}), /*#__PURE__*/_jsxs(Grid, {
|
43
148
|
item: true,
|
44
149
|
xs: 12,
|
45
|
-
sx:
|
46
|
-
|
47
|
-
},
|
48
|
-
children: /*#__PURE__*/_jsx(Typography, {
|
150
|
+
sx: classes.textFormatField,
|
151
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
49
152
|
variant: "body1",
|
50
153
|
color: "primary",
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
}), /*#__PURE__*/_jsx(Grid, {
|
59
|
-
item: true,
|
60
|
-
xs: 12,
|
61
|
-
sx: classes.textFormatCG,
|
62
|
-
children: fontStyle?.map((m, i) => {
|
63
|
-
return /*#__PURE__*/_jsx(MarkButton, {
|
154
|
+
sx: classes.typoLabel,
|
155
|
+
children: "Text Color"
|
156
|
+
}), /*#__PURE__*/_jsx(Grid, {
|
157
|
+
sx: classes.textFormatColorWrpr,
|
158
|
+
children: /*#__PURE__*/_jsx(ColorPicker, {
|
159
|
+
format: "color",
|
160
|
+
activeMark: activeMark,
|
64
161
|
editor: editor,
|
65
|
-
|
66
|
-
|
67
|
-
|
162
|
+
showHex: false,
|
163
|
+
rounded: true
|
164
|
+
}, "11_cc")
|
165
|
+
})]
|
68
166
|
}), /*#__PURE__*/_jsxs(Grid, {
|
69
167
|
item: true,
|
70
|
-
xs:
|
168
|
+
xs: 12,
|
71
169
|
sx: classes.textFormatField,
|
72
170
|
children: [/*#__PURE__*/_jsx(Typography, {
|
73
171
|
variant: "body1",
|
74
172
|
color: "primary",
|
75
|
-
|
76
|
-
|
77
|
-
fontWeight: 500,
|
78
|
-
marginBottom: 5
|
79
|
-
},
|
80
|
-
children: "Font Size"
|
173
|
+
sx: classes.typoLabel,
|
174
|
+
children: "Text Background Color"
|
81
175
|
}), /*#__PURE__*/_jsx(Grid, {
|
82
176
|
item: true,
|
83
|
-
xs:
|
84
|
-
sx: classes.
|
85
|
-
children: /*#__PURE__*/_jsx(
|
86
|
-
format: "
|
177
|
+
xs: 12,
|
178
|
+
sx: classes.textFormatColorWrpr,
|
179
|
+
children: /*#__PURE__*/_jsx(ColorPicker, {
|
180
|
+
format: "bgColor",
|
87
181
|
activeMark: activeMark,
|
88
|
-
editor: editor
|
89
|
-
|
182
|
+
editor: editor,
|
183
|
+
showHex: false,
|
184
|
+
rounded: true,
|
185
|
+
classes: classes
|
186
|
+
}, "12_cc")
|
90
187
|
})]
|
91
188
|
}), /*#__PURE__*/_jsxs(Grid, {
|
92
189
|
item: true,
|
93
|
-
xs:
|
190
|
+
xs: 6,
|
94
191
|
sx: classes.textFormatField,
|
95
192
|
children: [/*#__PURE__*/_jsx(Typography, {
|
96
193
|
variant: "body1",
|
97
194
|
color: "primary",
|
98
|
-
|
99
|
-
fontSize: "14px",
|
100
|
-
fontWeight: 500,
|
101
|
-
marginBottom: 5
|
102
|
-
},
|
195
|
+
sx: classes.typoLabel,
|
103
196
|
children: "Text Alignment"
|
104
197
|
}), /*#__PURE__*/_jsx(Grid, {
|
105
198
|
item: true,
|
@@ -114,52 +207,142 @@ const TextFormat = props => {
|
|
114
207
|
})]
|
115
208
|
}), /*#__PURE__*/_jsxs(Grid, {
|
116
209
|
item: true,
|
117
|
-
xs:
|
210
|
+
xs: 6,
|
118
211
|
sx: classes.textFormatField,
|
119
212
|
children: [/*#__PURE__*/_jsx(Typography, {
|
120
213
|
variant: "body1",
|
121
214
|
color: "primary",
|
122
|
-
|
123
|
-
|
124
|
-
fontWeight: 500,
|
125
|
-
marginBottom: 5
|
126
|
-
},
|
127
|
-
children: "Text Color"
|
215
|
+
sx: classes.typoLabel,
|
216
|
+
children: "Lists"
|
128
217
|
}), /*#__PURE__*/_jsx(Grid, {
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
218
|
+
item: true,
|
219
|
+
xs: 12,
|
220
|
+
sx: classes.textFormatCG,
|
221
|
+
children: lists?.map((m, i) => {
|
222
|
+
const Comp = ButtonComp[m?.component] || BlockButton;
|
223
|
+
return /*#__PURE__*/_jsx(Comp, {
|
224
|
+
editor: editor,
|
225
|
+
...m
|
226
|
+
}, `pptool_block_${i}_${m.id}`);
|
136
227
|
})
|
137
228
|
})]
|
138
229
|
}), /*#__PURE__*/_jsxs(Grid, {
|
139
230
|
item: true,
|
140
231
|
xs: 12,
|
141
|
-
sx: classes.textFormatField,
|
142
232
|
children: [/*#__PURE__*/_jsx(Typography, {
|
143
233
|
variant: "body1",
|
144
234
|
color: "primary",
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
marginBottom: 5
|
149
|
-
},
|
150
|
-
children: "Background Color"
|
151
|
-
}), /*#__PURE__*/_jsx(Grid, {
|
235
|
+
sx: classes.typoLabel,
|
236
|
+
children: "Typography"
|
237
|
+
}), /*#__PURE__*/_jsxs(Grid, {
|
152
238
|
item: true,
|
153
239
|
xs: 12,
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
})
|
240
|
+
className: "typo-icons",
|
241
|
+
sx: classes.evenSpace,
|
242
|
+
children: [typo?.map((m, i) => {
|
243
|
+
return /*#__PURE__*/_jsx(BlockButton, {
|
244
|
+
editor: editor,
|
245
|
+
...m
|
246
|
+
}, `pptool_mark_${i}_${m.id}`);
|
247
|
+
}), fontStyle?.map((m, i) => {
|
248
|
+
return /*#__PURE__*/_jsx(MarkButton, {
|
249
|
+
editor: editor,
|
250
|
+
...m
|
251
|
+
}, `pptool_mark_${i}_${m.id}`);
|
252
|
+
}), /*#__PURE__*/_jsx(LinkButton, {
|
253
|
+
active: isBlockActive(editor, link.format),
|
254
|
+
editor: editor
|
255
|
+
}, link.id)]
|
256
|
+
})]
|
257
|
+
}), /*#__PURE__*/_jsx(Grid, {
|
258
|
+
item: true,
|
259
|
+
xs: 12,
|
260
|
+
sx: classes.evenSpace,
|
261
|
+
style: {
|
262
|
+
justifyContent: "space-between"
|
263
|
+
},
|
264
|
+
children: /*#__PURE__*/_jsx(Typography, {
|
265
|
+
variant: "body1",
|
266
|
+
color: "primary",
|
267
|
+
sx: classes.typoLabel,
|
268
|
+
children: "Decorations"
|
269
|
+
})
|
270
|
+
}), /*#__PURE__*/_jsxs(Grid, {
|
271
|
+
item: true,
|
272
|
+
xs: 12,
|
273
|
+
sx: classes.evenSpace,
|
274
|
+
style: {
|
275
|
+
justifyContent: "space-between"
|
276
|
+
},
|
277
|
+
className: "text-decorations-wrpr",
|
278
|
+
children: [/*#__PURE__*/_jsxs(ButtonGroup, {
|
279
|
+
sx: classes.btnGroup,
|
280
|
+
children: [/*#__PURE__*/_jsx(Button, {
|
281
|
+
className: `no-hover ${bqBgColor ? "active" : ""}`,
|
282
|
+
onClick: handleQuote({
|
283
|
+
bgColor: !bqBgColor ? "rgb(227, 236, 255)" : null
|
284
|
+
}),
|
285
|
+
style: {
|
286
|
+
background: bqBgColor
|
287
|
+
},
|
288
|
+
children: "Colorbox"
|
289
|
+
}), /*#__PURE__*/_jsx(Button, {
|
290
|
+
onClick: handleColorPicker("bgColor"),
|
291
|
+
children: /*#__PURE__*/_jsx(ArrowDropDownIcon, {})
|
292
|
+
})]
|
293
|
+
}), /*#__PURE__*/_jsxs(ButtonGroup, {
|
294
|
+
sx: classes.btnGroup,
|
295
|
+
children: [/*#__PURE__*/_jsx(Button, {
|
296
|
+
className: `no-hover ${bqColor ? "active" : ""}`,
|
297
|
+
onClick: handleQuote({
|
298
|
+
color: !bqColor ? "rgb(47, 94, 188)" : null
|
299
|
+
}),
|
300
|
+
children: /*#__PURE__*/_jsx("span", {
|
301
|
+
style: {
|
302
|
+
borderLeft: `3px solid ${bqColor || "rgb(47, 94, 188)"}`,
|
303
|
+
paddingLeft: "12px"
|
304
|
+
},
|
305
|
+
children: "Quote"
|
306
|
+
})
|
307
|
+
}), /*#__PURE__*/_jsx(Button, {
|
308
|
+
onClick: handleColorPicker("color"),
|
309
|
+
children: /*#__PURE__*/_jsx(ArrowDropDownIcon, {})
|
310
|
+
})]
|
311
|
+
}), /*#__PURE__*/_jsx(Button, {
|
312
|
+
onClick: handlePageWidth("fixed"),
|
313
|
+
startIcon: /*#__PURE__*/_jsx(WidthNormalIcon, {}),
|
314
|
+
sx: classes.pageWidthBtn,
|
315
|
+
className: pageWidth === "fixed" || !pageWidth ? "active" : "",
|
316
|
+
style: {
|
317
|
+
width: "45%"
|
318
|
+
},
|
319
|
+
children: "Centered"
|
320
|
+
}), /*#__PURE__*/_jsx(Button, {
|
321
|
+
sx: classes.pageWidthBtn,
|
322
|
+
className: pageWidth === "full" ? "active" : "",
|
323
|
+
onClick: handlePageWidth("full"),
|
324
|
+
startIcon: /*#__PURE__*/_jsx(WidthFullIcon, {}),
|
325
|
+
style: {
|
326
|
+
width: "45%"
|
327
|
+
},
|
328
|
+
children: "Full width"
|
162
329
|
})]
|
330
|
+
}), /*#__PURE__*/_jsx(Popover, {
|
331
|
+
open: open,
|
332
|
+
anchorEl: anchorEl,
|
333
|
+
anchorOrigin: {
|
334
|
+
vertical: "bottom",
|
335
|
+
horizontal: "center"
|
336
|
+
},
|
337
|
+
transformOrigin: {
|
338
|
+
vertical: "top",
|
339
|
+
horizontal: "center"
|
340
|
+
},
|
341
|
+
onClose: onClosePicker,
|
342
|
+
children: /*#__PURE__*/_jsx(AllColors, {
|
343
|
+
classes: classes,
|
344
|
+
onSelect: onSelectColor
|
345
|
+
})
|
163
346
|
})]
|
164
347
|
});
|
165
348
|
};
|