aldehyde 0.2.511 → 0.2.513

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.
Files changed (73) hide show
  1. package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.css +99 -99
  2. package/lib/draw-canvas-edit/components/asset-bar/index.less +35 -35
  3. package/lib/draw-canvas-edit/components/main-header/index.less +23 -23
  4. package/lib/form/criteria-form.d.ts +1 -0
  5. package/lib/form/criteria-form.d.ts.map +1 -1
  6. package/lib/form/criteria-form.js +14 -4
  7. package/lib/form/criteria-form.js.map +1 -1
  8. package/lib/lowcode-components/base-table/index.less +61 -61
  9. package/lib/lowcode-components/data-number/index.less +10 -10
  10. package/lib/lowcode-components/date-time/index.less +4 -4
  11. package/lib/lowcode-components/four-angle-glow-border/index.less +49 -49
  12. package/lib/lowcode-components/lowcode-view/component/font/FontGlobal.css +26 -26
  13. package/lib/lowcode-components/lowcode-view/component/screen-fit/index.less +13 -13
  14. package/lib/lowcode-components/text-scroller/index.less +28 -28
  15. package/lib/table/act-table.js +1 -1
  16. package/lib/table/act-table.js.map +1 -1
  17. package/lib/table/select-table.d.ts.map +1 -1
  18. package/lib/table/select-table.js +36 -4
  19. package/lib/table/select-table.js.map +1 -1
  20. package/package.json +1 -1
  21. package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.css +99 -99
  22. package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.json +156 -156
  23. package/src/aldehyde/draw-canvas-edit/components/asset-bar/index.less +35 -35
  24. package/src/aldehyde/draw-canvas-edit/components/asset-bar/index.tsx +110 -110
  25. package/src/aldehyde/draw-canvas-edit/components/main-header/index.less +23 -23
  26. package/src/aldehyde/draw-canvas-edit/components/main-header/index.tsx +263 -263
  27. package/src/aldehyde/draw-canvas-edit/components/render/draws/index.ts +7 -7
  28. package/src/aldehyde/draw-canvas-edit/components/render/graphs/base-graph.ts +241 -241
  29. package/src/aldehyde/draw-canvas-edit/components/render/graphs/circle.ts +699 -699
  30. package/src/aldehyde/draw-canvas-edit/components/render/graphs/curve.ts +500 -500
  31. package/src/aldehyde/draw-canvas-edit/components/render/graphs/index.ts +5 -5
  32. package/src/aldehyde/draw-canvas-edit/components/render/graphs/line.ts +493 -493
  33. package/src/aldehyde/draw-canvas-edit/components/render/graphs/rect.ts +680 -680
  34. package/src/aldehyde/draw-canvas-edit/components/render/handlers/drag-handlers.ts +68 -68
  35. package/src/aldehyde/draw-canvas-edit/components/render/handlers/graph-handlers.ts +113 -113
  36. package/src/aldehyde/draw-canvas-edit/components/render/handlers/index.ts +9 -9
  37. package/src/aldehyde/draw-canvas-edit/components/render/handlers/key-move-handlers.ts +49 -49
  38. package/src/aldehyde/draw-canvas-edit/components/render/handlers/link-handlers.ts +45 -45
  39. package/src/aldehyde/draw-canvas-edit/components/render/handlers/shutcut-handlers.ts +45 -45
  40. package/src/aldehyde/draw-canvas-edit/components/render/handlers/text-handlers.ts +81 -81
  41. package/src/aldehyde/draw-canvas-edit/components/render/handlers/zoom-handlers.ts +59 -59
  42. package/src/aldehyde/draw-canvas-edit/components/render/tools/align-tool.ts +89 -89
  43. package/src/aldehyde/draw-canvas-edit/components/render/tools/asset-tool.ts +154 -154
  44. package/src/aldehyde/draw-canvas-edit/components/render/tools/link-tool.ts +222 -222
  45. package/src/aldehyde/draw-canvas-edit/components/render/tools/z-index-tool.ts +224 -224
  46. package/src/aldehyde/draw-canvas-edit/components/render/utils/a-star.ts +116 -116
  47. package/src/aldehyde/draw-canvas-edit/components/render/utils/bezier-scene-func.ts +72 -72
  48. package/src/aldehyde/draw-canvas-edit/components/setting-form/imag-upload.tsx +119 -119
  49. package/src/aldehyde/form/criteria-form.tsx +15 -3
  50. package/src/aldehyde/layout4/imgs/user.svg +26 -26
  51. package/src/aldehyde/lowcode-components/base-color-block/index.tsx +31 -31
  52. package/src/aldehyde/lowcode-components/base-table/index.less +61 -61
  53. package/src/aldehyde/lowcode-components/data-number/index.less +10 -10
  54. package/src/aldehyde/lowcode-components/date-time/index.less +4 -4
  55. package/src/aldehyde/lowcode-components/date-time/index.tsx +64 -64
  56. package/src/aldehyde/lowcode-components/four-angle-glow-border/index.less +49 -49
  57. package/src/aldehyde/lowcode-components/four-angle-glow-border/index.tsx +53 -53
  58. package/src/aldehyde/lowcode-components/lowcode-view/component/abstract-controller.ts +64 -64
  59. package/src/aldehyde/lowcode-components/lowcode-view/component/abstract-definition.ts +77 -77
  60. package/src/aldehyde/lowcode-components/lowcode-view/component/abstract-designer-loader.ts +36 -36
  61. package/src/aldehyde/lowcode-components/lowcode-view/component/component-container.tsx +144 -144
  62. package/src/aldehyde/lowcode-components/lowcode-view/component/font/FontGlobal.css +26 -26
  63. package/src/aldehyde/lowcode-components/lowcode-view/component/group-layer/controller.ts +36 -36
  64. package/src/aldehyde/lowcode-components/lowcode-view/component/group-layer/definition.ts +53 -53
  65. package/src/aldehyde/lowcode-components/lowcode-view/component/group-layer/index.tsx +15 -15
  66. package/src/aldehyde/lowcode-components/lowcode-view/component/layer-builder.tsx +98 -98
  67. package/src/aldehyde/lowcode-components/lowcode-view/component/screen-fit/index.less +13 -13
  68. package/src/aldehyde/lowcode-components/lowcode-view/component/screen-fit/index.tsx +121 -121
  69. package/src/aldehyde/lowcode-components/placeholder-component/index.tsx +81 -81
  70. package/src/aldehyde/lowcode-components/text-scroller/index.less +28 -28
  71. package/src/aldehyde/lowcode-components/text-scroller/index.tsx +173 -173
  72. package/src/aldehyde/table/act-table.tsx +1 -1
  73. package/src/aldehyde/table/select-table.tsx +40 -2
