feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
.interrupt-message-box {
|
||||
margin-top: 8px;
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* 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 { useState } from 'react';
|
||||
|
||||
import classNames from 'classnames';
|
||||
import { MessageBox as UIKitMessageBox } from '@coze-common/chat-uikit';
|
||||
import { type CustomComponent } from '@coze-common/chat-area';
|
||||
|
||||
import { InterruptMessageContent } from './interrupt-message-content';
|
||||
|
||||
import styles from './index.module.less';
|
||||
|
||||
export const InterruptMessageBox: CustomComponent['MessageBox'] = props => {
|
||||
// 用户操作后文案,前端维护暂时状态,刷新消失
|
||||
const [actionText, setActionText] = useState('');
|
||||
|
||||
const { message, meta } = props;
|
||||
|
||||
// 不展示逻辑: 为历史消息、无action且不在最后一个group
|
||||
if (message._fromHistory || (!actionText && !meta.isFromLatestGroup)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={classNames(styles['interrupt-message-box'])}>
|
||||
<UIKitMessageBox
|
||||
{...props}
|
||||
messageId={message.message_id}
|
||||
senderInfo={{ id: '' }}
|
||||
showUserInfo={false}
|
||||
theme={actionText ? 'none' : 'border'}
|
||||
>
|
||||
<InterruptMessageContent
|
||||
interruptMessage={message}
|
||||
actionText={actionText}
|
||||
setActionText={setActionText}
|
||||
/>
|
||||
</UIKitMessageBox>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
InterruptMessageBox.displayName = 'ChatAreaFunctionCallMessageBox';
|
||||
@@ -0,0 +1,34 @@
|
||||
.interrupt-message-box {
|
||||
user-select: none;
|
||||
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
|
||||
font-weight: 400;
|
||||
line-height: 16px;
|
||||
word-break: break-word;
|
||||
|
||||
// 用户点击授权后文案样式,无背景
|
||||
.interrupt-message-action {
|
||||
padding: 6px;
|
||||
color: var(--fg-coze-fg-secondary, rgba(6, 7, 9, 50%));
|
||||
}
|
||||
// 中断消息内容
|
||||
.interrupt-message-content {
|
||||
padding: 12px;
|
||||
color: var(--fg-coze-fg-primary, rgba(6, 7, 9, 80%));
|
||||
background-color: var(--bg-coze-bg-max, #FFF);
|
||||
|
||||
.interrupt-message-content-btns {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
/*
|
||||
* 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 classNames from 'classnames';
|
||||
import {
|
||||
PluginName,
|
||||
useWriteablePlugin,
|
||||
type Message,
|
||||
} from '@coze-common/chat-area';
|
||||
import { I18n } from '@coze-arch/i18n';
|
||||
import { Button } from '@coze-arch/coze-design';
|
||||
import { Space } from '@coze-arch/bot-semi';
|
||||
|
||||
import { useGetPosition } from '../../../hooks/use-get-position';
|
||||
|
||||
import styles from './index.module.less';
|
||||
|
||||
export const InterruptMessageContent: React.FC<{
|
||||
interruptMessage: Message;
|
||||
actionText?: string;
|
||||
setActionText: (actionText: string) => void;
|
||||
}> = ({ interruptMessage, actionText, setActionText }) => {
|
||||
const plugin = useWriteablePlugin<unknown>(PluginName.Resume);
|
||||
|
||||
const { sendResumeMessage, stopResponding } =
|
||||
plugin.chatAreaPluginContext?.writeableAPI.message ?? {};
|
||||
|
||||
// 获取中断场景、续聊id
|
||||
const toolCall =
|
||||
interruptMessage.required_action?.submit_tool_outputs?.tool_calls?.[0];
|
||||
|
||||
const { loading, getSysPosition: handleAllowOnce } = useGetPosition({
|
||||
getPositionSuccess: position => {
|
||||
setActionText(
|
||||
I18n.t('chat_geolocation_auth_allow_tip', {
|
||||
plugin: toolCall?.require_info?.name ?? 'plugin',
|
||||
}),
|
||||
);
|
||||
sendResumeMessage?.({
|
||||
replyId: interruptMessage.reply_id,
|
||||
options: {
|
||||
extendFiled: {
|
||||
interrupt_message_id: interruptMessage.message_id,
|
||||
resume_message_id: interruptMessage.reply_id,
|
||||
tool_outputs: [
|
||||
{
|
||||
tool_call_id: toolCall?.id,
|
||||
output: JSON.stringify({
|
||||
coordinates: {
|
||||
longitude: String(position.coords.longitude),
|
||||
latitude: String(position.coords.latitude),
|
||||
},
|
||||
}),
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
const handleReject = () => {
|
||||
setActionText(
|
||||
I18n.t('chat_geolocation_auth_decline_tip', {
|
||||
plugin: toolCall?.require_info?.name ?? 'plugin',
|
||||
}),
|
||||
);
|
||||
stopResponding?.();
|
||||
};
|
||||
|
||||
return (
|
||||
<div className={classNames(styles['interrupt-message-box'])}>
|
||||
{actionText ? (
|
||||
<div className={classNames(styles['interrupt-message-action'])}>
|
||||
{actionText}
|
||||
</div>
|
||||
) : (
|
||||
<div className={classNames(styles['interrupt-message-content'])}>
|
||||
{toolCall?.require_info?.require_fields?.includes('coordinates') ? (
|
||||
<>
|
||||
{I18n.t('chat_geolocation_auth_request_message', {
|
||||
plugin_name: toolCall?.require_info?.name ?? 'plugin',
|
||||
})}
|
||||
<Space
|
||||
className={classNames(styles['interrupt-message-content-btns'])}
|
||||
>
|
||||
<Button
|
||||
color="highlight"
|
||||
size="small"
|
||||
loading={loading}
|
||||
onClick={handleAllowOnce}
|
||||
>
|
||||
{I18n.t('chat_geolocation_auth_request_message_allow_button')}
|
||||
</Button>
|
||||
<Button
|
||||
color="primary"
|
||||
size="small"
|
||||
disabled={loading}
|
||||
onClick={handleReject}
|
||||
>
|
||||
{I18n.t(
|
||||
'chat_geolocation_auth_request_message_decline_button',
|
||||
)}
|
||||
</Button>
|
||||
</Space>
|
||||
</>
|
||||
) : null}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
InterruptMessageContent.displayName = 'ChatAreaFunctionCallMessageContent';
|
||||
@@ -0,0 +1,72 @@
|
||||
/*
|
||||
* 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 { useState } from 'react';
|
||||
|
||||
import { I18n } from '@coze-arch/i18n';
|
||||
import { Toast } from '@coze-arch/coze-design';
|
||||
|
||||
interface GetPositionProps {
|
||||
getPositionSuccess: (position: GeolocationPosition) => void;
|
||||
}
|
||||
|
||||
export const useGetPosition = ({ getPositionSuccess }: GetPositionProps) => {
|
||||
// 位置授权按钮loading态
|
||||
const [loading, setLoading] = useState(false);
|
||||
|
||||
const getSysPosition = () => {
|
||||
setLoading(true);
|
||||
/** 获取系统地理位置信息 */
|
||||
if (navigator.geolocation) {
|
||||
navigator.geolocation.getCurrentPosition(
|
||||
position => {
|
||||
setLoading(false);
|
||||
|
||||
getPositionSuccess?.(position);
|
||||
},
|
||||
error => {
|
||||
setLoading(false);
|
||||
switch (error.code) {
|
||||
case error.PERMISSION_DENIED:
|
||||
Toast.error(
|
||||
I18n.t('bot_ide_user_declines_geolocation_auth_toast'),
|
||||
);
|
||||
break;
|
||||
case error.POSITION_UNAVAILABLE:
|
||||
Toast.error(I18n.t('bot_ide_geolocation_not_usable_toast'));
|
||||
break;
|
||||
case error.TIMEOUT:
|
||||
Toast.error(I18n.t('bot_ide_geolocation_request_timeout_toast'));
|
||||
break;
|
||||
default:
|
||||
Toast.error(
|
||||
I18n.t('bot_ide_geolocation_request_unknown_error_toast'),
|
||||
);
|
||||
break;
|
||||
}
|
||||
},
|
||||
);
|
||||
} else {
|
||||
setLoading(false);
|
||||
Toast.error(I18n.t('bot_ide_browser_not_support_geolocation_toast'));
|
||||
}
|
||||
};
|
||||
|
||||
return {
|
||||
loading,
|
||||
getSysPosition,
|
||||
};
|
||||
};
|
||||
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* 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 PluginRegistryEntry } from '@coze-common/chat-area';
|
||||
|
||||
import { ResumePlugin } from './plugin';
|
||||
|
||||
export const ResumePluginRegistry: PluginRegistryEntry<unknown> = {
|
||||
createPluginBizContext() {
|
||||
return;
|
||||
},
|
||||
Plugin: ResumePlugin,
|
||||
};
|
||||
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* 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 {
|
||||
isRequireInfoInterruptMessage,
|
||||
WriteableMessageLifeCycleService,
|
||||
type OnBeforeDistributeMessageIntoMemberSetContent,
|
||||
} from '@coze-common/chat-area';
|
||||
|
||||
export class ResumeMessageLifeCycleService extends WriteableMessageLifeCycleService<unknown> {
|
||||
onBeforeDistributeMessageIntoMemberSet(
|
||||
ctx: OnBeforeDistributeMessageIntoMemberSetContent,
|
||||
): OnBeforeDistributeMessageIntoMemberSetContent {
|
||||
const { message } = ctx;
|
||||
|
||||
if (isRequireInfoInterruptMessage(message)) {
|
||||
return { ...ctx, memberSetType: 'llm' };
|
||||
}
|
||||
|
||||
return ctx;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* 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 {
|
||||
isRequireInfoInterruptMessage,
|
||||
type OnMessageBoxRenderContext,
|
||||
WriteableRenderLifeCycleService,
|
||||
} from '@coze-common/chat-area';
|
||||
|
||||
import { InterruptMessageBox } from '../custom-components/interrupt-message';
|
||||
|
||||
export class ResumeRenderLifeCycleService extends WriteableRenderLifeCycleService<unknown> {
|
||||
onMessageBoxRender(ctx: OnMessageBoxRenderContext) {
|
||||
const { message } = ctx;
|
||||
|
||||
if (isRequireInfoInterruptMessage(message)) {
|
||||
return {
|
||||
...ctx,
|
||||
MessageBox: InterruptMessageBox,
|
||||
};
|
||||
}
|
||||
|
||||
return ctx;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* 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 {
|
||||
PluginMode,
|
||||
PluginName,
|
||||
WriteableChatAreaPlugin,
|
||||
} from '@coze-common/chat-area';
|
||||
|
||||
import { ResumeRenderLifeCycleService } from './life-cycle-service/render-life-cycle-service';
|
||||
import { ResumeMessageLifeCycleService } from './life-cycle-service/message-life-cycle-service';
|
||||
|
||||
export class ResumePlugin extends WriteableChatAreaPlugin<unknown> {
|
||||
public pluginMode: PluginMode = PluginMode.Writeable;
|
||||
public pluginName: PluginName = PluginName.Resume;
|
||||
|
||||
public lifeCycleServices = {
|
||||
messageLifeCycleService: new ResumeMessageLifeCycleService(this),
|
||||
renderLifeCycleService: new ResumeRenderLifeCycleService(this),
|
||||
};
|
||||
}
|
||||
17
frontend/packages/common/chat-area/plugin-resume/src/typings.d.ts
vendored
Normal file
17
frontend/packages/common/chat-area/plugin-resume/src/typings.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/// <reference types='@coze-arch/bot-typings' />
|
||||
Reference in New Issue
Block a user