Merge pull request #595 from SuanmoSuanyangTechnology/fix/v0.2.8_zy
Fix/v0.2.8 zy
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
* @Author: ZhaoYing
|
* @Author: ZhaoYing
|
||||||
* @Date: 2026-02-03 16:34:12
|
* @Date: 2026-02-03 16:34:12
|
||||||
* @Last Modified by: ZhaoYing
|
* @Last Modified by: ZhaoYing
|
||||||
* @Last Modified time: 2026-03-18 10:44:32
|
* @Last Modified time: 2026-03-18 11:20:45
|
||||||
*/
|
*/
|
||||||
import React, { useState, useEffect, useMemo } from 'react';
|
import React, { useState, useEffect, useMemo } from 'react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
@@ -11,6 +11,7 @@ import clsx from 'clsx';
|
|||||||
|
|
||||||
import type { MySharedOutItem } from './types';
|
import type { MySharedOutItem } from './types';
|
||||||
import { mySharedOutList, cancelShare, cancelSpaceShare } from '@/api/application'
|
import { mySharedOutList, cancelShare, cancelSpaceShare } from '@/api/application'
|
||||||
|
import BodyWrapper from '@/components/Empty/BodyWrapper'
|
||||||
|
|
||||||
const MySharing: React.FC = () => {
|
const MySharing: React.FC = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
@@ -20,7 +21,8 @@ const MySharing: React.FC = () => {
|
|||||||
useEffect(() => { getList() }, [])
|
useEffect(() => { getList() }, [])
|
||||||
|
|
||||||
const getList = () => {
|
const getList = () => {
|
||||||
mySharedOutList().then(res => setData(res as MySharedOutItem[]))
|
mySharedOutList()
|
||||||
|
.then(res => setData(res as MySharedOutItem[]))
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Group items by target_workspace_id */
|
/** Group items by target_workspace_id */
|
||||||
@@ -73,85 +75,87 @@ const MySharing: React.FC = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Flex vertical gap={12}>
|
<Flex vertical gap={12} className="rb:h-[calc(100vh-148px)]! rb:overflow-y-auto!">
|
||||||
{grouped.map(({ workspace, items }) => (
|
<BodyWrapper loading={false} empty={data.length === 0}>
|
||||||
<Collapse
|
{grouped.map(({ workspace, items }) => (
|
||||||
key={workspace.target_workspace_id}
|
<Collapse
|
||||||
defaultActiveKey={[workspace.target_workspace_id]}
|
key={workspace.target_workspace_id}
|
||||||
items={[{
|
defaultActiveKey={[workspace.target_workspace_id]}
|
||||||
key: workspace.target_workspace_id,
|
items={[{
|
||||||
label: (
|
key: workspace.target_workspace_id,
|
||||||
<Flex align="center" gap={12}>
|
label: (
|
||||||
{workspace.target_workspace_icon
|
<Flex align="center" gap={12}>
|
||||||
? <img src={workspace.target_workspace_icon} className="rb:w-8 rb:h-8 rb:rounded-lg rb:object-cover" />
|
{workspace.target_workspace_icon
|
||||||
: <div className="rb:w-8 rb:h-8 rb:rounded-lg rb:bg-[#155eef] rb:flex rb:items-center rb:justify-center rb:text-[14px] rb:text-white">
|
? <img src={workspace.target_workspace_icon} className="rb:w-8 rb:h-8 rb:rounded-lg rb:object-cover" />
|
||||||
{workspace.target_workspace_name[0]}
|
: <div className="rb:w-8 rb:h-8 rb:rounded-lg rb:bg-[#155eef] rb:flex rb:items-center rb:justify-center rb:text-[14px] rb:text-white">
|
||||||
</div>
|
{workspace.target_workspace_name[0]}
|
||||||
}
|
|
||||||
<div>
|
|
||||||
<span className="rb:font-medium">{workspace.target_workspace_name}</span>
|
|
||||||
<div className="rb:text-[#5B6167] rb:text-[12px]">{t('application.appCount', { count: items.length })}</div>
|
|
||||||
</div>
|
|
||||||
</Flex>
|
|
||||||
),
|
|
||||||
extra: (
|
|
||||||
<Button
|
|
||||||
size="small"
|
|
||||||
onClick={e => { e.stopPropagation(); handleAllCancel(workspace); }}
|
|
||||||
>
|
|
||||||
{t('application.allCancel')}
|
|
||||||
</Button>
|
|
||||||
),
|
|
||||||
children: (
|
|
||||||
<Row gutter={[12, 12]}>
|
|
||||||
{items.map(item => (
|
|
||||||
<Col key={item.id} span={6} className="rb:bg-[#F6F6F6] rb:rounded-lg rb:py-3! rb:px-4! rb:relative">
|
|
||||||
<div
|
|
||||||
className="rb:absolute rb:top-3 rb:right-3 rb:cursor-pointer rb:size-4 rb:bg-cover rb:bg-[url('@/assets/images/close.svg')]"
|
|
||||||
onClick={() => handleCancelOne(item)}
|
|
||||||
/>
|
|
||||||
<Flex gap={8} align="center">
|
|
||||||
<div className="rb:size-7 rb:rounded-lg rb:bg-[#155eef] rb:flex rb:items-center rb:justify-center rb:text-[14px] rb:text-white">
|
|
||||||
{item.source_app_name[0]}
|
|
||||||
</div>
|
</div>
|
||||||
<div className="rb:font-medium">{item.source_app_name}</div>
|
}
|
||||||
</Flex>
|
<div>
|
||||||
<Flex vertical gap={4} className="rb:mt-3! rb:text-[12px]!">
|
<span className="rb:font-medium">{workspace.target_workspace_name}</span>
|
||||||
<Flex gap={5} justify="space-between">
|
<div className="rb:text-[#5B6167] rb:text-[12px]">{t('application.appCount', { count: items.length })}</div>
|
||||||
<span className="rb:text-[#5B6167]">{t('application.type')}</span>
|
</div>
|
||||||
<span className={clsx({
|
</Flex>
|
||||||
'rb:text-[#155EEF] rb:font-medium': item.source_app_type === 'agent',
|
),
|
||||||
'rb:text-[#369F21] rb:font-medium': item.source_app_type === 'multi_agent',
|
extra: (
|
||||||
})}>
|
<Button
|
||||||
{t(`application.${item.source_app_type}`)}
|
size="small"
|
||||||
</span>
|
onClick={e => { e.stopPropagation(); handleAllCancel(workspace); }}
|
||||||
|
>
|
||||||
|
{t('application.allCancel')}
|
||||||
|
</Button>
|
||||||
|
),
|
||||||
|
children: (
|
||||||
|
<Row gutter={[12, 12]}>
|
||||||
|
{items.map(item => (
|
||||||
|
<Col key={item.id} span={6} className="rb:bg-[#F6F6F6] rb:rounded-lg rb:py-3! rb:px-4! rb:relative">
|
||||||
|
<div
|
||||||
|
className="rb:absolute rb:top-3 rb:right-3 rb:cursor-pointer rb:size-4 rb:bg-cover rb:bg-[url('@/assets/images/close.svg')]"
|
||||||
|
onClick={() => handleCancelOne(item)}
|
||||||
|
/>
|
||||||
|
<Flex gap={8} align="center">
|
||||||
|
<div className="rb:size-7 rb:rounded-lg rb:bg-[#155eef] rb:flex rb:items-center rb:justify-center rb:text-[14px] rb:text-white">
|
||||||
|
{item.source_app_name[0]}
|
||||||
|
</div>
|
||||||
|
<div className="rb:font-medium">{item.source_app_name}</div>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Flex gap={5} justify="space-between">
|
<Flex vertical gap={4} className="rb:mt-3! rb:text-[12px]!">
|
||||||
<span className="rb:text-[#5B6167]">{t('application.version')}</span>
|
<Flex gap={5} justify="space-between">
|
||||||
<span>{item.source_app_version}</span>
|
<span className="rb:text-[#5B6167]">{t('application.type')}</span>
|
||||||
|
<span className={clsx({
|
||||||
|
'rb:text-[#155EEF] rb:font-medium': item.source_app_type === 'agent',
|
||||||
|
'rb:text-[#369F21] rb:font-medium': item.source_app_type === 'multi_agent',
|
||||||
|
})}>
|
||||||
|
{t(`application.${item.source_app_type}`)}
|
||||||
|
</span>
|
||||||
|
</Flex>
|
||||||
|
<Flex gap={5} justify="space-between">
|
||||||
|
<span className="rb:text-[#5B6167]">{t('application.version')}</span>
|
||||||
|
<span>{item.source_app_version}</span>
|
||||||
|
</Flex>
|
||||||
|
<Flex gap={5} justify="space-between">
|
||||||
|
<span className="rb:text-[#5B6167]">{t('application.permission')}</span>
|
||||||
|
<span className={clsx({
|
||||||
|
'rb:text-[#369F21] rb:font-medium': item.permission === 'editable',
|
||||||
|
'rb:text-[#5B6167] rb:font-medium': item.permission === 'readonly',
|
||||||
|
})}>
|
||||||
|
{t(`application.${item.permission}`)}
|
||||||
|
</span>
|
||||||
|
</Flex>
|
||||||
|
<Flex gap={5} justify="space-between">
|
||||||
|
<span className="rb:text-[#5B6167]">{t('application.souceStatus')}</span>
|
||||||
|
<span>{item.source_app_is_active ? t('application.sourceActive') : t('application.sourceInactive')}</span>
|
||||||
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Flex gap={5} justify="space-between">
|
</Col>
|
||||||
<span className="rb:text-[#5B6167]">{t('application.permission')}</span>
|
))}
|
||||||
<span className={clsx({
|
</Row>
|
||||||
'rb:text-[#369F21] rb:font-medium': item.permission === 'editable',
|
),
|
||||||
'rb:text-[#5B6167] rb:font-medium': item.permission === 'readonly',
|
}]}
|
||||||
})}>
|
/>
|
||||||
{t(`application.${item.permission}`)}
|
))}
|
||||||
</span>
|
</BodyWrapper>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Flex gap={5} justify="space-between">
|
|
||||||
<span className="rb:text-[#5B6167]">{t('application.souceStatus')}</span>
|
|
||||||
<span>{item.source_app_is_active ? t('application.sourceActive') : t('application.sourceInactive')}</span>
|
|
||||||
</Flex>
|
|
||||||
</Flex>
|
|
||||||
</Col>
|
|
||||||
))}
|
|
||||||
</Row>
|
|
||||||
),
|
|
||||||
}]}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
</Flex>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: ZhaoYing
|
* @Author: ZhaoYing
|
||||||
* @Date: 2026-02-09 18:30:28
|
* @Date: 2026-02-09 18:30:28
|
||||||
* @Last Modified by: ZhaoYing
|
* @Last Modified by: ZhaoYing
|
||||||
* @Last Modified time: 2026-02-09 18:30:28
|
* @Last Modified time: 2026-03-18 12:06:27
|
||||||
*/
|
*/
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import { Popover } from 'antd';
|
import { Popover } from 'antd';
|
||||||
@@ -70,7 +70,6 @@ const PortClickHandler: React.FC<PortClickHandlerProps> = ({ graph }) => {
|
|||||||
// Get source port group information
|
// Get source port group information
|
||||||
const sourcePortInfo = sourceNode.getPorts().find((p: any) => p.id === sourcePort);
|
const sourcePortInfo = sourceNode.getPorts().find((p: any) => p.id === sourcePort);
|
||||||
const sourcePortGroup = sourcePortInfo?.group || sourcePort;
|
const sourcePortGroup = sourcePortInfo?.group || sourcePort;
|
||||||
console.log('sourcePortGroup', sourcePortGroup, sourcePortInfo)
|
|
||||||
|
|
||||||
// If add-node position exists, use it; otherwise calculate new position
|
// If add-node position exists, use it; otherwise calculate new position
|
||||||
let newX, newY;
|
let newX, newY;
|
||||||
@@ -148,18 +147,23 @@ const PortClickHandler: React.FC<PortClickHandlerProps> = ({ graph }) => {
|
|||||||
if (sourcePortGroup === 'left') {
|
if (sourcePortGroup === 'left') {
|
||||||
// Connect from left port to new node's right side
|
// Connect from left port to new node's right side
|
||||||
targetPort = targetPorts.find((port: any) => port.group === 'right')?.id || 'right';
|
targetPort = targetPorts.find((port: any) => port.group === 'right')?.id || 'right';
|
||||||
|
graph.addEdge({
|
||||||
|
source: { cell: newNode.id, port: targetPort },
|
||||||
|
target: { cell: sourceNode.id, port: sourcePort },
|
||||||
|
...edgeAttrs
|
||||||
|
// zIndex: sourceNodeData.cycle && sourceNodeType == 'cycle-start' ? 1 : sourceNodeData.cycle ? 2 : 0
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
// Connect from right port to new node's left side
|
// Connect from right port to new node's left side
|
||||||
targetPort = targetPorts.find((port: any) => port.group === 'left')?.id || 'left';
|
targetPort = targetPorts.find((port: any) => port.group === 'left')?.id || 'left';
|
||||||
|
graph.addEdge({
|
||||||
|
source: { cell: sourceNode.id, port: sourcePort },
|
||||||
|
target: { cell: newNode.id, port: targetPort },
|
||||||
|
...edgeAttrs
|
||||||
|
// zIndex: sourceNodeData.cycle && sourceNodeType == 'cycle-start' ? 1 : sourceNodeData.cycle ? 2 : 0
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
graph.addEdge({
|
|
||||||
source: { cell: sourceNode.id, port: sourcePort },
|
|
||||||
target: { cell: newNode.id, port: targetPort },
|
|
||||||
...edgeAttrs
|
|
||||||
// zIndex: sourceNodeData.cycle && sourceNodeType == 'cycle-start' ? 1 : sourceNodeData.cycle ? 2 : 0
|
|
||||||
});
|
|
||||||
|
|
||||||
// Adjust loop node size when child node is added via port within loop node
|
// Adjust loop node size when child node is added via port within loop node
|
||||||
const cycleId = sourceNodeData.cycle;
|
const cycleId = sourceNodeData.cycle;
|
||||||
if (cycleId) {
|
if (cycleId) {
|
||||||
@@ -223,20 +227,27 @@ const PortClickHandler: React.FC<PortClickHandlerProps> = ({ graph }) => {
|
|||||||
const isChildOfLoop = sourceNodeData?.cycle && graph?.getNodes().find((n: any) => n.getData()?.id === sourceNodeData.cycle && n.getData()?.type === 'loop');
|
const isChildOfLoop = sourceNodeData?.cycle && graph?.getNodes().find((n: any) => n.getData()?.id === sourceNodeData.cycle && n.getData()?.type === 'loop');
|
||||||
const isChildOfIteration = sourceNodeData?.cycle && graph?.getNodes().find((n: any) => n.getData()?.id === sourceNodeData.cycle && n.getData()?.type === 'iteration');
|
const isChildOfIteration = sourceNodeData?.cycle && graph?.getNodes().find((n: any) => n.getData()?.id === sourceNodeData.cycle && n.getData()?.type === 'iteration');
|
||||||
|
|
||||||
|
const sourcePortInfo = sourceNode?.getPorts().find((p: any) => p.id === sourcePort);
|
||||||
|
const sourcePortGroup = sourcePortInfo?.group || sourcePort;
|
||||||
|
const isLeftPort = sourcePortGroup === 'left';
|
||||||
|
|
||||||
let filteredNodes;
|
let filteredNodes;
|
||||||
if (isChildOfLoop) {
|
if (isChildOfLoop) {
|
||||||
// Use same filtering as AddNode for child nodes of loop, but allow break
|
// Use same filtering as AddNode for child nodes of loop, but allow break
|
||||||
filteredNodes = category.nodes.filter(nodeType => !['start', 'end', 'loop', 'cycle-start', 'iteration'].includes(nodeType.type));
|
filteredNodes = category.nodes.filter(nodeType => !['start', 'end', 'loop', 'cycle-start', 'iteration'].includes(nodeType.type));
|
||||||
} else if (isChildOfIteration) {
|
} else if (isChildOfIteration) {
|
||||||
// Filter out loop and iteration nodes for children of iteration nodes, but allow break
|
// Filter out loop and iteration nodes for children of iteration nodes, but allow break
|
||||||
filteredNodes = category.nodes.filter(nodeType => !['start', 'end', 'loop', 'cycle-start', 'iteration'].includes(nodeType.type));
|
filteredNodes = category.nodes.filter(nodeType => !['start', 'end', 'loop', 'cycle-start', 'iteration'].includes(nodeType.type));
|
||||||
} else {
|
} else {
|
||||||
// Original filtering for non-loop child nodes
|
// Original filtering for non-loop child nodes
|
||||||
filteredNodes = category.nodes.filter(nodeType => !['start', 'break', 'cycle-start'].includes(nodeType.type));
|
|
||||||
filteredNodes = category.nodes.filter(nodeType =>
|
filteredNodes = category.nodes.filter(nodeType =>
|
||||||
nodeType.type !== 'start' && nodeType.type !== 'cycle-start' && nodeType.type !== 'break'
|
nodeType.type !== 'start' && nodeType.type !== 'cycle-start' && nodeType.type !== 'break'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isLeftPort) {
|
||||||
|
filteredNodes = filteredNodes.filter(nodeType => nodeType.type !== 'end');
|
||||||
|
}
|
||||||
|
|
||||||
if (filteredNodes.length === 0) return null;
|
if (filteredNodes.length === 0) return null;
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: ZhaoYing
|
* @Author: ZhaoYing
|
||||||
* @Date: 2026-02-03 15:17:48
|
* @Date: 2026-02-03 15:17:48
|
||||||
* @Last Modified by: ZhaoYing
|
* @Last Modified by: ZhaoYing
|
||||||
* @Last Modified time: 2026-03-17 10:00:10
|
* @Last Modified time: 2026-03-18 12:07:03
|
||||||
*/
|
*/
|
||||||
import { useRef, useEffect, useState } from 'react';
|
import { useRef, useEffect, useState } from 'react';
|
||||||
import { useParams } from 'react-router-dom';
|
import { useParams } from 'react-router-dom';
|
||||||
@@ -593,13 +593,6 @@ export const useWorkflowGraph = ({
|
|||||||
if (!graphRef.current) return false;
|
if (!graphRef.current) return false;
|
||||||
const selectedNodes = graphRef.current.getNodes().filter(node => node.getData()?.isSelected);
|
const selectedNodes = graphRef.current.getNodes().filter(node => node.getData()?.isSelected);
|
||||||
if (selectedNodes.length) {
|
if (selectedNodes.length) {
|
||||||
selectedNodes.forEach(node => {
|
|
||||||
const data = node.getData();
|
|
||||||
node.setData({
|
|
||||||
...data,
|
|
||||||
id: `${(data.type as string).replace(/-/g, '_')}_${Date.now()}_${Math.random().toString(36).substr(2, 9)}`,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
graphRef.current.copy(selectedNodes);
|
graphRef.current.copy(selectedNodes);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@@ -610,7 +603,14 @@ export const useWorkflowGraph = ({
|
|||||||
*/
|
*/
|
||||||
const parseEvent = () => {
|
const parseEvent = () => {
|
||||||
if (!graphRef.current?.isClipboardEmpty()) {
|
if (!graphRef.current?.isClipboardEmpty()) {
|
||||||
graphRef.current?.paste({ offset: 32 });
|
const pastedNodes = graphRef.current?.paste({ offset: 32 }) ?? [];
|
||||||
|
pastedNodes.forEach(cell => {
|
||||||
|
if (cell.isNode()) {
|
||||||
|
const data = cell.getData();
|
||||||
|
const newId = `${(data.type as string).replace(/-/g, '_')}_${Date.now()}_${Math.random().toString(36).substr(2, 9)}`;
|
||||||
|
cell.setData({ ...data, id: newId });
|
||||||
|
}
|
||||||
|
});
|
||||||
blankClick();
|
blankClick();
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@@ -761,8 +761,23 @@ export const useWorkflowGraph = ({
|
|||||||
createEdge() {
|
createEdge() {
|
||||||
return graphRef.current?.createEdge(edgeAttrs);
|
return graphRef.current?.createEdge(edgeAttrs);
|
||||||
},
|
},
|
||||||
validateConnection({ sourceCell, targetCell, targetMagnet }) {
|
validateConnection({ sourceCell, targetCell, sourceMagnet, targetMagnet }) {
|
||||||
if (!targetMagnet) return false;
|
if (!targetMagnet) return false;
|
||||||
|
|
||||||
|
// Only allow right port → left port connections
|
||||||
|
const getPortGroup = (magnet: Element) => {
|
||||||
|
let el: Element | null = magnet;
|
||||||
|
while (el) {
|
||||||
|
const group = el.getAttribute('port-group');
|
||||||
|
if (group) return group;
|
||||||
|
el = el.parentElement;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
const sourceGroup = sourceMagnet ? getPortGroup(sourceMagnet) : null;
|
||||||
|
const targetGroup = targetMagnet ? getPortGroup(targetMagnet) : null;
|
||||||
|
|
||||||
|
if (sourceGroup === 'left' || targetGroup === 'right') return false;
|
||||||
|
|
||||||
// Node cannot connect to itself
|
// Node cannot connect to itself
|
||||||
if (sourceCell?.id === targetCell?.id) return false;
|
if (sourceCell?.id === targetCell?.id) return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user