/* * 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 dayjs from 'dayjs'; import classNames from 'classnames'; import { useRequest } from 'ahooks'; import { IllustrationNoContent } from '@douyinfe/semi-illustrations'; import { I18n } from '@coze-arch/i18n'; import { typeSafeJSONParse } from '@coze-arch/bot-utils'; import { EVENT_NAMES, sendTeaEvent } from '@coze-arch/bot-tea'; import { type KVItem } from '@coze-arch/bot-api/memory'; import { MemoryApi } from '@coze-arch/bot-api'; import { IconCozRefresh, IconCozCrossCircleFill, } from '@coze-arch/coze-design/icons'; import { Table, Select, IconButton, Tooltip, Empty } from '@coze-arch/coze-design'; export interface VariablesValueProps { projectID: string; version?: string; } export function VariablesValue({ projectID, version }: VariablesValueProps) { const { loading, data, refresh } = useRequest(async () => { const res = await MemoryApi.GetPlayGroundMemory({ project_id: projectID, ...(version ? { version } : {}), }); return res.memories ?? []; }); const handleClear = async (item: KVItem) => { if (!item.keyword) { return; } sendTeaEvent(EVENT_NAMES.memory_click_front, { project_id: projectID, resource_type: 'variable', action: 'reset', source: 'app_detail_page', source_detail: 'memory_preview', }); await MemoryApi.DelProfileMemory({ project_id: projectID, keywords: [item.keyword], }); refresh(); }; const handleReset = async () => { sendTeaEvent(EVENT_NAMES.memory_click_front, { project_id: projectID, resource_type: 'variable', action: 'reset', source: 'app_detail_page', source_detail: 'memory_preview', }); await MemoryApi.DelProfileMemory({ project_id: projectID }); refresh(); }; return (