@lobehub/editor 4.15.2 → 4.16.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.
- package/es/editor-kernel/react/useDecorators.js +14 -8
- package/es/headless/index.d.ts +1 -1
- package/es/headless/index.js +1 -1
- package/es/headless.d.ts +3 -18
- package/es/headless.js +711 -52
- package/es/index.d.ts +5 -5
- package/es/index.js +5 -5
- package/es/locale/index.d.ts +2 -0
- package/es/locale/index.js +5 -1
- package/es/plugins/auto-complete/plugin/index.js +3 -3
- package/es/plugins/block/index.d.ts +1 -1
- package/es/plugins/block/plugin/index.js +78 -2
- package/es/plugins/block/react/ReactBlockPlugin.js +172 -16
- package/es/plugins/block/react/drag/drag-utils.js +37 -10
- package/es/plugins/block/service/i-block-menu-service.d.ts +18 -1
- package/es/plugins/block/service/i-block-menu-service.js +24 -0
- package/es/plugins/block/service/index.d.ts +1 -1
- package/es/plugins/codeblock/plugin/index.js +25 -1
- package/es/plugins/common/plugin/register.js +2 -2
- package/es/plugins/litexml/command/diffCommand.d.ts +2 -17
- package/es/plugins/litexml/command/diffCommand.js +3 -9
- package/es/plugins/litexml/command/index.d.ts +2 -38
- package/es/plugins/litexml/command/index.js +3 -6
- package/es/plugins/litexml/command/symbols.d.ts +67 -0
- package/es/plugins/litexml/command/symbols.js +34 -0
- package/es/plugins/litexml/index.d.ts +1 -2
- package/es/plugins/litexml/plugin/index.js +8 -2
- package/es/plugins/litexml/react/DiffNodeToolbar/index.js +1 -1
- package/es/plugins/slash/plugin/index.js +1 -1
- package/es/plugins/slash/react/ReactSlashPlugin.js +4 -4
- package/es/plugins/table/command/index.d.ts +13 -1
- package/es/plugins/table/command/index.js +220 -39
- package/es/plugins/table/index.d.ts +3 -2
- package/es/plugins/table/node/index.d.ts +2 -0
- package/es/plugins/table/node/index.js +130 -2
- package/es/plugins/table/plugin/index.d.ts +6 -0
- package/es/plugins/table/plugin/index.js +193 -4
- package/es/plugins/table/react/TableActionMenu/ActionMenu.js +82 -6
- package/es/plugins/table/react/TableActionMenu/index.js +9 -4
- package/es/plugins/table/react/TableColController.js +354 -0
- package/es/plugins/table/react/TableController/hooks.js +201 -0
- package/es/plugins/table/react/TableController/style.js +264 -0
- package/es/plugins/table/react/TableController/utils.js +25 -0
- package/es/plugins/table/react/TableControllerButton.js +81 -0
- package/es/plugins/table/react/TableControllerMenu.js +123 -0
- package/es/plugins/table/react/TableInsertButton.js +25 -0
- package/es/plugins/table/react/TableResize/index.js +153 -78
- package/es/plugins/table/react/TableRowController.js +349 -0
- package/es/plugins/table/react/hooks.js +77 -0
- package/es/plugins/table/react/index.js +139 -16
- package/es/plugins/table/react/style.js +89 -8
- package/es/plugins/table/react/type.d.ts +2 -0
- package/es/plugins/table/react/useAutoFitPastedTable.js +189 -0
- package/es/plugins/table/service/i-table-controller-menu-service.d.ts +44 -0
- package/es/plugins/table/service/i-table-controller-menu-service.js +31 -0
- package/es/plugins/table/service/index.d.ts +1 -0
- package/es/plugins/table/utils/autoFitColumnWidth.js +87 -0
- package/es/plugins/table/utils/distributeColumnWidth.js +37 -0
- package/es/plugins/table/utils/index.js +102 -2
- package/es/react/EditorProvider/index.d.ts +2 -2
- package/es/renderer/LexicalDiff.d.ts +2 -2
- package/es/symbols-DEEvsKq4.d.ts +67 -0
- package/package.json +5 -1
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
import { createStaticStyles } from "antd-style";
|
|
2
|
+
//#region src/plugins/table/react/TableController/style.ts
|
|
3
|
+
const styles = createStaticStyles(({ css, cssVar }) => {
|
|
4
|
+
const selectedBackground = `color-mix(in srgb, ${cssVar.colorPrimaryBg} 72%, ${cssVar.colorPrimary} 28%)`;
|
|
5
|
+
const hoverable = `
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
background-color: ${cssVar.colorFillTertiary};
|
|
8
|
+
transition: background-color 0.12s ease;
|
|
9
|
+
|
|
10
|
+
&:hover {
|
|
11
|
+
background-color: ${cssVar.colorPrimaryBg};
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
return {
|
|
15
|
+
col: css`
|
|
16
|
+
${hoverable};
|
|
17
|
+
position: relative;
|
|
18
|
+
|
|
19
|
+
flex-shrink: 0;
|
|
20
|
+
|
|
21
|
+
block-size: 14px;
|
|
22
|
+
border-color: ${cssVar.colorFillSecondary};
|
|
23
|
+
border-style: solid;
|
|
24
|
+
border-width: 1px 0 0 1px;
|
|
25
|
+
`,
|
|
26
|
+
colDragIndicator: css`
|
|
27
|
+
inset-block-start: 14px;
|
|
28
|
+
transform: translateX(-50%);
|
|
29
|
+
inline-size: 2px;
|
|
30
|
+
`,
|
|
31
|
+
colLast: css`
|
|
32
|
+
border-width: 1px 1px 0;
|
|
33
|
+
border-start-end-radius: 8px;
|
|
34
|
+
`,
|
|
35
|
+
colSelectionDots: css`
|
|
36
|
+
grid-template-columns: repeat(3, 2px);
|
|
37
|
+
`,
|
|
38
|
+
colTop: css`
|
|
39
|
+
position: relative;
|
|
40
|
+
inset-block-start: 0;
|
|
41
|
+
inset-inline-start: 0;
|
|
42
|
+
|
|
43
|
+
display: flex;
|
|
44
|
+
|
|
45
|
+
block-size: 14px;
|
|
46
|
+
`,
|
|
47
|
+
corner: css`
|
|
48
|
+
${hoverable};
|
|
49
|
+
position: absolute;
|
|
50
|
+
z-index: 4;
|
|
51
|
+
inset-block-start: 0;
|
|
52
|
+
inset-inline-start: -14px;
|
|
53
|
+
|
|
54
|
+
box-sizing: border-box;
|
|
55
|
+
inline-size: 15px;
|
|
56
|
+
block-size: 15px;
|
|
57
|
+
border: 1px solid ${cssVar.colorFillSecondary};
|
|
58
|
+
border-start-start-radius: 8px;
|
|
59
|
+
`,
|
|
60
|
+
deleteButton: css`
|
|
61
|
+
pointer-events: none;
|
|
62
|
+
cursor: pointer;
|
|
63
|
+
|
|
64
|
+
position: fixed;
|
|
65
|
+
z-index: 5;
|
|
66
|
+
transform: translate(-50%, -50%);
|
|
67
|
+
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
justify-content: center;
|
|
71
|
+
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
inline-size: 28px;
|
|
74
|
+
block-size: 28px;
|
|
75
|
+
padding: 0;
|
|
76
|
+
border: 1px solid ${cssVar.colorBorder};
|
|
77
|
+
border-radius: 4px;
|
|
78
|
+
|
|
79
|
+
color: ${cssVar.colorText};
|
|
80
|
+
|
|
81
|
+
opacity: 0;
|
|
82
|
+
background: ${cssVar.colorBgElevated};
|
|
83
|
+
box-shadow: 0 2px 8px color-mix(in srgb, #000 12%, transparent);
|
|
84
|
+
|
|
85
|
+
&:hover {
|
|
86
|
+
border-color: ${cssVar.colorErrorBorder};
|
|
87
|
+
color: ${cssVar.colorError};
|
|
88
|
+
background: ${cssVar.colorErrorBg};
|
|
89
|
+
}
|
|
90
|
+
`,
|
|
91
|
+
deleteButtonVisible: css`
|
|
92
|
+
pointer-events: auto;
|
|
93
|
+
opacity: 1;
|
|
94
|
+
`,
|
|
95
|
+
dragIndicator: css`
|
|
96
|
+
pointer-events: none;
|
|
97
|
+
|
|
98
|
+
position: absolute;
|
|
99
|
+
z-index: 6;
|
|
100
|
+
|
|
101
|
+
border-radius: 999px;
|
|
102
|
+
|
|
103
|
+
opacity: 0;
|
|
104
|
+
background: ${cssVar.colorPrimary};
|
|
105
|
+
box-shadow: 0 0 0 2px ${cssVar.colorPrimaryBg};
|
|
106
|
+
`,
|
|
107
|
+
dragIndicatorVisible: css`
|
|
108
|
+
opacity: 1;
|
|
109
|
+
`,
|
|
110
|
+
insertButton: css`
|
|
111
|
+
pointer-events: none;
|
|
112
|
+
cursor: pointer;
|
|
113
|
+
|
|
114
|
+
position: fixed;
|
|
115
|
+
z-index: 5;
|
|
116
|
+
transform: translate(-50%, -50%);
|
|
117
|
+
|
|
118
|
+
display: flex;
|
|
119
|
+
align-items: center;
|
|
120
|
+
justify-content: center;
|
|
121
|
+
|
|
122
|
+
box-sizing: border-box;
|
|
123
|
+
inline-size: 24px;
|
|
124
|
+
block-size: 24px;
|
|
125
|
+
padding: 0;
|
|
126
|
+
border: 0;
|
|
127
|
+
border-radius: 8px;
|
|
128
|
+
|
|
129
|
+
color: ${cssVar.colorTextSecondary};
|
|
130
|
+
|
|
131
|
+
opacity: 0;
|
|
132
|
+
background: ${cssVar.colorFillTertiary};
|
|
133
|
+
|
|
134
|
+
&:hover {
|
|
135
|
+
color: ${cssVar.colorText};
|
|
136
|
+
background: ${cssVar.colorFillSecondary};
|
|
137
|
+
}
|
|
138
|
+
`,
|
|
139
|
+
insertButtonVisible: css`
|
|
140
|
+
pointer-events: auto;
|
|
141
|
+
opacity: 1;
|
|
142
|
+
`,
|
|
143
|
+
menu: css`
|
|
144
|
+
pointer-events: auto;
|
|
145
|
+
|
|
146
|
+
position: fixed;
|
|
147
|
+
z-index: 1000;
|
|
148
|
+
|
|
149
|
+
display: flex;
|
|
150
|
+
flex-direction: column;
|
|
151
|
+
gap: 2px;
|
|
152
|
+
|
|
153
|
+
box-sizing: border-box;
|
|
154
|
+
padding: 6px;
|
|
155
|
+
border: 1px solid ${cssVar.colorBorderSecondary};
|
|
156
|
+
border-radius: 8px;
|
|
157
|
+
|
|
158
|
+
background: ${cssVar.colorBgElevated};
|
|
159
|
+
box-shadow: 0 8px 24px color-mix(in srgb, #000 18%, transparent);
|
|
160
|
+
`,
|
|
161
|
+
menuItem: css`
|
|
162
|
+
cursor: pointer;
|
|
163
|
+
|
|
164
|
+
display: flex;
|
|
165
|
+
align-items: center;
|
|
166
|
+
|
|
167
|
+
min-block-size: 32px;
|
|
168
|
+
padding-block: 0;
|
|
169
|
+
padding-inline: 10px;
|
|
170
|
+
border: 0;
|
|
171
|
+
border-radius: 5px;
|
|
172
|
+
|
|
173
|
+
font: inherit;
|
|
174
|
+
color: ${cssVar.colorText};
|
|
175
|
+
text-align: start;
|
|
176
|
+
white-space: nowrap;
|
|
177
|
+
|
|
178
|
+
background: transparent;
|
|
179
|
+
|
|
180
|
+
&:hover {
|
|
181
|
+
background: ${cssVar.colorFillTertiary};
|
|
182
|
+
}
|
|
183
|
+
`,
|
|
184
|
+
menuItemDanger: css`
|
|
185
|
+
color: ${cssVar.colorError};
|
|
186
|
+
|
|
187
|
+
&:hover {
|
|
188
|
+
background: ${cssVar.colorErrorBg};
|
|
189
|
+
}
|
|
190
|
+
`,
|
|
191
|
+
menuSeparator: css`
|
|
192
|
+
block-size: 1px;
|
|
193
|
+
margin-block: 4px;
|
|
194
|
+
margin-inline: -6px;
|
|
195
|
+
background: ${cssVar.colorSplit};
|
|
196
|
+
`,
|
|
197
|
+
row: css`
|
|
198
|
+
${hoverable};
|
|
199
|
+
position: relative;
|
|
200
|
+
|
|
201
|
+
box-sizing: border-box;
|
|
202
|
+
inline-size: 15px;
|
|
203
|
+
border-color: ${cssVar.colorFillSecondary};
|
|
204
|
+
border-style: solid;
|
|
205
|
+
border-width: 1px 0.5px 0 1px;
|
|
206
|
+
`,
|
|
207
|
+
rowDragIndicator: css`
|
|
208
|
+
inset-inline-start: 15px;
|
|
209
|
+
transform: translateY(-50%);
|
|
210
|
+
block-size: 2px;
|
|
211
|
+
`,
|
|
212
|
+
rowLast: css`
|
|
213
|
+
border-width: 1px 0.5px 1px 1px;
|
|
214
|
+
border-end-start-radius: 8px;
|
|
215
|
+
`,
|
|
216
|
+
rowLeft: css`
|
|
217
|
+
position: absolute;
|
|
218
|
+
z-index: 3;
|
|
219
|
+
inset-block-start: 14px;
|
|
220
|
+
inset-inline-start: -14px;
|
|
221
|
+
|
|
222
|
+
inline-size: 15px;
|
|
223
|
+
`,
|
|
224
|
+
rowSelectionDots: css`
|
|
225
|
+
grid-template-columns: repeat(2, 2px);
|
|
226
|
+
`,
|
|
227
|
+
selected: css`
|
|
228
|
+
cursor: move;
|
|
229
|
+
background-color: ${selectedBackground};
|
|
230
|
+
|
|
231
|
+
&:hover {
|
|
232
|
+
background-color: ${selectedBackground};
|
|
233
|
+
}
|
|
234
|
+
`,
|
|
235
|
+
selectedCorner: css`
|
|
236
|
+
cursor: pointer;
|
|
237
|
+
`,
|
|
238
|
+
selectionDots: css`
|
|
239
|
+
pointer-events: none;
|
|
240
|
+
|
|
241
|
+
position: absolute;
|
|
242
|
+
inset-block-start: 50%;
|
|
243
|
+
inset-inline-start: 50%;
|
|
244
|
+
transform: translate(-50%, -50%);
|
|
245
|
+
|
|
246
|
+
display: grid;
|
|
247
|
+
gap: 2px;
|
|
248
|
+
|
|
249
|
+
opacity: 0;
|
|
250
|
+
|
|
251
|
+
> span {
|
|
252
|
+
inline-size: 2px;
|
|
253
|
+
block-size: 2px;
|
|
254
|
+
border-radius: 50%;
|
|
255
|
+
background: ${cssVar.colorTextLightSolid};
|
|
256
|
+
}
|
|
257
|
+
`,
|
|
258
|
+
selectionDotsVisible: css`
|
|
259
|
+
opacity: 1;
|
|
260
|
+
`
|
|
261
|
+
};
|
|
262
|
+
});
|
|
263
|
+
//#endregion
|
|
264
|
+
export { styles };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
//#region src/plugins/table/react/TableController/utils.ts
|
|
2
|
+
const createTableDragImage = (label) => {
|
|
3
|
+
const element = document.createElement("div");
|
|
4
|
+
element.textContent = label;
|
|
5
|
+
element.style.cssText = `
|
|
6
|
+
position: fixed;
|
|
7
|
+
top: -1000px;
|
|
8
|
+
left: -1000px;
|
|
9
|
+
z-index: -1;
|
|
10
|
+
padding: 6px 10px;
|
|
11
|
+
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
12
|
+
border-radius: 6px;
|
|
13
|
+
color: #fff;
|
|
14
|
+
font-size: 12px;
|
|
15
|
+
line-height: 18px;
|
|
16
|
+
white-space: nowrap;
|
|
17
|
+
background: rgba(0, 0, 0, 0.78);
|
|
18
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
|
|
19
|
+
`;
|
|
20
|
+
document.body.append(element);
|
|
21
|
+
setTimeout(() => element.remove());
|
|
22
|
+
return element;
|
|
23
|
+
};
|
|
24
|
+
//#endregion
|
|
25
|
+
export { createTableDragImage };
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { memo, useEffect, useState } from "react";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { cx } from "antd-style";
|
|
4
|
+
import { createPortal } from "react-dom";
|
|
5
|
+
//#region src/plugins/table/react/TableControllerButton.tsx
|
|
6
|
+
const BUTTON_SIZE = 24;
|
|
7
|
+
const getPortalContainer = () => {
|
|
8
|
+
if (typeof document === "undefined") return null;
|
|
9
|
+
return document.querySelector(".ant-app") || document.body;
|
|
10
|
+
};
|
|
11
|
+
const getButtonStyle = (reference, position, offset = 0, gap) => {
|
|
12
|
+
if (!reference) return {};
|
|
13
|
+
const rect = reference.getBoundingClientRect();
|
|
14
|
+
const minCenter = BUTTON_SIZE / 2 + gap;
|
|
15
|
+
const maxInlineCenter = window.innerWidth - BUTTON_SIZE / 2 - gap;
|
|
16
|
+
const maxBlockCenter = window.innerHeight - BUTTON_SIZE / 2 - gap;
|
|
17
|
+
const clampCenter = (value, max) => {
|
|
18
|
+
return Math.min(Math.max(value, minCenter), max);
|
|
19
|
+
};
|
|
20
|
+
if (position === "top") {
|
|
21
|
+
const preferredTop = rect.top - BUTTON_SIZE / 2 - gap;
|
|
22
|
+
const fallbackTop = rect.bottom + BUTTON_SIZE / 2 + gap;
|
|
23
|
+
return {
|
|
24
|
+
insetBlockStart: preferredTop >= minCenter ? preferredTop : clampCenter(fallbackTop, maxBlockCenter),
|
|
25
|
+
insetInlineStart: clampCenter(rect.left + offset, maxInlineCenter)
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
const preferredLeft = rect.left - BUTTON_SIZE / 2 - gap;
|
|
29
|
+
const fallbackLeft = rect.right + BUTTON_SIZE / 2 + gap;
|
|
30
|
+
return {
|
|
31
|
+
insetBlockStart: clampCenter(rect.top + offset, maxBlockCenter),
|
|
32
|
+
insetInlineStart: preferredLeft >= minCenter ? preferredLeft : clampCenter(fallbackLeft, maxInlineCenter)
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
const TableControllerButton = memo(({ ariaLabel, children, className, gap = 6, offset, onClick, onMouseEnter, onMouseLeave, position, reference, visible, visibleClassName }) => {
|
|
36
|
+
const [style, setStyle] = useState(() => getButtonStyle(reference, position, offset, gap));
|
|
37
|
+
const container = getPortalContainer();
|
|
38
|
+
useEffect(() => {
|
|
39
|
+
if (!visible || !reference) return;
|
|
40
|
+
const updateStyle = () => {
|
|
41
|
+
setStyle(getButtonStyle(reference, position, offset, gap));
|
|
42
|
+
};
|
|
43
|
+
updateStyle();
|
|
44
|
+
window.addEventListener("scroll", updateStyle, true);
|
|
45
|
+
window.addEventListener("resize", updateStyle);
|
|
46
|
+
const observer = new ResizeObserver(updateStyle);
|
|
47
|
+
observer.observe(reference);
|
|
48
|
+
return () => {
|
|
49
|
+
window.removeEventListener("scroll", updateStyle, true);
|
|
50
|
+
window.removeEventListener("resize", updateStyle);
|
|
51
|
+
observer.disconnect();
|
|
52
|
+
};
|
|
53
|
+
}, [
|
|
54
|
+
gap,
|
|
55
|
+
offset,
|
|
56
|
+
position,
|
|
57
|
+
reference,
|
|
58
|
+
visible
|
|
59
|
+
]);
|
|
60
|
+
if (!container) return null;
|
|
61
|
+
return createPortal(/* @__PURE__ */ jsx("button", {
|
|
62
|
+
"aria-hidden": !visible,
|
|
63
|
+
"aria-label": ariaLabel,
|
|
64
|
+
className: cx(className, visible && visibleClassName),
|
|
65
|
+
onMouseDown: (event) => {
|
|
66
|
+
event.preventDefault();
|
|
67
|
+
event.stopPropagation();
|
|
68
|
+
if (!visible) return;
|
|
69
|
+
onClick();
|
|
70
|
+
},
|
|
71
|
+
onMouseEnter,
|
|
72
|
+
onMouseLeave,
|
|
73
|
+
style,
|
|
74
|
+
tabIndex: visible ? 0 : -1,
|
|
75
|
+
type: "button",
|
|
76
|
+
children
|
|
77
|
+
}), container);
|
|
78
|
+
});
|
|
79
|
+
TableControllerButton.displayName = "TableControllerButton";
|
|
80
|
+
//#endregion
|
|
81
|
+
export { TableControllerButton as default };
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { styles } from "./TableController/style.js";
|
|
2
|
+
import { memo, useEffect, useRef, useState } from "react";
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
import { cx } from "antd-style";
|
|
5
|
+
import { createPortal } from "react-dom";
|
|
6
|
+
//#region src/plugins/table/react/TableControllerMenu.tsx
|
|
7
|
+
const MENU_GAP = 8;
|
|
8
|
+
const MENU_MIN_WIDTH = 168;
|
|
9
|
+
const BLOCK_MENU_SUPPRESSOR_KEY = "__table_controller_menu";
|
|
10
|
+
const isSeparatorItem = (item) => {
|
|
11
|
+
return "type" in item && item.type === "separator";
|
|
12
|
+
};
|
|
13
|
+
const getPortalContainer = () => {
|
|
14
|
+
if (typeof document === "undefined") return null;
|
|
15
|
+
return document.querySelector(".ant-app") || document.body;
|
|
16
|
+
};
|
|
17
|
+
const getMenuStyle = (anchorElement, items, position, menuElement) => {
|
|
18
|
+
if (!anchorElement || typeof window === "undefined") return {};
|
|
19
|
+
const rect = anchorElement.getBoundingClientRect();
|
|
20
|
+
const menuWidth = MENU_MIN_WIDTH;
|
|
21
|
+
const estimatedHeight = menuElement?.getBoundingClientRect().height || items.reduce((height, item) => height + (isSeparatorItem(item) ? 9 : 32), 12);
|
|
22
|
+
const maxLeft = Math.max(MENU_GAP, window.innerWidth - menuWidth - MENU_GAP);
|
|
23
|
+
const maxTop = Math.max(MENU_GAP, window.innerHeight - estimatedHeight - MENU_GAP);
|
|
24
|
+
const clamp = (value, max) => Math.min(Math.max(value, MENU_GAP), max);
|
|
25
|
+
if (position === "top") {
|
|
26
|
+
const preferredTop = rect.top - estimatedHeight - MENU_GAP;
|
|
27
|
+
const fallbackTop = rect.bottom + MENU_GAP;
|
|
28
|
+
return {
|
|
29
|
+
insetBlockStart: preferredTop >= MENU_GAP ? preferredTop : clamp(fallbackTop, maxTop),
|
|
30
|
+
insetInlineStart: clamp(rect.left + rect.width / 2 - menuWidth / 2, maxLeft),
|
|
31
|
+
minInlineSize: menuWidth
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
const preferredLeft = rect.left - menuWidth - MENU_GAP;
|
|
35
|
+
const fallbackLeft = rect.right + MENU_GAP;
|
|
36
|
+
return {
|
|
37
|
+
insetBlockStart: clamp(rect.top + rect.height / 2 - estimatedHeight / 2, maxTop),
|
|
38
|
+
insetInlineStart: preferredLeft >= MENU_GAP ? preferredLeft : clamp(fallbackLeft, maxLeft),
|
|
39
|
+
minInlineSize: menuWidth
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
const TableControllerMenu = memo(({ anchorElement, blockMenuService, items, onOpenChange, open, position }) => {
|
|
43
|
+
const [style, setStyle] = useState(() => getMenuStyle(anchorElement, items, position));
|
|
44
|
+
const menuRef = useRef(null);
|
|
45
|
+
const container = getPortalContainer();
|
|
46
|
+
useEffect(() => {
|
|
47
|
+
blockMenuService?.setMenuSuppressed(BLOCK_MENU_SUPPRESSOR_KEY, open);
|
|
48
|
+
return () => {
|
|
49
|
+
blockMenuService?.setMenuSuppressed(BLOCK_MENU_SUPPRESSOR_KEY, false);
|
|
50
|
+
};
|
|
51
|
+
}, [blockMenuService, open]);
|
|
52
|
+
useEffect(() => {
|
|
53
|
+
if (!open || !anchorElement) return;
|
|
54
|
+
const updateStyle = () => {
|
|
55
|
+
setStyle(getMenuStyle(anchorElement, items, position, menuRef.current));
|
|
56
|
+
};
|
|
57
|
+
const handlePointerDown = (event) => {
|
|
58
|
+
const target = event.target;
|
|
59
|
+
if (target instanceof Node && (anchorElement.contains(target) || menuRef.current?.contains(target))) return;
|
|
60
|
+
onOpenChange(false);
|
|
61
|
+
};
|
|
62
|
+
const handleKeyDown = (event) => {
|
|
63
|
+
if (event.key === "Escape") onOpenChange(false);
|
|
64
|
+
};
|
|
65
|
+
updateStyle();
|
|
66
|
+
requestAnimationFrame(updateStyle);
|
|
67
|
+
window.addEventListener("scroll", updateStyle, true);
|
|
68
|
+
window.addEventListener("resize", updateStyle);
|
|
69
|
+
document.addEventListener("pointerdown", handlePointerDown);
|
|
70
|
+
document.addEventListener("keydown", handleKeyDown);
|
|
71
|
+
const observer = new ResizeObserver(updateStyle);
|
|
72
|
+
observer.observe(anchorElement);
|
|
73
|
+
return () => {
|
|
74
|
+
window.removeEventListener("scroll", updateStyle, true);
|
|
75
|
+
window.removeEventListener("resize", updateStyle);
|
|
76
|
+
document.removeEventListener("pointerdown", handlePointerDown);
|
|
77
|
+
document.removeEventListener("keydown", handleKeyDown);
|
|
78
|
+
observer.disconnect();
|
|
79
|
+
};
|
|
80
|
+
}, [
|
|
81
|
+
anchorElement,
|
|
82
|
+
container,
|
|
83
|
+
items,
|
|
84
|
+
onOpenChange,
|
|
85
|
+
open,
|
|
86
|
+
position
|
|
87
|
+
]);
|
|
88
|
+
if (!container || !open) return null;
|
|
89
|
+
return createPortal(/* @__PURE__ */ jsx("div", {
|
|
90
|
+
className: styles.menu,
|
|
91
|
+
contentEditable: false,
|
|
92
|
+
ref: menuRef,
|
|
93
|
+
role: "menu",
|
|
94
|
+
style,
|
|
95
|
+
children: items.map((item) => {
|
|
96
|
+
if (isSeparatorItem(item)) return /* @__PURE__ */ jsx("div", {
|
|
97
|
+
className: styles.menuSeparator,
|
|
98
|
+
role: "separator"
|
|
99
|
+
}, item.key);
|
|
100
|
+
return /* @__PURE__ */ jsx("button", {
|
|
101
|
+
className: cx(styles.menuItem, item.danger && styles.menuItemDanger),
|
|
102
|
+
onClick: (event) => {
|
|
103
|
+
event.preventDefault();
|
|
104
|
+
event.stopPropagation();
|
|
105
|
+
item.onClick();
|
|
106
|
+
onOpenChange(false);
|
|
107
|
+
},
|
|
108
|
+
onMouseDown: (event) => {
|
|
109
|
+
event.preventDefault();
|
|
110
|
+
event.stopPropagation();
|
|
111
|
+
},
|
|
112
|
+
onMouseEnter: item.onMouseEnter,
|
|
113
|
+
onMouseLeave: item.onMouseLeave,
|
|
114
|
+
role: "menuitem",
|
|
115
|
+
type: "button",
|
|
116
|
+
children: item.label
|
|
117
|
+
}, item.key);
|
|
118
|
+
})
|
|
119
|
+
}), container);
|
|
120
|
+
});
|
|
121
|
+
TableControllerMenu.displayName = "TableControllerMenu";
|
|
122
|
+
//#endregion
|
|
123
|
+
export { TableControllerMenu as default };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { styles } from "./TableController/style.js";
|
|
2
|
+
import TableControllerButton from "./TableControllerButton.js";
|
|
3
|
+
import { PlusIcon } from "lucide-react";
|
|
4
|
+
import { memo } from "react";
|
|
5
|
+
import { jsx } from "react/jsx-runtime";
|
|
6
|
+
//#region src/plugins/table/react/TableInsertButton.tsx
|
|
7
|
+
const TableInsertButton = memo(({ ariaLabel, offset, onInsert, onMouseEnter, onMouseLeave, position, reference, visible }) => {
|
|
8
|
+
return /* @__PURE__ */ jsx(TableControllerButton, {
|
|
9
|
+
ariaLabel,
|
|
10
|
+
className: styles.insertButton,
|
|
11
|
+
gap: 4,
|
|
12
|
+
offset,
|
|
13
|
+
onClick: onInsert,
|
|
14
|
+
onMouseEnter,
|
|
15
|
+
onMouseLeave,
|
|
16
|
+
position,
|
|
17
|
+
reference,
|
|
18
|
+
visible,
|
|
19
|
+
visibleClassName: styles.insertButtonVisible,
|
|
20
|
+
children: /* @__PURE__ */ jsx(PlusIcon, { size: 14 })
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
TableInsertButton.displayName = "TableInsertButton";
|
|
24
|
+
//#endregion
|
|
25
|
+
export { TableInsertButton as default };
|