@flozy/editor 9.7.0 → 9.7.1
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,5 +1,5 @@
|
|
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";
|
@@ -10,9 +10,12 @@ const Title = props => {
|
|
10
10
|
element,
|
11
11
|
customProps
|
12
12
|
} = props;
|
13
|
+
const isEmpty = !customProps?.readOnly && isEmptyTextNode(element?.children[0]) ? "empty" : "";
|
13
14
|
useDetectExitFromTitle(element, customProps?.getTitleSaveData);
|
14
15
|
return /*#__PURE__*/_jsx("div", {
|
15
16
|
...attributes,
|
17
|
+
placeholder: "Title",
|
18
|
+
className: `content-editable ${isEmpty}`,
|
16
19
|
style: {
|
17
20
|
fontWeight: "bold",
|
18
21
|
fontSize: "20px"
|
@@ -44,4 +47,10 @@ const useDetectExitFromTitle = (titleNode, onSaveTitle) => {
|
|
44
47
|
}
|
45
48
|
}, [editor.selection]);
|
46
49
|
return null;
|
50
|
+
};
|
51
|
+
const isEmptyTextNode = node => {
|
52
|
+
if (Text.isText(node)) {
|
53
|
+
return !node.text.trim();
|
54
|
+
}
|
55
|
+
return false;
|
47
56
|
};
|