aldehyde 0.2.502 → 0.2.503

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 (71) hide show
  1. package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.css +99 -63
  2. package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.js +7 -7
  3. package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.js.map +1 -1
  4. package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.json +63 -0
  5. package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.ttf +0 -0
  6. package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.woff +0 -0
  7. package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.woff2 +0 -0
  8. package/lib/draw-canvas-edit/components/asset-bar/index.less +35 -35
  9. package/lib/draw-canvas-edit/components/main-header/index.less +23 -23
  10. package/lib/lowcode-components/base-table/index.less +61 -61
  11. package/lib/lowcode-components/data-number/index.less +10 -10
  12. package/lib/lowcode-components/date-time/index.less +4 -4
  13. package/lib/lowcode-components/four-angle-glow-border/index.less +49 -49
  14. package/lib/lowcode-components/lowcode-view/component/font/FontGlobal.css +26 -26
  15. package/lib/lowcode-components/lowcode-view/component/screen-fit/index.less +13 -13
  16. package/lib/lowcode-components/text-scroller/index.less +28 -28
  17. package/package.json +1 -1
  18. package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.css +99 -63
  19. package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.js +1 -1
  20. package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.json +156 -93
  21. package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.ttf +0 -0
  22. package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.woff +0 -0
  23. package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.woff2 +0 -0
  24. package/src/aldehyde/draw-canvas-edit/components/asset-bar/index.less +35 -35
  25. package/src/aldehyde/draw-canvas-edit/components/asset-bar/index.tsx +110 -110
  26. package/src/aldehyde/draw-canvas-edit/components/main-header/index.less +23 -23
  27. package/src/aldehyde/draw-canvas-edit/components/main-header/index.tsx +263 -263
  28. package/src/aldehyde/draw-canvas-edit/components/render/draws/index.ts +7 -7
  29. package/src/aldehyde/draw-canvas-edit/components/render/graphs/base-graph.ts +241 -241
  30. package/src/aldehyde/draw-canvas-edit/components/render/graphs/circle.ts +699 -699
  31. package/src/aldehyde/draw-canvas-edit/components/render/graphs/curve.ts +500 -500
  32. package/src/aldehyde/draw-canvas-edit/components/render/graphs/index.ts +5 -5
  33. package/src/aldehyde/draw-canvas-edit/components/render/graphs/line.ts +493 -493
  34. package/src/aldehyde/draw-canvas-edit/components/render/graphs/rect.ts +680 -680
  35. package/src/aldehyde/draw-canvas-edit/components/render/handlers/drag-handlers.ts +68 -68
  36. package/src/aldehyde/draw-canvas-edit/components/render/handlers/graph-handlers.ts +113 -113
  37. package/src/aldehyde/draw-canvas-edit/components/render/handlers/index.ts +9 -9
  38. package/src/aldehyde/draw-canvas-edit/components/render/handlers/key-move-handlers.ts +49 -49
  39. package/src/aldehyde/draw-canvas-edit/components/render/handlers/link-handlers.ts +45 -45
  40. package/src/aldehyde/draw-canvas-edit/components/render/handlers/shutcut-handlers.ts +45 -45
  41. package/src/aldehyde/draw-canvas-edit/components/render/handlers/text-handlers.ts +81 -81
  42. package/src/aldehyde/draw-canvas-edit/components/render/handlers/zoom-handlers.ts +59 -59
  43. package/src/aldehyde/draw-canvas-edit/components/render/tools/align-tool.ts +89 -89
  44. package/src/aldehyde/draw-canvas-edit/components/render/tools/asset-tool.ts +154 -154
  45. package/src/aldehyde/draw-canvas-edit/components/render/tools/link-tool.ts +222 -222
  46. package/src/aldehyde/draw-canvas-edit/components/render/tools/z-index-tool.ts +224 -224
  47. package/src/aldehyde/draw-canvas-edit/components/render/utils/a-star.ts +116 -116
  48. package/src/aldehyde/draw-canvas-edit/components/render/utils/bezier-scene-func.ts +72 -72
  49. package/src/aldehyde/draw-canvas-edit/components/setting-form/imag-upload.tsx +119 -119
  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
@@ -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
  }