@flozy/editor 9.7.9 → 9.8.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.
@@ -1,12 +1,23 @@
|
|
1
|
-
import React, { useEffect, useState } from "react";
|
2
|
-
import
|
1
|
+
import React, { useCallback, useEffect, useMemo, useState } from "react";
|
2
|
+
import Autocomplete from "@mui/material/Autocomplete";
|
3
|
+
import Box from "@mui/material/Box";
|
4
|
+
import Chip from "@mui/material/Chip";
|
5
|
+
import Divider from "@mui/material/Divider";
|
6
|
+
import Popover from "@mui/material/Popover";
|
7
|
+
import TextField from "@mui/material/TextField";
|
8
|
+
import Typography from "@mui/material/Typography";
|
9
|
+
import List from "@mui/material/List";
|
10
|
+
import ListItem from "@mui/material/ListItem";
|
11
|
+
import ListItemButton from "@mui/material/ListItemButton";
|
12
|
+
import IconButton from "@mui/material/IconButton";
|
13
|
+
import SwipeableDrawer from "@mui/material/SwipeableDrawer";
|
14
|
+
import Tooltip from "@mui/material/Tooltip";
|
3
15
|
import { CloseIcon } from "../../../../../common/iconslist";
|
4
16
|
import { useEditorContext } from "../../../../../hooks/useMouseMove";
|
5
17
|
import Icon from "../../../../../common/Icon";
|
6
18
|
import { colors } from "../../../../Color Picker/defaultColors";
|
7
19
|
import PropertySettings from "../../Options";
|
8
20
|
import SnackbarAlert from "../../../../../common/SnackBar";
|
9
|
-
import ClearAllRounded from "../../../../../assets/svg/ClearAllRounded";
|
10
21
|
import { jsx as _jsx } from "react/jsx-runtime";
|
11
22
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
12
23
|
const EXCLUDED_COLORS = new Set(["#000000", "#0F172A", "#2563EB", "#FFFFFF", "#64748B"]);
|
@@ -38,7 +49,7 @@ const MultiSelectWithPopover = props => {
|
|
38
49
|
} = useEditorContext();
|
39
50
|
const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
|
40
51
|
const PopoverComponent = isMobile ? SwipeableDrawer : Popover;
|
41
|
-
const mode = {
|
52
|
+
const mode = useMemo(() => ({
|
42
53
|
type: "editOptionMulti",
|
43
54
|
edit: {
|
44
55
|
label: "Multi Select",
|
@@ -49,7 +60,7 @@ const MultiSelectWithPopover = props => {
|
|
49
60
|
optionIndex: currentIndex,
|
50
61
|
hideBackButton: true
|
51
62
|
}
|
52
|
-
};
|
63
|
+
}), [options, property, currentIndex]);
|
53
64
|
const customScrollStyles = {
|
54
65
|
scrollbarWidth: "thin",
|
55
66
|
scrollbarColor: `${theme?.palette?.editor?.brainPopupScroll} transparent`,
|
@@ -65,21 +76,21 @@ const MultiSelectWithPopover = props => {
|
|
65
76
|
}
|
66
77
|
};
|
67
78
|
useEffect(() => {
|
68
|
-
if (inputValue?.trim()) {
|
69
|
-
setChipColor(prevColor => prevColor || generateRandomColor());
|
70
|
-
} else {
|
79
|
+
if (inputValue?.trim() && !chipColor) {
|
71
80
|
setChipColor(generateRandomColor());
|
72
81
|
}
|
73
|
-
}, [inputValue]);
|
82
|
+
}, [inputValue, chipColor]);
|
74
83
|
useEffect(() => {
|
75
|
-
|
76
|
-
|
77
|
-
|
84
|
+
if (JSON.stringify(options) !== JSON.stringify(availableOptions)) {
|
85
|
+
setAvailableOptions(options);
|
86
|
+
}
|
87
|
+
}, [options, availableOptions]);
|
88
|
+
const handleOpenPopover = useCallback(event => {
|
78
89
|
setAnchorEl(event.currentTarget);
|
79
|
-
};
|
80
|
-
const handleClosePopover = () => {
|
90
|
+
}, []);
|
91
|
+
const handleClosePopover = useCallback(() => {
|
81
92
|
setAnchorEl(null);
|
82
|
-
};
|
93
|
+
}, []);
|
83
94
|
const handleAddOption = newValue => {
|
84
95
|
const trimmedValue = newValue?.trim();
|
85
96
|
if (!trimmedValue) return;
|
@@ -93,6 +104,7 @@ const MultiSelectWithPopover = props => {
|
|
93
104
|
onUpdate([newOption, ...availableOptions]);
|
94
105
|
}
|
95
106
|
setInputValue("");
|
107
|
+
setChipColor("");
|
96
108
|
};
|
97
109
|
const onClose = () => {
|
98
110
|
setAnchorEl(anchorElOption);
|
@@ -115,8 +127,9 @@ const MultiSelectWithPopover = props => {
|
|
115
127
|
};
|
116
128
|
const handleSelectOption = option => {
|
117
129
|
if (!selectedOptions?.some(opt => opt?.value === option?.value)) {
|
118
|
-
|
119
|
-
|
130
|
+
const updatedOptions = [...selectedOptions, option];
|
131
|
+
setSelectedOptions(updatedOptions);
|
132
|
+
onChange(updatedOptions);
|
120
133
|
} else {
|
121
134
|
setShowSnackBar(true);
|
122
135
|
}
|
@@ -200,7 +213,6 @@ const MultiSelectWithPopover = props => {
|
|
200
213
|
overflowX: "hidden",
|
201
214
|
pr: '12px',
|
202
215
|
pl: '12px',
|
203
|
-
maxWidth: isMobile ? "100%" : "275px",
|
204
216
|
marginTop: '12px',
|
205
217
|
...customScrollStyles
|
206
218
|
}
|
@@ -266,7 +278,9 @@ const MultiSelectWithPopover = props => {
|
|
266
278
|
backgroundColor: 'transparent'
|
267
279
|
}
|
268
280
|
},
|
269
|
-
children: /*#__PURE__*/_jsx(
|
281
|
+
children: /*#__PURE__*/_jsx(Icon, {
|
282
|
+
icon: "resetIconNew"
|
283
|
+
})
|
270
284
|
})
|
271
285
|
})
|
272
286
|
},
|
@@ -285,7 +299,7 @@ const MultiSelectWithPopover = props => {
|
|
285
299
|
index
|
286
300
|
}),
|
287
301
|
onDelete: event => {
|
288
|
-
event
|
302
|
+
event?.stopPropagation();
|
289
303
|
setSelectedOptions(prev => prev.filter(selected => selected?.value !== option?.value));
|
290
304
|
},
|
291
305
|
deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
|
@@ -330,10 +344,15 @@ const MultiSelectWithPopover = props => {
|
|
330
344
|
},
|
331
345
|
children: "Choose an option or create one"
|
332
346
|
}), filteredOptions?.map((option, index) => /*#__PURE__*/_jsx(ListItem, {
|
347
|
+
sx: {
|
348
|
+
padding: 0
|
349
|
+
},
|
333
350
|
disablePadding: true,
|
334
351
|
children: /*#__PURE__*/_jsxs(ListItemButton, {
|
335
352
|
onClick: () => handleSelectOption(option),
|
336
353
|
sx: {
|
354
|
+
paddingTop: "4px",
|
355
|
+
paddingBottom: "4px",
|
337
356
|
justifyContent: 'space-between',
|
338
357
|
'&:hover': {
|
339
358
|
'& path': {
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
2
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
3
|
+
const ResetIconNew = () => {
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
5
|
+
width: "17",
|
6
|
+
height: "17",
|
7
|
+
viewBox: "0 0 17 17",
|
8
|
+
fill: "none",
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
10
|
+
children: [/*#__PURE__*/_jsx("circle", {
|
11
|
+
cx: "8.10105",
|
12
|
+
cy: "8.10234",
|
13
|
+
r: "8",
|
14
|
+
transform: "rotate(-89.2717 8.10105 8.10234)",
|
15
|
+
fill: "#2563EB",
|
16
|
+
fillOpacity: "0.16"
|
17
|
+
}), /*#__PURE__*/_jsx("path", {
|
18
|
+
d: "M12.7169 8.22222V8.22222C12.7168 8.2323 12.7289 8.23752 12.7361 8.2305L13.3823 7.6035C13.6597 7.33434 14.0843 7.33974 14.3547 7.61586C14.6252 7.89199 14.6198 8.31458 14.3424 8.58375L12.6992 10.1595C12.3035 10.5389 11.6762 10.5291 11.2926 10.1375L9.71318 8.5249C9.57796 8.38683 9.51173 8.20874 9.51381 8.04516C9.51606 7.86794 9.58679 7.69159 9.72531 7.57064C10.0027 7.30148 10.4273 7.30688 10.6977 7.583L11.3182 8.21649C11.3288 8.22729 11.3471 8.21993 11.3473 8.20481V8.20481C11.374 6.10545 9.67017 4.36586 7.56099 4.33905C5.45182 4.31224 3.70429 6.00795 3.6776 8.10731C3.65091 10.2067 5.35477 11.9463 7.46394 11.9731C7.84743 11.9779 8.14493 12.2817 8.14007 12.6634C8.13522 13.0451 7.8301 13.3412 7.44661 13.3363C4.57046 13.2997 2.27161 10.9527 2.30801 8.0899C2.3444 5.22714 4.70217 2.93927 7.57832 2.97583C10.4408 3.01222 12.7533 5.35946 12.7169 8.22222Z",
|
19
|
+
fill: "#2563EB"
|
20
|
+
})]
|
21
|
+
});
|
22
|
+
};
|
23
|
+
export default ResetIconNew;
|
@@ -45,6 +45,7 @@ import TrashIcon from "../assets/svg/TrashCanIcon";
|
|
45
45
|
import DataTableIcon from "../assets/svg/DataTableIcon";
|
46
46
|
import ChervDown from "../assets/svg/ChervDown";
|
47
47
|
import ChervUp from "../assets/svg/ChervUp";
|
48
|
+
import ResetIconNew from "../assets/svg/ResetIconNew";
|
48
49
|
import { jsx as _jsx } from "react/jsx-runtime";
|
49
50
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
50
51
|
const HeadingIcon = ({
|
@@ -357,7 +358,8 @@ const iconList = {
|
|
357
358
|
stroke: "#64748B",
|
358
359
|
color: "#64748B"
|
359
360
|
}
|
360
|
-
})
|
361
|
+
}),
|
362
|
+
resetIconNew: /*#__PURE__*/_jsx(ResetIconNew, {})
|
361
363
|
};
|
362
364
|
export const icons = {
|
363
365
|
...iconList
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@flozy/editor",
|
3
|
-
"version": "9.
|
3
|
+
"version": "9.8.0",
|
4
4
|
"description": "An Editor for flozy app brain",
|
5
5
|
"files": [
|
6
6
|
"dist"
|
@@ -38,7 +38,6 @@
|
|
38
38
|
"react-icons": "^4.10.1",
|
39
39
|
"react-katex": "^3.0.1",
|
40
40
|
"react-rnd": "^10.4.11",
|
41
|
-
"react-scripts": "5.0.1",
|
42
41
|
"react-signature-canvas": "^1.0.6",
|
43
42
|
"react-slick": "^0.29.0",
|
44
43
|
"sanitize-html": "^2.13.0",
|
@@ -122,7 +121,8 @@
|
|
122
121
|
"prop-types": "^15.8.1",
|
123
122
|
"source-map-explorer": "^2.5.3",
|
124
123
|
"storybook": "^7.4.0",
|
125
|
-
"webpack": "^5.88.2"
|
124
|
+
"webpack": "^5.88.2",
|
125
|
+
"react-scripts": "5.0.1"
|
126
126
|
},
|
127
127
|
"overrides": {
|
128
128
|
"react-refresh": "0.11.0"
|