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

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,18 @@
/*
* 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.
*/
export { WorkflowTooltip } from './workflow-tooltip';
export { WorkflowWidgetIcon } from './workflow-widget-icon';

View File

@@ -0,0 +1,4 @@
.image {
width: 160px;
border-radius: var(--coze-8);
}

View File

@@ -0,0 +1,84 @@
/*
* 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 React, { type FC, useMemo } from 'react';
import { I18n } from '@coze-arch/i18n';
import { WorkflowMode } from '@coze-arch/bot-api/workflow_api';
import { Image, useTheme } from '@coze-arch/coze-design';
import workflowLightImg from './assets/workflow-light.jpg';
import workflowDarkImg from './assets/workflow-dark.jpg';
import chatflowLightImg from './assets/chatflow-light.jpg';
import chatflowDarkImg from './assets/chatflow-dark.jpg';
export interface WorkflowTooltipProps {
flowMode: WorkflowMode;
}
const ILLUSTRATION_IMG_URL = {
workflow: {
dark: workflowDarkImg,
light: workflowLightImg,
},
chatflow: {
dark: chatflowDarkImg,
light: chatflowLightImg,
},
};
export const WorkflowTooltip: FC<WorkflowTooltipProps> = ({ flowMode }) => {
const { theme } = useTheme();
const imgUrl = useMemo(() => {
switch (flowMode) {
case WorkflowMode.ChatFlow:
return (
ILLUSTRATION_IMG_URL.chatflow[theme] ||
ILLUSTRATION_IMG_URL.chatflow.light
);
default:
return (
ILLUSTRATION_IMG_URL.workflow[theme] ||
ILLUSTRATION_IMG_URL.workflow.light
);
}
}, [theme, flowMode]);
return (
<div className="flex flex-col gap-1">
<Image
src={imgUrl}
crossOrigin="anonymous"
imgStyle={{
width: 200,
minHeight: 120,
borderRadius: '7.5px',
border: '1px solid var(--coz-stroke-primary)',
}}
preview={false}
/>
<div className="px-2 pt-1 pb-2">
<p className="text-14 font-medium coz-fg-primary leading-5">
{flowMode === WorkflowMode.Workflow ? 'Workflow' : 'Chatflow'}
</p>
<span className="text-[12px] coz-fg-primary leading-4">
{flowMode === WorkflowMode.Workflow
? I18n.t('wf_chatflow_02')
: I18n.t('wf_chatflow_01')}
</span>
</div>
</div>
);
};

View File

@@ -0,0 +1,42 @@
/*
* 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 { type FC, useEffect, useState, useMemo } from 'react';
import { WorkflowMode } from '@coze-arch/bot-api/workflow_api';
import { type WidgetContext } from '@coze-project-ide/framework';
import { WORKFLOW_SUB_TYPE_ICON_MAP } from '../constants';
interface WorkflowWidgetIconProps {
context: WidgetContext;
}
export const WorkflowWidgetIcon: FC<WorkflowWidgetIconProps> = ({
context,
}) => {
const { widget } = context;
const [iconType, setIconType] = useState<string>(
widget.getIconType() || String(WorkflowMode.Workflow),
);
const icon = useMemo(() => WORKFLOW_SUB_TYPE_ICON_MAP[iconType], [iconType]);
useEffect(() => {
const disposable = widget.onIconTypeChanged(_iconType =>
setIconType(_iconType),
);
return () => disposable?.dispose?.();
}, []);
return icon;
};