feat: manually mirror opencoze's code from bytedance

Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
fanlv
2025-07-20 17:36:12 +08:00
commit 890153324f
14811 changed files with 1923430 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
@keyframes encapsulate-panel-show {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.encapsulate-panel {
position: absolute;
width: 100%;
top: 16px;
justify-content: center;
align-items: center;
pointer-events: none;
transition: opacity 0.35s ease;
display: flex;
opacity: 0;
&-show {
opacity: 1;
}
.encapsulate-panel-content {
display: flex;
justify-content: center;
align-items: center;
height: 40px;
padding: 0 4px 0 8px;
background-color: var(--coz-bg-max);
border: 1px solid var(--coz-stroke-plus);
border-radius: 10px;
color: var(--coz-fg-primary);
font-weight: 500;
box-shadow: var(--coz-shadow-small);
gap: 16px;
font-size: 14px;
}
}

View File

@@ -0,0 +1,64 @@
/*
* Copyright 2025 coze-dev Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { useEffect, useState, type FC } from 'react';
import classNames from 'classnames';
import { I18n } from '@coze-arch/i18n';
import { useService } from '@flowgram-adapter/free-layout-editor';
import { useSelectedNodes } from '../hooks/use-selected-nodes';
import { EncapsulateRenderService } from '../encapsulate-render-service';
import { EncapsulateButton } from '../encapsulate-button';
import { EncapsulateService } from '../../encapsulate';
import styles from './index.module.less';
export const EncapsulatePanel: FC = () => {
const { selectedNodes } = useSelectedNodes();
const { length } = selectedNodes || [];
const [show, setShow] = useState(false);
const encapsulateService = useService<EncapsulateService>(EncapsulateService);
const encapsulateRenderService = useService<EncapsulateRenderService>(
EncapsulateRenderService,
);
useEffect(() => {
const display = encapsulateService.canEncapsulate() && length > 1;
if (!display) {
encapsulateRenderService.hideTooltip();
}
setShow(display);
}, [length]);
return (
<div
className={classNames(styles['encapsulate-panel'], {
[styles['encapsulate-panel-show']]: show,
})}
>
<div className={styles['encapsulate-panel-content']}>
{I18n.t(
'workflow_encapsulate_selecet',
{ length },
`已选中 ${length} 个节点`,
)}{' '}
<EncapsulateButton />
</div>
</div>
);
};