@@ -1,36 +1,36 @@
1
- .asset-bar {
2
- background-color: #f5f5f5;
3
- width: 200px;
4
- min-height: 100%;
5
-
6
- .asset-list {
7
- display: flex;
8
- flex-wrap: wrap;
9
- padding: 4px;
10
- margin: 0;
11
- list-style: none;
12
-
13
- &>li {
14
- width: 20%;
15
- padding-top: 20%;
16
- flex-shrink: 0;
17
- cursor: pointer;
18
- position: relative;
19
- border-radius: 4px;
20
-
21
- &:hover {
22
- background-color: #ddd;
23
- }
24
-
25
- &>img {
26
- position: absolute;
27
- top: 6px;
28
- left: 6px;
29
- object-fit: contain;
30
- width: calc(~"100% - 12px");
31
- height: calc(~"100% - 12px");
32
- pointer-events: none;
33
- }
34
- }
35
- }
1
+ .asset-bar {
2
+ background-color: #f5f5f5;
3
+ width: 200px;
4
+ min-height: 100%;
5
+
6
+ .asset-list {
7
+ display: flex;
8
+ flex-wrap: wrap;
9
+ padding: 4px;
10
+ margin: 0;
11
+ list-style: none;
12
+
13
+ &>li {
14
+ width: 20%;
15
+ padding-top: 20%;
16
+ flex-shrink: 0;
17
+ cursor: pointer;
18
+ position: relative;
19
+ border-radius: 4px;
20
+
21
+ &:hover {
22
+ background-color: #ddd;
23
+ }
24
+
25
+ &>img {
26
+ position: absolute;
27
+ top: 6px;
28
+ left: 6px;
29
+ object-fit: contain;
30
+ width: calc(~"100% - 12px");
31
+ height: calc(~"100% - 12px");
32
+ pointer-events: none;
33
+ }
34
+ }
35
+ }
36
36
  }
@@ -1,110 +1,110 @@
1
- import React, { DragEvent, useEffect, useMemo, useState } from 'react';
2
- import { Collapse, Tooltip } from "antd";
3
- import { ProgramConfig } from "../../../index";
4
- import './index.less';
5
-
6
- // 组件分组配置
7
- const assetGroups = [
8
- { key: 'SVG', label: '矢量图' },
9
- { key: 'picture', label: '图片' },
10
- { key: 'gif', label: 'GIF' },
11
- // { key: 'composite', label: '图形组合 (JSON)' },
12
- { key: 'other', label: '其他' }
13
- ];
14
-
15
- export const handleImgUrl = (val: string) => {
16
- let src = val;
17
- if (!src || src.startsWith("http")) {
18
- return src;
19
- }
20
- if (src.includes("@R@")) {
21
- const text = src.split("@R@")[1];
22
- if (text.startsWith("http")) {
23
- return text;
24
- }
25
- src = text;
26
- }
27
- const url = encodeURI(ProgramConfig.joinPath(
28
- ProgramConfig.joinPath(ProgramConfig.api(), "/v3/files"),
29
- src
30
- )) +
31
- `?@token=${ProgramConfig.hydrocarbonToken()}&@programToken=${ProgramConfig.programCode()}&@applicationToken=${ProgramConfig.applicationCode()}`;
32
- return url;
33
- }
34
-
35
- // 不显示连接线的组件类型
36
- const noLinkToolType = ["workstation"];
37
-
38
- interface AssetItem {
39
- body: {
40
- path: string;
41
- suffix: string;
42
- };
43
- type: string; // 组件类型
44
- config?: string; // 组件配置
45
- }
46
-
47
- const AssetList = () => {
48
- const [activeKey, setActiveKey] = useState<string[]>(["SVG"]);
49
- const [component2D, setComponent2D] = useState<any>({});
50
-
51
- // 拖拽
52
- const handleDragStart = (e: DragEvent, item: AssetItem) => {
53
- if (!item?.body) {
54
- return;
55
- }
56
- let defValues = {};
57
- try {
58
- const config = JSON.parse(item.config || "[]");
59
- config.forEach(item => {
60
- item.groups.forEach(r => r.fields?.forEach(i => {
61
- if (i.defaultValue || i.defaultValue === 0) {
62
- defValues[i.id] = i.defaultValue;
63
- }
64
- }));
65
- });
66
- } catch { defValues = {} }
67
- e.dataTransfer.setData('defaultValues', JSON.stringify(defValues)); // 默认值配置
68
- e.dataTransfer.setData('componentItem', JSON.stringify(item)); // 整体配置信息
69
- e.dataTransfer.setData('src', item.body.path); // 组件地址
70
- e.dataTransfer.setData('type', item.body.suffix);
71
- e.dataTransfer.setData('componentType', item.type || ''); // 组件类型
72
- e.dataTransfer.setData('showPoints', noLinkToolType.includes(item.type) ? "false" : "true");
73
- };
74
-
75
- const get2DComponent = async () => {
76
- if (!activeKey?.length) {
77
- return;
78
- }
79
- const res = await ProgramConfig.get2DComponent(activeKey);
80
- setComponent2D(res);
81
- }
82
-
83
- useEffect(() => {
84
- get2DComponent();
85
- }, [activeKey])
86
-
87
- // 组件渲染
88
- const assetNodes = useMemo(() => {
89
- const temArr = assetGroups?.map(r => ({
90
- ...r,
91
- children: component2D[r.key]?.length ? <ul className="asset-list">
92
- {component2D[r.key].map((item, idx) => {
93
- const temDom = <li key={idx} draggable onDragStart={(e) => handleDragStart(e, item)}>
94
- <img src={handleImgUrl(item?.body?.path)} alt="" />
95
- </li>;
96
- return item.title ? <Tooltip title={item.title}>{temDom}</Tooltip> : temDom;
97
- })}
98
- </ul> : null
99
- }))?.filter(r => r.children);
100
- return temArr || [];
101
- }, [component2D]);
102
-
103
- return (
104
- <div className="asset-bar">
105
- <Collapse styles={{ body: { padding: "4px 8px 8px" } }} size="small" onChange={setActiveKey} bordered={false} items={assetNodes} activeKey={activeKey} />
106
- </div>
107
- )
108
- };
109
-
110
- export default AssetList;
1
+ import React, { DragEvent, useEffect, useMemo, useState } from 'react';
2
+ import { Collapse, Tooltip } from "antd";
3
+ import { ProgramConfig } from "../../../index";
4
+ import './index.less';
5
+
6
+ // 组件分组配置
7
+ const assetGroups = [
8
+ { key: 'SVG', label: '矢量图' },
9
+ { key: 'picture', label: '图片' },
10
+ { key: 'gif', label: 'GIF' },
11
+ // { key: 'composite', label: '图形组合 (JSON)' },
12
+ { key: 'other', label: '其他' }
13
+ ];
14
+
15
+ export const handleImgUrl = (val: string) => {
16
+ let src = val;
17
+ if (!src || src.startsWith("http")) {
18
+ return src;
19
+ }
20
+ if (src.includes("@R@")) {
21
+ const text = src.split("@R@")[1];
22
+ if (text.startsWith("http")) {
23
+ return text;
24
+ }
25
+ src = text;
26
+ }
27
+ const url = encodeURI(ProgramConfig.joinPath(
28
+ ProgramConfig.joinPath(ProgramConfig.api(), "/v3/files"),
29
+ src
30
+ )) +
31
+ `?@token=${ProgramConfig.hydrocarbonToken()}&@programToken=${ProgramConfig.programCode()}&@applicationToken=${ProgramConfig.applicationCode()}`;
32
+ return url;
33
+ }
34
+
35
+ // 不显示连接线的组件类型
36
+ const noLinkToolType = ["workstation"];
37
+
38
+ interface AssetItem {
39
+ body: {
40
+ path: string;
41
+ suffix: string;
42
+ };
43
+ type: string; // 组件类型
44
+ config?: string; // 组件配置
45
+ }
46
+
47
+ const AssetList = () => {
48
+ const [activeKey, setActiveKey] = useState<string[]>(["SVG"]);
49
+ const [component2D, setComponent2D] = useState<any>({});
50
+
51
+ // 拖拽
52
+ const handleDragStart = (e: DragEvent, item: AssetItem) => {
53
+ if (!item?.body) {
54
+ return;
55
+ }
56
+ let defValues = {};
57
+ try {
58
+ const config = JSON.parse(item.config || "[]");
59
+ config.forEach(item => {
60
+ item.groups.forEach(r => r.fields?.forEach(i => {
61
+ if (i.defaultValue || i.defaultValue === 0) {
62
+ defValues[i.id] = i.defaultValue;
63
+ }
64
+ }));
65
+ });
66
+ } catch { defValues = {} }
67
+ e.dataTransfer.setData('defaultValues', JSON.stringify(defValues)); // 默认值配置
68
+ e.dataTransfer.setData('componentItem', JSON.stringify(item)); // 整体配置信息
69
+ e.dataTransfer.setData('src', item.body.path); // 组件地址
70
+ e.dataTransfer.setData('type', item.body.suffix);
71
+ e.dataTransfer.setData('componentType', item.type || ''); // 组件类型
72
+ e.dataTransfer.setData('showPoints', noLinkToolType.includes(item.type) ? "false" : "true");
73
+ };
74
+
75
+ const get2DComponent = async () => {
76
+ if (!activeKey?.length) {
77
+ return;
78
+ }
79
+ const res = await ProgramConfig.get2DComponent(activeKey);
80
+ setComponent2D(res);
81
+ }
82
+
83
+ useEffect(() => {
84
+ get2DComponent();
85
+ }, [activeKey])
86
+
87
+ // 组件渲染
88
+ const assetNodes = useMemo(() => {
89
+ const temArr = assetGroups?.map(r => ({
90
+ ...r,
91
+ children: component2D[r.key]?.length ? <ul className="asset-list">
92
+ {component2D[r.key].map((item, idx) => {
93
+ const temDom = <li key={idx} draggable onDragStart={(e) => handleDragStart(e, item)}>
94
+ <img src={handleImgUrl(item?.body?.path)} alt="" />
95
+ </li>;
96
+ return item.title ? <Tooltip title={item.title}>{temDom}</Tooltip> : temDom;
97
+ })}
98
+ </ul> : null
99
+ }))?.filter(r => r.children);
100
+ return temArr || [];
101
+ }, [component2D]);
102
+
103
+ return (
104
+ <div className="asset-bar">
105
+ <Collapse styles={{ body: { padding: "4px 8px 8px" } }} size="small" onChange={setActiveKey} bordered={false} items={assetNodes} activeKey={activeKey} />
106
+ </div>
107
+ )
108
+ };
109
+
110
+ export default AssetList;
@@ -1,24 +1,24 @@
1
- .main-header {
2
- min-height: 40px;
3
- padding: 4px 8px;
4
- display: flex;
5
- justify-content: space-between;
6
- align-items: center;
7
- background: var(--ant-layout-body-bg);
8
- overflow-x: auto;
9
- overflow-y: hidden;
10
-
11
- button {
12
- padding: 4px 8px;
13
- font-size: 16px;
14
- display: flex;
15
- align-items: center;
16
- justify-content: center;
17
-
18
- &.active {
19
- background-color: var(--ant-color-primary);
20
- color: #fff;
21
- }
22
-
23
- }
1
+ .main-header {
2
+ min-height: 40px;
3
+ padding: 4px 8px;
4
+ display: flex;
5
+ justify-content: space-between;
6
+ align-items: center;
7
+ background: var(--ant-layout-body-bg);
8
+ overflow-x: auto;
9
+ overflow-y: hidden;
10
+
11
+ button {
12
+ padding: 4px 8px;
13
+ font-size: 16px;
14
+ display: flex;
15
+ align-items: center;
16
+ justify-content: center;
17
+
18
+ &.active {
19
+ background-color: var(--ant-color-primary);
20
+ color: #fff;
21
+ }
22
+
23
+ }
24
24
  }