@flozy/editor 9.7.0 → 9.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -189,8 +189,16 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
189
189
|
children: children
|
190
190
|
});
|
191
191
|
};
|
192
|
+
const isEmpty = node => {
|
193
|
+
if (node.text && node.text.trim()) return false;
|
194
|
+
if (node.url && node.url.trim()) return false;
|
195
|
+
if (node.children) {
|
196
|
+
return node.children.every(isEmpty);
|
197
|
+
}
|
198
|
+
return true;
|
199
|
+
};
|
192
200
|
const handleEditorChange = newValue => {
|
193
|
-
|
201
|
+
const isSlateEmpty = newValue.every(isEmpty);
|
194
202
|
if (editor.children.length === 0) {
|
195
203
|
Transforms.insertNodes(editor, {
|
196
204
|
type: "paragraph",
|
@@ -199,21 +207,28 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
199
207
|
}]
|
200
208
|
});
|
201
209
|
} else {
|
202
|
-
newValue.
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
210
|
+
const lastNode = newValue?.[newValue.length - 1] || null;
|
211
|
+
if (isSlateEmpty && lastNode?.type !== "paragraph") {
|
212
|
+
Transforms.removeNodes(editor, {
|
213
|
+
at: [0]
|
214
|
+
});
|
215
|
+
} else {
|
216
|
+
newValue.forEach((val, index) => {
|
217
|
+
if (val?.type === "table") {
|
218
|
+
const nextNode = newValue[index + 1];
|
219
|
+
if (!nextNode || nextNode.type !== "paragraph") {
|
220
|
+
Transforms.insertNodes(editor, {
|
221
|
+
type: "paragraph",
|
222
|
+
children: [{
|
223
|
+
text: ""
|
224
|
+
}]
|
225
|
+
}, {
|
226
|
+
at: [index + 1]
|
227
|
+
});
|
228
|
+
}
|
214
229
|
}
|
215
|
-
}
|
216
|
-
}
|
230
|
+
});
|
231
|
+
}
|
217
232
|
}
|
218
233
|
debounced(newValue);
|
219
234
|
debouncedValue.current = newValue;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import React, { useRef, useState } from "react";
|
2
2
|
import SignatureCanvas from "react-signature-canvas";
|
3
|
-
import { Grid } from "@mui/material";
|
3
|
+
import { Grid, useMediaQuery } from "@mui/material";
|
4
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
5
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
6
6
|
const DrawSignature = props => {
|
@@ -24,6 +24,11 @@ const DrawSignature = props => {
|
|
24
24
|
signature: result?.imageURL || strImage
|
25
25
|
});
|
26
26
|
};
|
27
|
+
const isMobile = useMediaQuery("(max-width:599px)");
|
28
|
+
const signatureCanvasStyle = isMobile ? {
|
29
|
+
width: "260px",
|
30
|
+
height: "200px"
|
31
|
+
} : {};
|
27
32
|
return /*#__PURE__*/_jsxs(Grid, {
|
28
33
|
container: true,
|
29
34
|
children: [uploading ? "Uploading..." : "", /*#__PURE__*/_jsx(Grid, {
|
@@ -35,7 +40,8 @@ const DrawSignature = props => {
|
|
35
40
|
},
|
36
41
|
children: /*#__PURE__*/_jsx(SignatureCanvas, {
|
37
42
|
canvasProps: {
|
38
|
-
className: "signature-canvas"
|
43
|
+
className: "signature-canvas",
|
44
|
+
...signatureCanvasStyle
|
39
45
|
},
|
40
46
|
onEnd: onSigned,
|
41
47
|
ref: ref => canvasRef = ref,
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import React, { useEffect, useState } from "react";
|
2
|
-
import { Editor } from "slate";
|
2
|
+
import { Editor, Text } from "slate";
|
3
3
|
import { useSlate } from "slate-react";
|
4
4
|
import { getNodeText } from "../../utils/helper";
|
5
5
|
import { jsx as _jsx } from "react/jsx-runtime";
|
6
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
6
7
|
const Title = props => {
|
7
8
|
const {
|
8
9
|
attributes,
|
@@ -10,14 +11,19 @@ const Title = props => {
|
|
10
11
|
element,
|
11
12
|
customProps
|
12
13
|
} = props;
|
14
|
+
const isEmpty = !customProps?.readOnly && isEmptyTextNode(element?.children[0]) ? "empty" : "";
|
13
15
|
useDetectExitFromTitle(element, customProps?.getTitleSaveData);
|
14
|
-
return /*#__PURE__*/
|
16
|
+
return /*#__PURE__*/_jsxs("div", {
|
15
17
|
...attributes,
|
18
|
+
placeholder: "Title",
|
19
|
+
className: `content-editable ${isEmpty}`,
|
16
20
|
style: {
|
17
21
|
fontWeight: "bold",
|
18
22
|
fontSize: "20px"
|
19
23
|
},
|
20
|
-
children: children
|
24
|
+
children: [children, /*#__PURE__*/_jsx("span", {
|
25
|
+
contentEditable: false
|
26
|
+
})]
|
21
27
|
});
|
22
28
|
};
|
23
29
|
export default Title;
|
@@ -44,4 +50,10 @@ const useDetectExitFromTitle = (titleNode, onSaveTitle) => {
|
|
44
50
|
}
|
45
51
|
}, [editor.selection]);
|
46
52
|
return null;
|
53
|
+
};
|
54
|
+
const isEmptyTextNode = node => {
|
55
|
+
if (Text.isText(node)) {
|
56
|
+
return !node.text.trim();
|
57
|
+
}
|
58
|
+
return false;
|
47
59
|
};
|
@@ -49,6 +49,7 @@ import ColumnView from "../Elements/DataView/Layouts/ColumnView";
|
|
49
49
|
import SearchAttachment from "../Elements/Search/SearchAttachment";
|
50
50
|
// import { wrapThemeBreakpoints } from "../Elements/FreeGrid/breakpointConstants";
|
51
51
|
import { jsx as _jsx } from "react/jsx-runtime";
|
52
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
52
53
|
const alignment = ["alignLeft", "alignRight", "alignCenter", "alignJustify"];
|
53
54
|
const list_types = ["orderedList", "unorderedList"];
|
54
55
|
const LIST_FORMAT_TYPE = {
|
@@ -289,52 +290,64 @@ export const getBlock = props => {
|
|
289
290
|
const isEmpty = isEmptyTextNode(element);
|
290
291
|
switch (element.type) {
|
291
292
|
case "headingOne":
|
292
|
-
return /*#__PURE__*/
|
293
|
+
return /*#__PURE__*/_jsxs("h1", {
|
293
294
|
...attributes,
|
294
295
|
...element.attr,
|
295
296
|
className: `edt-headings content-editable ${isEmpty ? "empty" : ""}`,
|
296
297
|
placeholder: "Heading 1",
|
297
|
-
children: children
|
298
|
+
children: [children, /*#__PURE__*/_jsx("span", {
|
299
|
+
contentEditable: false
|
300
|
+
})]
|
298
301
|
});
|
299
302
|
case "headingTwo":
|
300
|
-
return /*#__PURE__*/
|
303
|
+
return /*#__PURE__*/_jsxs("h2", {
|
301
304
|
...attributes,
|
302
305
|
...element.attr,
|
303
306
|
className: `edt-headings content-editable ${isEmpty ? "empty" : ""}`,
|
304
307
|
placeholder: "Heading 2",
|
305
|
-
children: children
|
308
|
+
children: [children, /*#__PURE__*/_jsx("span", {
|
309
|
+
contentEditable: false
|
310
|
+
})]
|
306
311
|
});
|
307
312
|
case "headingThree":
|
308
|
-
return /*#__PURE__*/
|
313
|
+
return /*#__PURE__*/_jsxs("h3", {
|
309
314
|
...attributes,
|
310
315
|
...element.attr,
|
311
316
|
className: `edt-headings content-editable ${isEmpty ? "empty" : ""}`,
|
312
317
|
placeholder: "Heading 3",
|
313
|
-
children: children
|
318
|
+
children: [children, /*#__PURE__*/_jsx("span", {
|
319
|
+
contentEditable: false
|
320
|
+
})]
|
314
321
|
});
|
315
322
|
case "headingFour":
|
316
|
-
return /*#__PURE__*/
|
323
|
+
return /*#__PURE__*/_jsxs("h4", {
|
317
324
|
...attributes,
|
318
325
|
...element.attr,
|
319
326
|
className: `edt-headings content-editable ${isEmpty ? "empty" : ""}`,
|
320
327
|
placeholder: "Heading 4",
|
321
|
-
children: children
|
328
|
+
children: [children, /*#__PURE__*/_jsx("span", {
|
329
|
+
contentEditable: false
|
330
|
+
})]
|
322
331
|
});
|
323
332
|
case "headingFive":
|
324
|
-
return /*#__PURE__*/
|
333
|
+
return /*#__PURE__*/_jsxs("h5", {
|
325
334
|
...attributes,
|
326
335
|
...element.attr,
|
327
336
|
className: `edt-headings content-editable ${isEmpty ? "empty" : ""}`,
|
328
337
|
placeholder: "Heading 5",
|
329
|
-
children: children
|
338
|
+
children: [children, /*#__PURE__*/_jsx("span", {
|
339
|
+
contentEditable: false
|
340
|
+
})]
|
330
341
|
});
|
331
342
|
case "headingSix":
|
332
|
-
return /*#__PURE__*/
|
343
|
+
return /*#__PURE__*/_jsxs("h6", {
|
333
344
|
...attributes,
|
334
345
|
...element.attr,
|
335
346
|
className: `edt-headings content-editable ${isEmpty ? "empty" : ""}`,
|
336
347
|
placeholder: "Heading 6",
|
337
|
-
children: children
|
348
|
+
children: [children, /*#__PURE__*/_jsx("span", {
|
349
|
+
contentEditable: false
|
350
|
+
})]
|
338
351
|
});
|
339
352
|
case "blockquote":
|
340
353
|
return /*#__PURE__*/_jsx("blockquote", {
|