@huanban/rulego-editor-react 1.1.0 → 1.1.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.
- package/LICENSE +190 -0
- package/dist/components/AIAssistant.d.ts +22 -0
- package/dist/components/ComponentSidebar.d.ts +8 -0
- package/dist/components/ContextMenu.d.ts +7 -3
- package/dist/components/CopilotChat.d.ts +31 -0
- package/dist/components/DataViewDialog.d.ts +8 -0
- package/dist/components/DebugPanel.d.ts +8 -0
- package/dist/components/DynamicForm.d.ts +65 -0
- package/dist/components/EdgePropertyDrawer.d.ts +14 -0
- package/dist/components/EditorToolbar.d.ts +8 -0
- package/dist/components/ImportExportDialog.d.ts +8 -0
- package/dist/components/LogViewer.d.ts +45 -0
- package/dist/components/MiniMap.d.ts +8 -0
- package/dist/components/NodePropertyDrawer.d.ts +93 -1
- package/dist/components/RuleChainSettings.d.ts +8 -0
- package/dist/components/RuleGoEditor.d.ts +52 -7
- package/dist/components/RuleMaintenancePanel.d.ts +15 -0
- package/dist/components/SearchPanel.d.ts +8 -0
- package/dist/components/SearchableSelect.d.ts +29 -0
- package/dist/components/ValidationPanel.d.ts +8 -0
- package/dist/components/WorkflowInfoPanel.d.ts +17 -1
- package/dist/components/WorkflowList.d.ts +8 -1
- package/dist/components/properties/AgentOrchestrationProperties.d.ts +13 -0
- package/dist/i18n.d.ts +14 -0
- package/dist/index.cjs.js +5762 -927
- package/dist/index.d.ts +16 -2
- package/dist/index.esm.js +77742 -44579
- package/dist/style.css +1 -1
- package/package.json +13 -13
package/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding any notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2024 OpenClaw
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { AIAssistantOpenOptions, HuanbanRulegoEditor } from '@huanban/rulego-editor-core';
|
|
3
|
+
import type { RuleGoEditorRef } from './RuleGoEditor';
|
|
4
|
+
export interface AIAssistantProps {
|
|
5
|
+
/** RuleGoEditor ref;适合放在宿主自定义工具栏中 */
|
|
6
|
+
editorRef?: React.RefObject<RuleGoEditorRef | null>;
|
|
7
|
+
/** core 编辑器实例;适合非 ref 场景直接调用 */
|
|
8
|
+
editor?: HuanbanRulegoEditor | null;
|
|
9
|
+
/** 打开 AI 助手时携带的上下文 */
|
|
10
|
+
options?: AIAssistantOpenOptions;
|
|
11
|
+
/** 是否只显示图标 */
|
|
12
|
+
iconOnly?: boolean;
|
|
13
|
+
/** 按钮文本 */
|
|
14
|
+
label?: string;
|
|
15
|
+
className?: string;
|
|
16
|
+
style?: React.CSSProperties;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
onOpen?: () => void;
|
|
19
|
+
}
|
|
20
|
+
export declare function AIAssistant({ editorRef, editor, options, iconOnly, label, className, style, disabled, onOpen, }: AIAssistantProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export default AIAssistant;
|
|
22
|
+
//# sourceMappingURL=AIAssistant.d.ts.map
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
* @see ComponentDefinition — 组件定义类型
|
|
18
18
|
*/
|
|
19
19
|
import React from 'react';
|
|
20
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
21
|
+
import type { EditorTranslate } from '../i18n';
|
|
20
22
|
/** 组件字段定义(用于属性编辑面板) */
|
|
21
23
|
export interface ComponentField {
|
|
22
24
|
/** 字段名 */
|
|
@@ -65,6 +67,12 @@ export interface ComponentSidebarProps {
|
|
|
65
67
|
collapsed?: boolean;
|
|
66
68
|
/** 搜索框占位符 */
|
|
67
69
|
searchPlaceholder?: string;
|
|
70
|
+
/** Current locale. Defaults to zh-CN. */
|
|
71
|
+
locale?: string;
|
|
72
|
+
/** Extra locale messages merged into the selected locale. */
|
|
73
|
+
messages?: LocaleMessages;
|
|
74
|
+
/** Host-provided translation function. */
|
|
75
|
+
t?: EditorTranslate;
|
|
68
76
|
}
|
|
69
77
|
/**
|
|
70
78
|
* ComponentSidebar 组件
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
* @see ContextMenuProps — 菜单参数
|
|
15
15
|
*/
|
|
16
16
|
import React from 'react';
|
|
17
|
+
import type { FrameworkI18nProps } from '../i18n';
|
|
17
18
|
/** 菜单项定义 */
|
|
18
19
|
export interface ContextMenuItem {
|
|
19
20
|
/** 唯一标识 */
|
|
@@ -39,6 +40,7 @@ export interface ContextMenuItem {
|
|
|
39
40
|
}
|
|
40
41
|
/** 菜单目标类型 */
|
|
41
42
|
export type ContextMenuTarget = 'node' | 'edge' | 'canvas';
|
|
43
|
+
export type ContextMenuI18nOptions = FrameworkI18nProps;
|
|
42
44
|
/** ContextMenu Props */
|
|
43
45
|
export interface ContextMenuProps {
|
|
44
46
|
/** 是否可见 */
|
|
@@ -75,7 +77,9 @@ export declare function getNodeContextMenuItems(handlers: {
|
|
|
75
77
|
onEditProperties?: () => void;
|
|
76
78
|
onViewConnections?: () => void;
|
|
77
79
|
onDuplicate?: () => void;
|
|
78
|
-
|
|
80
|
+
onRunFromNode?: () => void;
|
|
81
|
+
onRunSingleNode?: () => void;
|
|
82
|
+
}, i18n?: ContextMenuI18nOptions): ContextMenuItem[];
|
|
79
83
|
/**
|
|
80
84
|
* 生成边右键菜单项
|
|
81
85
|
*
|
|
@@ -85,7 +89,7 @@ export declare function getNodeContextMenuItems(handlers: {
|
|
|
85
89
|
export declare function getEdgeContextMenuItems(handlers: {
|
|
86
90
|
onEditProperties?: () => void;
|
|
87
91
|
onDelete?: () => void;
|
|
88
|
-
}): ContextMenuItem[];
|
|
92
|
+
}, i18n?: ContextMenuI18nOptions): ContextMenuItem[];
|
|
89
93
|
/**
|
|
90
94
|
* 生成画布右键菜单项
|
|
91
95
|
*
|
|
@@ -97,6 +101,6 @@ export declare function getCanvasContextMenuItems(handlers: {
|
|
|
97
101
|
onSelectAll?: () => void;
|
|
98
102
|
onFitView?: () => void;
|
|
99
103
|
onResetZoom?: () => void;
|
|
100
|
-
}): ContextMenuItem[];
|
|
104
|
+
}, i18n?: ContextMenuI18nOptions): ContextMenuItem[];
|
|
101
105
|
export default ContextMenu;
|
|
102
106
|
//# sourceMappingURL=ContextMenu.d.ts.map
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file index.tsx
|
|
3
|
+
* @description Copilot Chat 独立组件
|
|
4
|
+
*/
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
7
|
+
import type { EditorTranslate } from '../i18n';
|
|
8
|
+
/**
|
|
9
|
+
* Copilot 聊天组件的属性接口
|
|
10
|
+
* @interface CopilotChatProps
|
|
11
|
+
*/
|
|
12
|
+
export interface CopilotChatProps {
|
|
13
|
+
/** 绑定对话的规则链 ID,用于上下文隔离 */
|
|
14
|
+
ruleChainId: string;
|
|
15
|
+
/** Current locale. Defaults to zh-CN. */
|
|
16
|
+
locale?: string;
|
|
17
|
+
/** Extra locale messages merged into the selected locale. */
|
|
18
|
+
messages?: LocaleMessages;
|
|
19
|
+
/** Host-provided translation function. */
|
|
20
|
+
t?: EditorTranslate;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* AI Copilot 侧边栏对话组件 (CopilotChat)
|
|
24
|
+
*
|
|
25
|
+
* @component
|
|
26
|
+
* @description 独立出来的 AI Copilot 侧边聊天面板组件。
|
|
27
|
+
* 该组件不直接依赖底层的 fetch 或 axios,而是通过 `useEditorApi()` 获取通信层能力,
|
|
28
|
+
* 以便对接 HuanbanClaw 的大模型流式传输能力 (`streamChat`)。
|
|
29
|
+
*/
|
|
30
|
+
export declare const CopilotChat: React.FC<CopilotChatProps>;
|
|
31
|
+
//# sourceMappingURL=CopilotChat.d.ts.map
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
* @see DataViewDialogProps — 组件参数
|
|
12
12
|
*/
|
|
13
13
|
import React from 'react';
|
|
14
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
15
|
+
import type { EditorTranslate } from '../i18n';
|
|
14
16
|
/** DataViewDialog Props */
|
|
15
17
|
export interface DataViewDialogProps {
|
|
16
18
|
/** 是否显示 */
|
|
@@ -29,6 +31,12 @@ export interface DataViewDialogProps {
|
|
|
29
31
|
* @param content 内容
|
|
30
32
|
*/
|
|
31
33
|
onNotify?: (type: 'success' | 'error' | 'info', content: string) => void;
|
|
34
|
+
/** Current locale. Defaults to zh-CN. */
|
|
35
|
+
locale?: string;
|
|
36
|
+
/** Extra locale messages merged into the selected locale. */
|
|
37
|
+
messages?: LocaleMessages;
|
|
38
|
+
/** Host-provided translation function. */
|
|
39
|
+
t?: EditorTranslate;
|
|
32
40
|
}
|
|
33
41
|
/**
|
|
34
42
|
* DataViewDialog 组件
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
* @see DebugPanelProps — 组件参数
|
|
16
16
|
*/
|
|
17
17
|
import React from 'react';
|
|
18
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
19
|
+
import type { EditorTranslate } from '../i18n';
|
|
18
20
|
/** 调试日志条目 */
|
|
19
21
|
export interface DebugLogItem {
|
|
20
22
|
/** 时间戳 */
|
|
@@ -80,6 +82,12 @@ export interface DebugPanelProps {
|
|
|
80
82
|
* @param content 提示内容
|
|
81
83
|
*/
|
|
82
84
|
onNotify?: (type: 'success' | 'error' | 'warning' | 'info', content: string) => void;
|
|
85
|
+
/** Current locale. Defaults to zh-CN. */
|
|
86
|
+
locale?: string;
|
|
87
|
+
/** Extra locale messages merged into the selected locale. */
|
|
88
|
+
messages?: LocaleMessages;
|
|
89
|
+
/** Host-provided translation function. */
|
|
90
|
+
t?: EditorTranslate;
|
|
83
91
|
}
|
|
84
92
|
/**
|
|
85
93
|
* DebugPanel 组件
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file DynamicForm.tsx
|
|
3
|
+
* @description 玻璃拟态风格的动态属性表单
|
|
4
|
+
*/
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
7
|
+
import type { EditorTranslate } from '../i18n';
|
|
8
|
+
import { type SearchableSelectOption } from './SearchableSelect';
|
|
9
|
+
/**
|
|
10
|
+
* 动态表单字段定义配置项
|
|
11
|
+
* @interface FormField
|
|
12
|
+
*/
|
|
13
|
+
export interface FormField {
|
|
14
|
+
/** 字段唯一标识,对应业务数据的 key */
|
|
15
|
+
key: string;
|
|
16
|
+
/** UI 呈现的中文标签 */
|
|
17
|
+
label: string;
|
|
18
|
+
/** 可选翻译 key,优先级高于 fields.<key> */
|
|
19
|
+
labelKey?: string;
|
|
20
|
+
/** 字段类型,支持数字、文本、布尔、复杂 JSON、下拉等 */
|
|
21
|
+
type: 'string' | 'number' | 'boolean' | 'json' | 'select' | 'textarea' | 'password';
|
|
22
|
+
/** 默认值 */
|
|
23
|
+
defaultValue?: any;
|
|
24
|
+
/** select 选项 */
|
|
25
|
+
options?: SearchableSelectOption[];
|
|
26
|
+
/** select 是否多选 */
|
|
27
|
+
multiple?: boolean;
|
|
28
|
+
/** 输入提示 */
|
|
29
|
+
placeholder?: string;
|
|
30
|
+
/** 帮助文本 */
|
|
31
|
+
help?: string;
|
|
32
|
+
/** textarea 行数 */
|
|
33
|
+
rows?: number;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* 动态表单组件的属性接口
|
|
37
|
+
* @interface DynamicFormProps
|
|
38
|
+
*/
|
|
39
|
+
export interface DynamicFormProps {
|
|
40
|
+
/** 外部传入的 Schema 配置 */
|
|
41
|
+
schema: FormField[];
|
|
42
|
+
/** 当前节点或配置面板绑定的实际数据模型 */
|
|
43
|
+
formData: Record<string, any>;
|
|
44
|
+
/**
|
|
45
|
+
* 表单数据变更回调
|
|
46
|
+
* @param key 修改的字段名称
|
|
47
|
+
* @param value 修改后的新值
|
|
48
|
+
*/
|
|
49
|
+
onChange: (key: string, value: any) => void;
|
|
50
|
+
/** Current locale. Defaults to zh-CN. */
|
|
51
|
+
locale?: string;
|
|
52
|
+
/** Extra locale messages merged into the selected locale. */
|
|
53
|
+
messages?: LocaleMessages;
|
|
54
|
+
/** Host-provided translation function. */
|
|
55
|
+
t?: EditorTranslate;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* 玻璃拟态风格的动态属性表单组件 (DynamicForm)
|
|
59
|
+
*
|
|
60
|
+
* @component
|
|
61
|
+
* @description 接收 JSON Schema 生成配置项列表,避免写死表单。
|
|
62
|
+
* 完全剥离 Element Plus,采用原生 HTML + HSL 变量完成拟态风格渲染。
|
|
63
|
+
*/
|
|
64
|
+
export declare const DynamicForm: React.FC<DynamicFormProps>;
|
|
65
|
+
//# sourceMappingURL=DynamicForm.d.ts.map
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
* @see EdgeModel — 边模型类型
|
|
12
12
|
*/
|
|
13
13
|
import React from 'react';
|
|
14
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
15
|
+
import type { EditorTranslate } from '../i18n';
|
|
14
16
|
/** 边模型数据 */
|
|
15
17
|
export interface EdgeModel {
|
|
16
18
|
/** 边 ID */
|
|
@@ -32,10 +34,22 @@ export interface EdgePropertyDrawerProps {
|
|
|
32
34
|
visible: boolean;
|
|
33
35
|
/** 边模型数据 */
|
|
34
36
|
edgeModel: EdgeModel | null;
|
|
37
|
+
/** Source-node relation type candidates. Aligns with official sourceNodeView.relationTypes. */
|
|
38
|
+
relationTypes?: Array<string | {
|
|
39
|
+
value: string;
|
|
40
|
+
label?: string;
|
|
41
|
+
color?: string;
|
|
42
|
+
}>;
|
|
35
43
|
/** 提交回调,传递更新后的边模型 */
|
|
36
44
|
onSubmit: (model: EdgeModel) => void;
|
|
37
45
|
/** 关闭回调 */
|
|
38
46
|
onClose: () => void;
|
|
47
|
+
/** Current locale. Defaults to zh-CN. */
|
|
48
|
+
locale?: string;
|
|
49
|
+
/** Extra locale messages merged into the selected locale. */
|
|
50
|
+
messages?: LocaleMessages;
|
|
51
|
+
/** Host-provided translation function. */
|
|
52
|
+
t?: EditorTranslate;
|
|
39
53
|
}
|
|
40
54
|
/**
|
|
41
55
|
* EdgePropertyDrawer 组件
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
* @see EditorToolbarProps — 工具栏参数
|
|
17
17
|
*/
|
|
18
18
|
import React from 'react';
|
|
19
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
20
|
+
import type { EditorTranslate } from '../i18n';
|
|
19
21
|
/** 工具栏按钮定义 */
|
|
20
22
|
export interface ToolbarButton {
|
|
21
23
|
/** 唯一标识 */
|
|
@@ -87,6 +89,12 @@ export interface EditorToolbarProps {
|
|
|
87
89
|
hiddenButtons?: string[];
|
|
88
90
|
/** 规则链名称(显示在工具栏中央) */
|
|
89
91
|
chainName?: string;
|
|
92
|
+
/** Current locale. Defaults to zh-CN. */
|
|
93
|
+
locale?: string;
|
|
94
|
+
/** Extra locale messages merged into the selected locale. */
|
|
95
|
+
messages?: LocaleMessages;
|
|
96
|
+
/** Host-provided translation function. */
|
|
97
|
+
t?: EditorTranslate;
|
|
90
98
|
}
|
|
91
99
|
/**
|
|
92
100
|
* EditorToolbar 组件
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
* - 通过回调 props 传递导入数据
|
|
16
16
|
*/
|
|
17
17
|
import React from 'react';
|
|
18
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
19
|
+
import type { EditorTranslate } from '../i18n';
|
|
18
20
|
/** 导入/导出模式 */
|
|
19
21
|
export type ImportExportMode = 'import' | 'export';
|
|
20
22
|
/** ImportExportDialog 属性 */
|
|
@@ -31,6 +33,12 @@ export interface ImportExportDialogProps {
|
|
|
31
33
|
onClose: () => void;
|
|
32
34
|
/** 通知回调 */
|
|
33
35
|
onNotify?: (type: 'success' | 'error' | 'info', message: string) => void;
|
|
36
|
+
/** Current locale. Defaults to zh-CN. */
|
|
37
|
+
locale?: string;
|
|
38
|
+
/** Extra locale messages merged into the selected locale. */
|
|
39
|
+
messages?: LocaleMessages;
|
|
40
|
+
/** Host-provided translation function. */
|
|
41
|
+
t?: EditorTranslate;
|
|
34
42
|
}
|
|
35
43
|
/**
|
|
36
44
|
* ImportExportDialog 组件
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file LogViewer.tsx
|
|
3
|
+
* @description 支持虚拟滚动的高性能调试日志面板
|
|
4
|
+
*/
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
7
|
+
import type { EditorTranslate } from '../i18n';
|
|
8
|
+
/**
|
|
9
|
+
* 日志实体接口定义
|
|
10
|
+
* @interface LogEntry
|
|
11
|
+
*/
|
|
12
|
+
export interface LogEntry {
|
|
13
|
+
/** 唯一日志标识 UUID */
|
|
14
|
+
id: string;
|
|
15
|
+
/** 产生日志的毫秒时间戳 */
|
|
16
|
+
timestamp: number;
|
|
17
|
+
/** 日志级别 */
|
|
18
|
+
level: 'info' | 'warn' | 'error' | 'debug';
|
|
19
|
+
/** 实际文本内容 */
|
|
20
|
+
message: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* 日志面板组件属性
|
|
24
|
+
* @interface LogViewerProps
|
|
25
|
+
*/
|
|
26
|
+
export interface LogViewerProps {
|
|
27
|
+
/** 从外层 WebSocket 接收并维护的日志数组 */
|
|
28
|
+
logs: LogEntry[];
|
|
29
|
+
/** Current locale. Defaults to zh-CN. */
|
|
30
|
+
locale?: string;
|
|
31
|
+
/** Extra locale messages merged into the selected locale. */
|
|
32
|
+
messages?: LocaleMessages;
|
|
33
|
+
/** Host-provided translation function. */
|
|
34
|
+
t?: EditorTranslate;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* 高性能调试日志控制台 (LogViewer)
|
|
38
|
+
*
|
|
39
|
+
* @component
|
|
40
|
+
* @description 专为高并发/海量报文调试设计的面板。
|
|
41
|
+
* 考虑到不引入额外的庞大虚拟列表库(如 react-window),此处实现了基础的数组切片限流策略。
|
|
42
|
+
* 始终保证 DOM 树内仅渲染最新 200 条节点,彻底根除由于 `DOM Nodes` 暴增导致的浏览器卡顿问题。
|
|
43
|
+
*/
|
|
44
|
+
export declare const LogViewer: React.FC<LogViewerProps>;
|
|
45
|
+
//# sourceMappingURL=LogViewer.d.ts.map
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
* @see MiniMapProps — 参数类型
|
|
14
14
|
*/
|
|
15
15
|
import React from 'react';
|
|
16
|
+
import type { LocaleMessages } from '@huanban/rulego-editor-core';
|
|
17
|
+
import type { EditorTranslate } from '../i18n';
|
|
16
18
|
/** 小地图中的节点数据 */
|
|
17
19
|
export interface MiniMapNode {
|
|
18
20
|
/** 节点 ID */
|
|
@@ -64,6 +66,12 @@ export interface MiniMapProps {
|
|
|
64
66
|
}) => void;
|
|
65
67
|
/** 节点点击回调 */
|
|
66
68
|
onNodeClick?: (nodeId: string) => void;
|
|
69
|
+
/** Current locale. Defaults to zh-CN. */
|
|
70
|
+
locale?: string;
|
|
71
|
+
/** Extra locale messages merged into the selected locale. */
|
|
72
|
+
messages?: LocaleMessages;
|
|
73
|
+
/** Host-provided translation function. */
|
|
74
|
+
t?: EditorTranslate;
|
|
67
75
|
}
|
|
68
76
|
/**
|
|
69
77
|
* MiniMap 组件
|