/* * 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 { logger } from '@coze-arch/logger'; import { I18n } from '@coze-arch/i18n'; import { IconCozCross } from '@coze-arch/coze-design/icons'; import { Button } from '@coze-arch/coze-design'; import styles from '../index.module.less'; import { fetchResource, downloadFile } from '../../utils/download'; import { ReactComponent as IconImageBroken } from '../../assets/not-support.svg'; interface LoadErrorProps { onClose?: VoidFunction; url: string; filename?: string; } export const NotSupport = ({ onClose, url, filename }: LoadErrorProps) => { const [loading, setLoading] = useState(false); const handleDownload = async () => { try { setLoading(true); const blob = await fetchResource(url); downloadFile(blob, filename); setLoading(false); } catch (error) { logger.error({ eventName: 'LoadError-page', error: error as Error, }); setLoading(false); } }; return (