@nocobase/flow-engine 2.1.0-beta.9 → 2.2.0-beta.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/lib/FlowContextProvider.d.ts +5 -1
- package/lib/FlowContextProvider.js +9 -2
- package/lib/components/FieldModelRenderer.js +2 -2
- package/lib/components/FlowModelRenderer.d.ts +3 -1
- package/lib/components/FlowModelRenderer.js +12 -6
- package/lib/components/FormItem.d.ts +6 -0
- package/lib/components/FormItem.js +11 -3
- package/lib/components/MobilePopup.js +6 -5
- package/lib/components/dnd/gridDragPlanner.d.ts +59 -2
- package/lib/components/dnd/gridDragPlanner.js +607 -19
- package/lib/components/dnd/index.d.ts +31 -2
- package/lib/components/dnd/index.js +244 -23
- package/lib/components/settings/wrappers/component/SelectWithTitle.d.ts +2 -1
- package/lib/components/settings/wrappers/component/SelectWithTitle.js +14 -12
- package/lib/components/settings/wrappers/contextual/DefaultSettingsIcon.d.ts +3 -0
- package/lib/components/settings/wrappers/contextual/DefaultSettingsIcon.js +152 -42
- package/lib/components/settings/wrappers/contextual/FlowsFloatContextMenu.d.ts +23 -43
- package/lib/components/settings/wrappers/contextual/FlowsFloatContextMenu.js +352 -295
- package/lib/components/settings/wrappers/contextual/useFloatToolbarPortal.d.ts +36 -0
- package/lib/components/settings/wrappers/contextual/useFloatToolbarPortal.js +274 -0
- package/lib/components/settings/wrappers/contextual/useFloatToolbarVisibility.d.ts +30 -0
- package/lib/components/settings/wrappers/contextual/useFloatToolbarVisibility.js +315 -0
- package/lib/components/subModel/AddSubModelButton.js +12 -1
- package/lib/components/subModel/LazyDropdown.js +301 -52
- package/lib/components/subModel/index.d.ts +1 -0
- package/lib/components/subModel/index.js +19 -0
- package/lib/components/subModel/utils.d.ts +2 -1
- package/lib/components/subModel/utils.js +15 -5
- package/lib/components/variables/VariableHybridInput.d.ts +27 -0
- package/lib/components/variables/VariableHybridInput.js +499 -0
- package/lib/components/variables/index.d.ts +2 -0
- package/lib/components/variables/index.js +3 -0
- package/lib/data-source/index.d.ts +84 -0
- package/lib/data-source/index.js +269 -7
- package/lib/executor/FlowExecutor.js +6 -3
- package/lib/flow-registry/DetachedFlowRegistry.d.ts +21 -0
- package/lib/flow-registry/DetachedFlowRegistry.js +80 -0
- package/lib/flow-registry/index.d.ts +1 -0
- package/lib/flow-registry/index.js +3 -1
- package/lib/flowContext.d.ts +9 -1
- package/lib/flowContext.js +77 -6
- package/lib/flowEngine.d.ts +136 -4
- package/lib/flowEngine.js +429 -51
- package/lib/flowI18n.js +2 -1
- package/lib/flowSettings.d.ts +14 -6
- package/lib/flowSettings.js +34 -6
- package/lib/index.d.ts +2 -0
- package/lib/index.js +7 -0
- package/lib/lazy-helper.d.ts +14 -0
- package/lib/lazy-helper.js +71 -0
- package/lib/locale/en-US.json +1 -0
- package/lib/locale/index.d.ts +2 -0
- package/lib/locale/zh-CN.json +1 -0
- package/lib/models/DisplayItemModel.d.ts +1 -1
- package/lib/models/EditableItemModel.d.ts +1 -1
- package/lib/models/FilterableItemModel.d.ts +1 -1
- package/lib/models/flowModel.d.ts +13 -10
- package/lib/models/flowModel.js +126 -34
- package/lib/provider.js +38 -23
- package/lib/reactive/observer.js +46 -16
- package/lib/runjs-context/contexts/FormJSFieldItemRunJSContext.js +4 -3
- package/lib/runjs-context/contexts/JSBlockRunJSContext.js +4 -15
- package/lib/runjs-context/contexts/JSColumnRunJSContext.js +5 -2
- package/lib/runjs-context/contexts/JSEditableFieldRunJSContext.js +5 -8
- package/lib/runjs-context/contexts/JSFieldRunJSContext.js +4 -3
- package/lib/runjs-context/contexts/JSItemRunJSContext.js +4 -3
- package/lib/runjs-context/contexts/base.js +464 -29
- package/lib/runjs-context/contexts/elementDoc.d.ts +11 -0
- package/lib/runjs-context/contexts/elementDoc.js +152 -0
- package/lib/runjs-context/setup.js +1 -0
- package/lib/runjs-context/snippets/index.js +13 -2
- package/lib/runjs-context/snippets/scene/detail/set-field-style.snippet.d.ts +11 -0
- package/lib/runjs-context/snippets/scene/detail/set-field-style.snippet.js +50 -0
- package/lib/runjs-context/snippets/scene/table/set-cell-style.snippet.d.ts +11 -0
- package/lib/runjs-context/snippets/scene/table/set-cell-style.snippet.js +54 -0
- package/lib/types.d.ts +50 -2
- package/lib/types.js +1 -0
- package/lib/utils/createCollectionContextMeta.js +6 -2
- package/lib/utils/index.d.ts +3 -2
- package/lib/utils/index.js +7 -0
- package/lib/utils/loadedPageCache.d.ts +24 -0
- package/lib/utils/loadedPageCache.js +139 -0
- package/lib/utils/parsePathnameToViewParams.d.ts +5 -1
- package/lib/utils/parsePathnameToViewParams.js +28 -4
- package/lib/utils/randomId.d.ts +39 -0
- package/lib/utils/randomId.js +45 -0
- package/lib/utils/runjsTemplateCompat.js +1 -1
- package/lib/utils/runjsValue.js +41 -11
- package/lib/utils/schema-utils.d.ts +7 -1
- package/lib/utils/schema-utils.js +19 -0
- package/lib/views/FlowView.d.ts +7 -1
- package/lib/views/FlowView.js +11 -1
- package/lib/views/PageComponent.js +8 -6
- package/lib/views/ViewNavigation.d.ts +12 -2
- package/lib/views/ViewNavigation.js +28 -9
- package/lib/views/createViewMeta.js +114 -50
- package/lib/views/inheritLayoutContext.d.ts +10 -0
- package/lib/views/inheritLayoutContext.js +50 -0
- package/lib/views/runViewBeforeClose.d.ts +10 -0
- package/lib/views/runViewBeforeClose.js +45 -0
- package/lib/views/useDialog.d.ts +2 -1
- package/lib/views/useDialog.js +12 -3
- package/lib/views/useDrawer.d.ts +2 -1
- package/lib/views/useDrawer.js +12 -3
- package/lib/views/usePage.d.ts +5 -11
- package/lib/views/usePage.js +304 -144
- package/package.json +5 -4
- package/src/FlowContextProvider.tsx +9 -1
- package/src/__tests__/createViewMeta.popup.test.ts +115 -1
- package/src/__tests__/flow-engine.test.ts +166 -0
- package/src/__tests__/flowContext.test.ts +105 -1
- package/src/__tests__/flowEngine.modelLoaders.test.ts +245 -0
- package/src/__tests__/flowEngine.moveModel.test.ts +81 -1
- package/src/__tests__/flowEngine.removeModel.test.ts +47 -3
- package/src/__tests__/flowSettings.test.ts +94 -15
- package/src/__tests__/objectVariable.test.ts +24 -0
- package/src/__tests__/provider.test.tsx +24 -2
- package/src/__tests__/renderHiddenInConfig.test.tsx +6 -6
- package/src/__tests__/runjsContext.test.ts +21 -0
- package/src/__tests__/runjsContextImplementations.test.ts +9 -2
- package/src/__tests__/runjsContextRuntime.test.ts +2 -0
- package/src/__tests__/runjsLocales.test.ts +6 -5
- package/src/__tests__/runjsSnippets.test.ts +21 -0
- package/src/__tests__/viewScopedFlowEngine.test.ts +136 -3
- package/src/components/FieldModelRenderer.tsx +2 -1
- package/src/components/FlowModelRenderer.tsx +18 -6
- package/src/components/FormItem.tsx +7 -1
- package/src/components/MobilePopup.tsx +4 -2
- package/src/components/__tests__/FlowModelRenderer.test.tsx +65 -2
- package/src/components/__tests__/FormItem.test.tsx +25 -0
- package/src/components/__tests__/dnd.test.ts +44 -0
- package/src/components/__tests__/flow-model-render-error-fallback.test.tsx +20 -10
- package/src/components/__tests__/gridDragPlanner.test.ts +472 -5
- package/src/components/dnd/__tests__/DndProvider.test.tsx +98 -0
- package/src/components/dnd/gridDragPlanner.ts +750 -17
- package/src/components/dnd/index.tsx +305 -28
- package/src/components/settings/wrappers/component/SelectWithTitle.tsx +21 -9
- package/src/components/settings/wrappers/contextual/DefaultSettingsIcon.tsx +178 -48
- package/src/components/settings/wrappers/contextual/FlowsFloatContextMenu.tsx +487 -440
- package/src/components/settings/wrappers/contextual/__tests__/DefaultSettingsIcon.test.tsx +344 -8
- package/src/components/settings/wrappers/contextual/__tests__/FlowsFloatContextMenu.test.tsx +778 -0
- package/src/components/settings/wrappers/contextual/useFloatToolbarPortal.ts +360 -0
- package/src/components/settings/wrappers/contextual/useFloatToolbarVisibility.ts +361 -0
- package/src/components/subModel/AddSubModelButton.tsx +16 -2
- package/src/components/subModel/LazyDropdown.tsx +341 -56
- package/src/components/subModel/__tests__/AddSubModelButton.test.tsx +524 -38
- package/src/components/subModel/__tests__/utils.test.ts +24 -0
- package/src/components/subModel/index.ts +1 -0
- package/src/components/subModel/utils.ts +13 -2
- package/src/components/variables/VariableHybridInput.tsx +531 -0
- package/src/components/variables/index.ts +2 -0
- package/src/data-source/__tests__/collection.test.ts +41 -2
- package/src/data-source/__tests__/index.test.ts +69 -2
- package/src/data-source/index.ts +332 -8
- package/src/executor/FlowExecutor.ts +6 -3
- package/src/executor/__tests__/flowExecutor.test.ts +57 -0
- package/src/flow-registry/DetachedFlowRegistry.ts +46 -0
- package/src/flow-registry/__tests__/detachedFlowRegistry.test.ts +47 -0
- package/src/flow-registry/index.ts +1 -0
- package/src/flowContext.ts +85 -6
- package/src/flowEngine.ts +484 -45
- package/src/flowI18n.ts +2 -1
- package/src/flowSettings.ts +40 -6
- package/src/index.ts +2 -0
- package/src/lazy-helper.tsx +57 -0
- package/src/locale/en-US.json +1 -0
- package/src/locale/zh-CN.json +1 -0
- package/src/models/DisplayItemModel.tsx +1 -1
- package/src/models/EditableItemModel.tsx +1 -1
- package/src/models/FilterableItemModel.tsx +1 -1
- package/src/models/__tests__/flowEngine.resolveUse.test.ts +0 -15
- package/src/models/__tests__/flowModel.test.ts +65 -37
- package/src/models/flowModel.tsx +184 -65
- package/src/provider.tsx +41 -25
- package/src/reactive/__tests__/observer.test.tsx +82 -0
- package/src/reactive/observer.tsx +87 -25
- package/src/runjs-context/contexts/FormJSFieldItemRunJSContext.ts +4 -3
- package/src/runjs-context/contexts/JSBlockRunJSContext.ts +4 -15
- package/src/runjs-context/contexts/JSColumnRunJSContext.ts +4 -2
- package/src/runjs-context/contexts/JSEditableFieldRunJSContext.ts +5 -9
- package/src/runjs-context/contexts/JSFieldRunJSContext.ts +4 -3
- package/src/runjs-context/contexts/JSItemRunJSContext.ts +4 -3
- package/src/runjs-context/contexts/base.ts +467 -31
- package/src/runjs-context/contexts/elementDoc.ts +130 -0
- package/src/runjs-context/setup.ts +1 -0
- package/src/runjs-context/snippets/index.ts +12 -1
- package/src/runjs-context/snippets/scene/detail/set-field-style.snippet.ts +30 -0
- package/src/runjs-context/snippets/scene/table/set-cell-style.snippet.ts +34 -0
- package/src/types.ts +62 -0
- package/src/utils/__tests__/createCollectionContextMeta.test.ts +48 -0
- package/src/utils/__tests__/parsePathnameToViewParams.test.ts +21 -0
- package/src/utils/__tests__/runjsValue.test.ts +11 -0
- package/src/utils/__tests__/utils.test.ts +62 -0
- package/src/utils/createCollectionContextMeta.ts +6 -2
- package/src/utils/index.ts +5 -1
- package/src/utils/loadedPageCache.ts +147 -0
- package/src/utils/parsePathnameToViewParams.ts +45 -5
- package/src/utils/randomId.ts +48 -0
- package/src/utils/runjsTemplateCompat.ts +1 -1
- package/src/utils/runjsValue.ts +50 -11
- package/src/utils/schema-utils.ts +30 -1
- package/src/views/FlowView.tsx +22 -2
- package/src/views/PageComponent.tsx +7 -4
- package/src/views/ViewNavigation.ts +46 -9
- package/src/views/__tests__/FlowView.usePage.test.tsx +243 -3
- package/src/views/__tests__/ViewNavigation.test.ts +52 -0
- package/src/views/__tests__/inheritLayoutContext.test.ts +53 -0
- package/src/views/__tests__/runViewBeforeClose.test.ts +30 -0
- package/src/views/__tests__/useDialog.closeDestroy.test.tsx +12 -12
- package/src/views/createViewMeta.ts +106 -34
- package/src/views/inheritLayoutContext.ts +26 -0
- package/src/views/runViewBeforeClose.ts +19 -0
- package/src/views/useDialog.tsx +13 -3
- package/src/views/useDrawer.tsx +13 -3
- package/src/views/usePage.tsx +367 -180
|
@@ -7,18 +7,47 @@
|
|
|
7
7
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
8
|
*/
|
|
9
9
|
import { DndContextProps } from '@dnd-kit/core';
|
|
10
|
+
import type { Transform } from '@dnd-kit/utilities';
|
|
10
11
|
import React, { FC } from 'react';
|
|
11
12
|
import { FlowModel } from '../../models';
|
|
12
13
|
import { PersistOptions } from '../../types';
|
|
13
14
|
export * from './findModelUidPosition';
|
|
14
15
|
export * from './gridDragPlanner';
|
|
15
16
|
export declare const EMPTY_COLUMN_UID = "EMPTY_COLUMN";
|
|
17
|
+
export declare const TOOLBAR_DRAG_ACTIVITY_EVENT = "nb-toolbar-drag-activity";
|
|
18
|
+
type ToolbarDragAnchorPoint = {
|
|
19
|
+
x: number;
|
|
20
|
+
y: number;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveOverlayAnchorTransform: ({ activeId, active, transform, activeNodeRect, dragAnchorPoint, }: {
|
|
23
|
+
activeId: string | null;
|
|
24
|
+
active: {
|
|
25
|
+
id: string | number;
|
|
26
|
+
} | null | undefined;
|
|
27
|
+
transform: Transform;
|
|
28
|
+
activeNodeRect: {
|
|
29
|
+
top: number;
|
|
30
|
+
left: number;
|
|
31
|
+
} | null;
|
|
32
|
+
dragAnchorPoint: ToolbarDragAnchorPoint | null;
|
|
33
|
+
}) => Transform;
|
|
16
34
|
export declare const DragHandler: FC<{
|
|
17
35
|
model: FlowModel;
|
|
18
|
-
children
|
|
36
|
+
children?: React.ReactNode;
|
|
19
37
|
}>;
|
|
20
38
|
export declare const Droppable: FC<{
|
|
21
39
|
model: FlowModel<any>;
|
|
22
40
|
children: React.ReactNode;
|
|
23
41
|
}>;
|
|
24
|
-
export
|
|
42
|
+
export interface DndProviderProps extends DndContextProps, PersistOptions {
|
|
43
|
+
/**
|
|
44
|
+
* Whether to render the built-in `DragOverlay` (the "Dragging" pill that
|
|
45
|
+
* follows the cursor). Defaults to `true` for backwards compatibility with
|
|
46
|
+
* existing flow-engine drag interactions. Set to `false` when the
|
|
47
|
+
* surrounding UI already gives clear visual feedback (e.g. a drag-sort
|
|
48
|
+
* table that highlights the drop position) and the floating pill would be
|
|
49
|
+
* redundant.
|
|
50
|
+
*/
|
|
51
|
+
showDragOverlay?: boolean;
|
|
52
|
+
}
|
|
53
|
+
export declare const DndProvider: FC<DndProviderProps>;
|
|
@@ -41,7 +41,9 @@ __export(dnd_exports, {
|
|
|
41
41
|
DndProvider: () => DndProvider,
|
|
42
42
|
DragHandler: () => DragHandler,
|
|
43
43
|
Droppable: () => Droppable,
|
|
44
|
-
EMPTY_COLUMN_UID: () => EMPTY_COLUMN_UID
|
|
44
|
+
EMPTY_COLUMN_UID: () => EMPTY_COLUMN_UID,
|
|
45
|
+
TOOLBAR_DRAG_ACTIVITY_EVENT: () => TOOLBAR_DRAG_ACTIVITY_EVENT,
|
|
46
|
+
resolveOverlayAnchorTransform: () => resolveOverlayAnchorTransform
|
|
45
47
|
});
|
|
46
48
|
module.exports = __toCommonJS(dnd_exports);
|
|
47
49
|
var import_icons = require("@ant-design/icons");
|
|
@@ -52,17 +54,186 @@ var import_provider = require("../../provider");
|
|
|
52
54
|
__reExport(dnd_exports, require("./findModelUidPosition"), module.exports);
|
|
53
55
|
__reExport(dnd_exports, require("./gridDragPlanner"), module.exports);
|
|
54
56
|
const EMPTY_COLUMN_UID = "EMPTY_COLUMN";
|
|
57
|
+
const TOOLBAR_DRAG_ACTIVITY_EVENT = "nb-toolbar-drag-activity";
|
|
58
|
+
const TOOLBAR_DRAG_ANCHOR_EVENT = "nb-toolbar-drag-anchor";
|
|
59
|
+
const MENU_SUBMENU_POPUP_SELECTOR = ".ant-menu-submenu-popup";
|
|
60
|
+
const resolveOverlayAnchorTransform = /* @__PURE__ */ __name(({
|
|
61
|
+
activeId,
|
|
62
|
+
active,
|
|
63
|
+
transform,
|
|
64
|
+
activeNodeRect,
|
|
65
|
+
dragAnchorPoint
|
|
66
|
+
}) => {
|
|
67
|
+
if (!activeId || (active == null ? void 0 : active.id) !== activeId || !dragAnchorPoint || !activeNodeRect) {
|
|
68
|
+
return transform;
|
|
69
|
+
}
|
|
70
|
+
return {
|
|
71
|
+
...transform,
|
|
72
|
+
x: transform.x + dragAnchorPoint.x - activeNodeRect.left,
|
|
73
|
+
y: transform.y + dragAnchorPoint.y - activeNodeRect.top
|
|
74
|
+
};
|
|
75
|
+
}, "resolveOverlayAnchorTransform");
|
|
76
|
+
const resolveDraggableHostNode = /* @__PURE__ */ __name((activatorNode) => {
|
|
77
|
+
const ownerDocument = activatorNode == null ? void 0 : activatorNode.ownerDocument;
|
|
78
|
+
const floatToolbarContainer = activatorNode == null ? void 0 : activatorNode.closest(".nb-toolbar-container[data-model-uid]");
|
|
79
|
+
const toolbarModelUid = floatToolbarContainer == null ? void 0 : floatToolbarContainer.getAttribute("data-model-uid");
|
|
80
|
+
if (!ownerDocument || !toolbarModelUid) {
|
|
81
|
+
return activatorNode;
|
|
82
|
+
}
|
|
83
|
+
const matchedHosts = Array.from(
|
|
84
|
+
ownerDocument.querySelectorAll(
|
|
85
|
+
`[data-has-float-menu="true"][data-float-menu-model-uid="${toolbarModelUid}"]`
|
|
86
|
+
)
|
|
87
|
+
);
|
|
88
|
+
const popupRoot = floatToolbarContainer == null ? void 0 : floatToolbarContainer.closest(MENU_SUBMENU_POPUP_SELECTOR);
|
|
89
|
+
if (popupRoot) {
|
|
90
|
+
return matchedHosts.find((hostNode) => hostNode.closest(MENU_SUBMENU_POPUP_SELECTOR) === popupRoot) || activatorNode;
|
|
91
|
+
}
|
|
92
|
+
return matchedHosts.find((hostNode) => !hostNode.closest(MENU_SUBMENU_POPUP_SELECTOR)) || matchedHosts[0] || activatorNode;
|
|
93
|
+
}, "resolveDraggableHostNode");
|
|
55
94
|
const DragHandler = /* @__PURE__ */ __name(({
|
|
56
95
|
model,
|
|
57
96
|
children = /* @__PURE__ */ import_react.default.createElement(import_icons.DragOutlined, null)
|
|
58
97
|
}) => {
|
|
59
|
-
const { attributes, listeners, setNodeRef } = (0, import_core.useDraggable)({ id: model.uid });
|
|
98
|
+
const { attributes, isDragging, listeners, setActivatorNodeRef, setNodeRef } = (0, import_core.useDraggable)({ id: model.uid });
|
|
99
|
+
const dragHandlerRef = (0, import_react.useRef)(null);
|
|
100
|
+
const draggableNodeRef = (0, import_react.useRef)(null);
|
|
101
|
+
const pointerPressCleanupRef = (0, import_react.useRef)(null);
|
|
102
|
+
const isDraggingRef = (0, import_react.useRef)(isDragging);
|
|
103
|
+
const isPointerPressActiveRef = (0, import_react.useRef)(false);
|
|
104
|
+
const isToolbarDragActiveRef = (0, import_react.useRef)(false);
|
|
105
|
+
const syncDraggableNodeRef = (0, import_react.useCallback)(
|
|
106
|
+
(activatorNode) => {
|
|
107
|
+
const nextNode = resolveDraggableHostNode(activatorNode);
|
|
108
|
+
if (draggableNodeRef.current === nextNode) {
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
draggableNodeRef.current = nextNode;
|
|
112
|
+
setNodeRef(nextNode);
|
|
113
|
+
},
|
|
114
|
+
[setNodeRef]
|
|
115
|
+
);
|
|
116
|
+
const setDragHandlerNodeRef = (0, import_react.useCallback)(
|
|
117
|
+
(node) => {
|
|
118
|
+
dragHandlerRef.current = node;
|
|
119
|
+
setActivatorNodeRef(node);
|
|
120
|
+
syncDraggableNodeRef(node);
|
|
121
|
+
},
|
|
122
|
+
[setActivatorNodeRef, syncDraggableNodeRef]
|
|
123
|
+
);
|
|
124
|
+
const dispatchToolbarDragActivity = (0, import_react.useCallback)(
|
|
125
|
+
(active) => {
|
|
126
|
+
var _a;
|
|
127
|
+
const ownerDocument = (_a = dragHandlerRef.current) == null ? void 0 : _a.ownerDocument;
|
|
128
|
+
if (!ownerDocument) {
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
ownerDocument.dispatchEvent(
|
|
132
|
+
new CustomEvent(TOOLBAR_DRAG_ACTIVITY_EVENT, {
|
|
133
|
+
detail: { active, modelUid: model.uid }
|
|
134
|
+
})
|
|
135
|
+
);
|
|
136
|
+
},
|
|
137
|
+
[model.uid]
|
|
138
|
+
);
|
|
139
|
+
const dispatchToolbarDragAnchor = (0, import_react.useCallback)(
|
|
140
|
+
(detail) => {
|
|
141
|
+
var _a;
|
|
142
|
+
const ownerDocument = (_a = dragHandlerRef.current) == null ? void 0 : _a.ownerDocument;
|
|
143
|
+
if (!ownerDocument) {
|
|
144
|
+
return;
|
|
145
|
+
}
|
|
146
|
+
ownerDocument.dispatchEvent(
|
|
147
|
+
new CustomEvent(TOOLBAR_DRAG_ANCHOR_EVENT, {
|
|
148
|
+
detail: { modelUid: model.uid, point: detail.point }
|
|
149
|
+
})
|
|
150
|
+
);
|
|
151
|
+
},
|
|
152
|
+
[model.uid]
|
|
153
|
+
);
|
|
154
|
+
const clearPointerPressListeners = (0, import_react.useCallback)(() => {
|
|
155
|
+
var _a;
|
|
156
|
+
(_a = pointerPressCleanupRef.current) == null ? void 0 : _a.call(pointerPressCleanupRef);
|
|
157
|
+
pointerPressCleanupRef.current = null;
|
|
158
|
+
}, []);
|
|
159
|
+
const syncToolbarDragActivity = (0, import_react.useCallback)(() => {
|
|
160
|
+
const nextActive = isPointerPressActiveRef.current || isDraggingRef.current;
|
|
161
|
+
if (nextActive === isToolbarDragActiveRef.current) {
|
|
162
|
+
return;
|
|
163
|
+
}
|
|
164
|
+
isToolbarDragActiveRef.current = nextActive;
|
|
165
|
+
dispatchToolbarDragActivity(nextActive);
|
|
166
|
+
}, [dispatchToolbarDragActivity]);
|
|
167
|
+
const handlePointerPressEnd = (0, import_react.useCallback)(() => {
|
|
168
|
+
isPointerPressActiveRef.current = false;
|
|
169
|
+
clearPointerPressListeners();
|
|
170
|
+
syncToolbarDragActivity();
|
|
171
|
+
}, [clearPointerPressListeners, syncToolbarDragActivity]);
|
|
172
|
+
const registerPointerPressListeners = (0, import_react.useCallback)(() => {
|
|
173
|
+
var _a;
|
|
174
|
+
const ownerDocument = (_a = dragHandlerRef.current) == null ? void 0 : _a.ownerDocument;
|
|
175
|
+
const ownerWindow = ownerDocument == null ? void 0 : ownerDocument.defaultView;
|
|
176
|
+
if (!ownerDocument) {
|
|
177
|
+
return;
|
|
178
|
+
}
|
|
179
|
+
clearPointerPressListeners();
|
|
180
|
+
const handlePointerEnd = /* @__PURE__ */ __name(() => {
|
|
181
|
+
handlePointerPressEnd();
|
|
182
|
+
}, "handlePointerEnd");
|
|
183
|
+
const handleKeyDown = /* @__PURE__ */ __name((event) => {
|
|
184
|
+
if (event.key === "Escape") {
|
|
185
|
+
handlePointerPressEnd();
|
|
186
|
+
}
|
|
187
|
+
}, "handleKeyDown");
|
|
188
|
+
ownerDocument.addEventListener("pointerup", handlePointerEnd, true);
|
|
189
|
+
ownerDocument.addEventListener("pointercancel", handlePointerEnd, true);
|
|
190
|
+
ownerDocument.addEventListener("keydown", handleKeyDown, true);
|
|
191
|
+
ownerWindow == null ? void 0 : ownerWindow.addEventListener("blur", handlePointerEnd);
|
|
192
|
+
pointerPressCleanupRef.current = () => {
|
|
193
|
+
ownerDocument.removeEventListener("pointerup", handlePointerEnd, true);
|
|
194
|
+
ownerDocument.removeEventListener("pointercancel", handlePointerEnd, true);
|
|
195
|
+
ownerDocument.removeEventListener("keydown", handleKeyDown, true);
|
|
196
|
+
ownerWindow == null ? void 0 : ownerWindow.removeEventListener("blur", handlePointerEnd);
|
|
197
|
+
};
|
|
198
|
+
}, [clearPointerPressListeners, handlePointerPressEnd]);
|
|
199
|
+
(0, import_react.useEffect)(() => {
|
|
200
|
+
syncDraggableNodeRef(dragHandlerRef.current);
|
|
201
|
+
}, [syncDraggableNodeRef]);
|
|
202
|
+
(0, import_react.useEffect)(() => {
|
|
203
|
+
isDraggingRef.current = isDragging;
|
|
204
|
+
syncToolbarDragActivity();
|
|
205
|
+
}, [isDragging, syncToolbarDragActivity]);
|
|
206
|
+
(0, import_react.useEffect)(() => {
|
|
207
|
+
return () => {
|
|
208
|
+
if (isToolbarDragActiveRef.current) {
|
|
209
|
+
dispatchToolbarDragActivity(false);
|
|
210
|
+
}
|
|
211
|
+
isPointerPressActiveRef.current = false;
|
|
212
|
+
isDraggingRef.current = false;
|
|
213
|
+
isToolbarDragActiveRef.current = false;
|
|
214
|
+
clearPointerPressListeners();
|
|
215
|
+
};
|
|
216
|
+
}, [clearPointerPressListeners, dispatchToolbarDragActivity]);
|
|
60
217
|
return /* @__PURE__ */ import_react.default.createElement(
|
|
61
218
|
"span",
|
|
62
219
|
{
|
|
63
|
-
ref:
|
|
220
|
+
ref: setDragHandlerNodeRef,
|
|
64
221
|
...listeners,
|
|
65
222
|
...attributes,
|
|
223
|
+
onPointerDownCapture: (event) => {
|
|
224
|
+
if (event.button !== 0) {
|
|
225
|
+
return;
|
|
226
|
+
}
|
|
227
|
+
dispatchToolbarDragAnchor({
|
|
228
|
+
point: {
|
|
229
|
+
x: event.clientX,
|
|
230
|
+
y: event.clientY
|
|
231
|
+
}
|
|
232
|
+
});
|
|
233
|
+
isPointerPressActiveRef.current = true;
|
|
234
|
+
syncToolbarDragActivity();
|
|
235
|
+
registerPointerPressListeners();
|
|
236
|
+
},
|
|
66
237
|
style: {
|
|
67
238
|
cursor: "grab"
|
|
68
239
|
}
|
|
@@ -103,22 +274,54 @@ const Droppable = /* @__PURE__ */ __name(({ model, children }) => {
|
|
|
103
274
|
}, "Droppable");
|
|
104
275
|
const DndProvider = /* @__PURE__ */ __name(({
|
|
105
276
|
persist = true,
|
|
277
|
+
showDragOverlay = true,
|
|
106
278
|
children,
|
|
279
|
+
onDragStart,
|
|
107
280
|
onDragEnd,
|
|
281
|
+
onDragCancel,
|
|
108
282
|
...restProps
|
|
109
283
|
}) => {
|
|
110
284
|
const [activeId, setActiveId] = (0, import_react.useState)(null);
|
|
285
|
+
const [dragAnchorPoint, setDragAnchorPoint] = (0, import_react.useState)(null);
|
|
111
286
|
const flowEngine = (0, import_provider.useFlowEngine)();
|
|
287
|
+
(0, import_react.useEffect)(() => {
|
|
288
|
+
if (typeof document === "undefined") {
|
|
289
|
+
return;
|
|
290
|
+
}
|
|
291
|
+
const handleToolbarDragAnchor = /* @__PURE__ */ __name((event) => {
|
|
292
|
+
var _a;
|
|
293
|
+
const customEvent = event;
|
|
294
|
+
setDragAnchorPoint(((_a = customEvent.detail) == null ? void 0 : _a.point) || null);
|
|
295
|
+
}, "handleToolbarDragAnchor");
|
|
296
|
+
document.addEventListener(TOOLBAR_DRAG_ANCHOR_EVENT, handleToolbarDragAnchor);
|
|
297
|
+
return () => {
|
|
298
|
+
document.removeEventListener(TOOLBAR_DRAG_ANCHOR_EVENT, handleToolbarDragAnchor);
|
|
299
|
+
};
|
|
300
|
+
}, []);
|
|
301
|
+
const overlayAnchorModifier = (0, import_react.useCallback)(
|
|
302
|
+
({ active, activeNodeRect, transform }) => {
|
|
303
|
+
const nextTransform = resolveOverlayAnchorTransform({
|
|
304
|
+
activeId,
|
|
305
|
+
active,
|
|
306
|
+
transform,
|
|
307
|
+
activeNodeRect,
|
|
308
|
+
dragAnchorPoint
|
|
309
|
+
});
|
|
310
|
+
return nextTransform;
|
|
311
|
+
},
|
|
312
|
+
[activeId, dragAnchorPoint]
|
|
313
|
+
);
|
|
112
314
|
return /* @__PURE__ */ import_react.default.createElement(
|
|
113
315
|
import_core.DndContext,
|
|
114
316
|
{
|
|
317
|
+
...restProps,
|
|
115
318
|
onDragStart: (event) => {
|
|
116
|
-
var _a;
|
|
117
319
|
setActiveId(event.active.id);
|
|
118
|
-
|
|
320
|
+
onDragStart == null ? void 0 : onDragStart(event);
|
|
119
321
|
},
|
|
120
322
|
onDragEnd: (event) => {
|
|
121
323
|
setActiveId(null);
|
|
324
|
+
setDragAnchorPoint(null);
|
|
122
325
|
if (!onDragEnd) {
|
|
123
326
|
if (event.over) {
|
|
124
327
|
flowEngine.moveModel(event.active.id, event.over.id, { persist });
|
|
@@ -127,30 +330,46 @@ const DndProvider = /* @__PURE__ */ __name(({
|
|
|
127
330
|
onDragEnd(event);
|
|
128
331
|
}
|
|
129
332
|
},
|
|
333
|
+
onDragCancel: (event) => {
|
|
334
|
+
setActiveId(null);
|
|
335
|
+
setDragAnchorPoint(null);
|
|
336
|
+
onDragCancel == null ? void 0 : onDragCancel(event);
|
|
337
|
+
},
|
|
130
338
|
...restProps
|
|
131
339
|
},
|
|
132
340
|
children,
|
|
133
|
-
(0, import_react_dom.createPortal)(
|
|
134
|
-
/* @__PURE__ */ import_react.default.createElement(
|
|
135
|
-
|
|
341
|
+
showDragOverlay && typeof document !== "undefined" ? (0, import_react_dom.createPortal)(
|
|
342
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
343
|
+
import_core.DragOverlay,
|
|
136
344
|
{
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
background: "#fff",
|
|
142
|
-
border: "1px solid #1890ff",
|
|
143
|
-
borderRadius: 4,
|
|
144
|
-
padding: "4px 12px",
|
|
145
|
-
color: "#1890ff",
|
|
146
|
-
// fontSize: 18,
|
|
147
|
-
boxShadow: "0 2px 8px rgba(0,0,0,0.15)"
|
|
148
|
-
}
|
|
345
|
+
dropAnimation: null,
|
|
346
|
+
modifiers: [overlayAnchorModifier],
|
|
347
|
+
zIndex: 2e3,
|
|
348
|
+
style: { pointerEvents: "none" }
|
|
149
349
|
},
|
|
150
|
-
|
|
151
|
-
|
|
350
|
+
activeId && /* @__PURE__ */ import_react.default.createElement(
|
|
351
|
+
"span",
|
|
352
|
+
{
|
|
353
|
+
"data-testid": "flow-drag-preview",
|
|
354
|
+
style: {
|
|
355
|
+
display: "inline-flex",
|
|
356
|
+
alignItems: "center",
|
|
357
|
+
whiteSpace: "nowrap",
|
|
358
|
+
background: "#fff",
|
|
359
|
+
border: "1px solid #1890ff",
|
|
360
|
+
borderRadius: 4,
|
|
361
|
+
padding: "4px 12px",
|
|
362
|
+
color: "#1890ff",
|
|
363
|
+
pointerEvents: "none",
|
|
364
|
+
// fontSize: 18,
|
|
365
|
+
boxShadow: "0 2px 8px rgba(0,0,0,0.15)"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
flowEngine.translate("Dragging")
|
|
369
|
+
)
|
|
370
|
+
),
|
|
152
371
|
document.body
|
|
153
|
-
)
|
|
372
|
+
) : null
|
|
154
373
|
);
|
|
155
374
|
}, "DndProvider");
|
|
156
375
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -159,6 +378,8 @@ const DndProvider = /* @__PURE__ */ __name(({
|
|
|
159
378
|
DragHandler,
|
|
160
379
|
Droppable,
|
|
161
380
|
EMPTY_COLUMN_UID,
|
|
381
|
+
TOOLBAR_DRAG_ACTIVITY_EVENT,
|
|
382
|
+
resolveOverlayAnchorTransform,
|
|
162
383
|
...require("./findModelUidPosition"),
|
|
163
384
|
...require("./gridDragPlanner")
|
|
164
385
|
});
|
|
@@ -15,5 +15,6 @@ export interface SelectWithTitleProps {
|
|
|
15
15
|
itemKey?: string;
|
|
16
16
|
onChange?: (...args: any[]) => void;
|
|
17
17
|
dropdownRender?: any;
|
|
18
|
+
tooltip?: any;
|
|
18
19
|
}
|
|
19
|
-
export declare function SelectWithTitle({ title, getDefaultValue, onChange, options, fieldNames, itemKey, ...others }: SelectWithTitleProps): React.JSX.Element;
|
|
20
|
+
export declare function SelectWithTitle({ title, getDefaultValue, onChange, options, fieldNames, itemKey, tooltip, ...others }: SelectWithTitleProps): React.JSX.Element;
|
|
@@ -50,6 +50,7 @@ function SelectWithTitle({
|
|
|
50
50
|
options,
|
|
51
51
|
fieldNames,
|
|
52
52
|
itemKey,
|
|
53
|
+
tooltip,
|
|
53
54
|
...others
|
|
54
55
|
}) {
|
|
55
56
|
const [open, setOpen] = (0, import_react.useState)(false);
|
|
@@ -80,6 +81,18 @@ function SelectWithTitle({
|
|
|
80
81
|
setValue(val);
|
|
81
82
|
onChange == null ? void 0 : onChange({ [itemKey]: val });
|
|
82
83
|
}, "handleChange");
|
|
84
|
+
const titleNode = /* @__PURE__ */ import_react.default.createElement(
|
|
85
|
+
"span",
|
|
86
|
+
{
|
|
87
|
+
style: {
|
|
88
|
+
whiteSpace: "nowrap",
|
|
89
|
+
// 不换行
|
|
90
|
+
flexShrink: 0
|
|
91
|
+
// 不被挤压
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
title
|
|
95
|
+
);
|
|
83
96
|
return /* @__PURE__ */ import_react.default.createElement(
|
|
84
97
|
"div",
|
|
85
98
|
{
|
|
@@ -94,18 +107,7 @@ function SelectWithTitle({
|
|
|
94
107
|
}, 200);
|
|
95
108
|
}
|
|
96
109
|
},
|
|
97
|
-
/* @__PURE__ */ import_react.default.createElement(
|
|
98
|
-
"span",
|
|
99
|
-
{
|
|
100
|
-
style: {
|
|
101
|
-
whiteSpace: "nowrap",
|
|
102
|
-
// 不换行
|
|
103
|
-
flexShrink: 0
|
|
104
|
-
// 不被挤压
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
title
|
|
108
|
-
),
|
|
110
|
+
tooltip ? /* @__PURE__ */ import_react.default.createElement(import_antd.Tooltip, { title: tooltip, placement: "top", destroyTooltipOnHide: true }, titleNode) : titleNode,
|
|
109
111
|
/* @__PURE__ */ import_react.default.createElement(
|
|
110
112
|
import_antd.Select,
|
|
111
113
|
{
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
7
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
8
|
*/
|
|
9
|
+
import type { DropdownProps } from 'antd';
|
|
9
10
|
import React from 'react';
|
|
10
11
|
import { FlowModel } from '../../../../models';
|
|
11
12
|
/**
|
|
@@ -18,6 +19,8 @@ interface DefaultSettingsIconProps {
|
|
|
18
19
|
showCopyUidButton?: boolean;
|
|
19
20
|
menuLevels?: number;
|
|
20
21
|
flattenSubMenus?: boolean;
|
|
22
|
+
onDropdownVisibleChange?: (open: boolean) => void;
|
|
23
|
+
getPopupContainer?: DropdownProps['getPopupContainer'];
|
|
21
24
|
[key: string]: any;
|
|
22
25
|
}
|
|
23
26
|
export declare const DefaultSettingsIcon: React.FC<DefaultSettingsIconProps>;
|