feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
17
frontend/packages/agent-ide/bot-plugin/plugin-risk-warning/src/global.d.ts
vendored
Normal file
17
frontend/packages/agent-ide/bot-plugin/plugin-risk-warning/src/global.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' />
|
||||
@@ -0,0 +1,88 @@
|
||||
/* stylelint-disable selector-class-pattern */
|
||||
/* stylelint-disable declaration-no-important */
|
||||
/* stylelint-disable no-descending-specificity */
|
||||
.ui-modal {
|
||||
:global {
|
||||
.semi-modal {
|
||||
width: 446px;
|
||||
}
|
||||
|
||||
.semi-modal-content {
|
||||
position: relative;
|
||||
min-height: 144px;
|
||||
// 上下边距 70px
|
||||
max-height: calc(100vh - 140px);
|
||||
background-color: #f5f7fa;
|
||||
|
||||
.semi-modal-header {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.semi-modal-body {
|
||||
overflow: auto;
|
||||
padding: 16px 0;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&.semi-modal-withIcon {
|
||||
margin-left: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// header关闭iconbtn样式
|
||||
.semi-modal-header {
|
||||
.semi-button-with-icon-only {
|
||||
height: 24px;
|
||||
padding: 4px !important;
|
||||
border-radius: 4px;
|
||||
|
||||
svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
//图标按钮hover
|
||||
.semi-button-with-icon-only.semi-button-borderless:not(.semi-button-disabled):hover {
|
||||
background: var(--light-usage-fill-color-fill-1,
|
||||
rgb(46 46 56 / 8%));
|
||||
}
|
||||
|
||||
//图标按钮active
|
||||
.semi-button-with-icon-only.semi-button-borderless:not(.semi-button-disabled):active {
|
||||
background: var(--light-usage-fill-color-fill-2,
|
||||
rgb(46 46 56 / 12%));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.modal-wrap {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 32px;
|
||||
align-items: flex-start;
|
||||
|
||||
width: 382px;
|
||||
margin: 0 auto;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.modal-item {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
align-items: center;
|
||||
align-self: stretch;
|
||||
}
|
||||
|
||||
.modal-text {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
line-height: 16px;
|
||||
color: #1D1C23;
|
||||
text-align: justify;
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
/*
|
||||
* 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 { I18n } from '@coze-arch/i18n';
|
||||
import { Modal } from '@coze-arch/bot-semi';
|
||||
import {
|
||||
IconApiOutlined,
|
||||
IconCommunityTabOutlined,
|
||||
IconDiscussOutlined,
|
||||
} from '@coze-arch/bot-icons';
|
||||
import { RiskAlertType } from '@coze-arch/bot-api/playground_api';
|
||||
import { PlaygroundApi } from '@coze-arch/bot-api';
|
||||
|
||||
import { useRiskWarningStore } from './store';
|
||||
|
||||
import styles from './index.module.less';
|
||||
export interface UsePluginRiskReturnValue {
|
||||
node: JSX.Element;
|
||||
open: () => void;
|
||||
close: () => void;
|
||||
}
|
||||
const ContentMap = [
|
||||
{
|
||||
icon: <IconCommunityTabOutlined />,
|
||||
text: I18n.t('plugin_quote_tip_1'),
|
||||
},
|
||||
{
|
||||
icon: <IconDiscussOutlined />,
|
||||
text: I18n.t('plugin_quote_tip_2'),
|
||||
},
|
||||
{
|
||||
icon: <IconApiOutlined />,
|
||||
text: I18n.t('plugin_quote_tip_3'),
|
||||
},
|
||||
];
|
||||
|
||||
export const handlePluginRiskWarning = () => {
|
||||
const { pluginRiskIsRead, setPluginRiskIsRead } =
|
||||
useRiskWarningStore.getState();
|
||||
|
||||
const handleClose = () => {
|
||||
PlaygroundApi.UpdateUserConfig({
|
||||
risk_alert_type: RiskAlertType.Plugin,
|
||||
});
|
||||
};
|
||||
|
||||
if (!pluginRiskIsRead) {
|
||||
setPluginRiskIsRead(true);
|
||||
|
||||
Modal.warning({
|
||||
icon: null,
|
||||
title: I18n.t('About_Plugins_tip'),
|
||||
content: (
|
||||
<div className={styles['modal-wrap']}>
|
||||
{ContentMap.map(item => (
|
||||
<div className={styles['modal-item']}>
|
||||
{item.icon}
|
||||
<span className={styles['modal-text']}>{item.text}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
),
|
||||
onOk: handleClose,
|
||||
onCancel: handleClose,
|
||||
hasCancel: false,
|
||||
maskClosable: false,
|
||||
className: styles['ui-modal'],
|
||||
okText: I18n.t('Confirm'),
|
||||
okButtonProps: {
|
||||
style: {
|
||||
minWidth: '96px',
|
||||
},
|
||||
},
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* 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 { devtools } from 'zustand/middleware';
|
||||
import { create } from 'zustand';
|
||||
|
||||
interface RiskStore {
|
||||
pluginRiskIsRead: boolean;
|
||||
toolHiddenModeNewbieGuideIsRead: boolean;
|
||||
}
|
||||
|
||||
interface RiskAction {
|
||||
reset: () => void;
|
||||
setPluginRiskIsRead: (flag: boolean) => void;
|
||||
setToolHiddenModeNewbieGuideIsRead: (flag: boolean) => void;
|
||||
}
|
||||
|
||||
const initialStore: RiskStore = {
|
||||
pluginRiskIsRead: true,
|
||||
toolHiddenModeNewbieGuideIsRead: true,
|
||||
// 支持扩展其它风险提示...
|
||||
};
|
||||
|
||||
export const useRiskWarningStore = create<RiskStore & RiskAction>()(
|
||||
devtools(
|
||||
set => ({
|
||||
...initialStore,
|
||||
reset: () => {
|
||||
set(initialStore);
|
||||
},
|
||||
setPluginRiskIsRead: flag => {
|
||||
set({ pluginRiskIsRead: flag });
|
||||
},
|
||||
setToolHiddenModeNewbieGuideIsRead: flag => {
|
||||
set({
|
||||
toolHiddenModeNewbieGuideIsRead: flag,
|
||||
});
|
||||
},
|
||||
}),
|
||||
{
|
||||
enabled: IS_DEV_MODE,
|
||||
name: 'botStudio.riskWarningStore',
|
||||
},
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user