2025-07-23 01:58:51 +08:00
|
|
|
/*
|
|
|
|
|
Copyright (C) 2025 QuantumNous
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
|
|
|
*/
|
|
|
|
|
|
2025-07-23 03:14:25 +08:00
|
|
|
import React, { useMemo, useState } from 'react';
|
2025-07-23 01:58:51 +08:00
|
|
|
import { Input, Button } from '@douyinfe/semi-ui';
|
2025-07-23 03:14:25 +08:00
|
|
|
import { IconSearch, IconCopy, IconFilter } from '@douyinfe/semi-icons';
|
2025-07-24 17:10:08 +08:00
|
|
|
import PricingFilterModal from '../../modal/PricingFilterModal';
|
2025-08-04 21:36:31 +08:00
|
|
|
import PricingVendorIntroWithSkeleton from './PricingVendorIntroWithSkeleton';
|
2025-07-23 01:58:51 +08:00
|
|
|
|
2025-07-24 17:10:08 +08:00
|
|
|
const PricingTopSection = ({
|
2025-07-23 01:58:51 +08:00
|
|
|
selectedRowKeys,
|
|
|
|
|
copyText,
|
|
|
|
|
handleChange,
|
|
|
|
|
handleCompositionStart,
|
|
|
|
|
handleCompositionEnd,
|
2025-07-23 03:14:25 +08:00
|
|
|
isMobile,
|
|
|
|
|
sidebarProps,
|
2025-08-04 21:36:31 +08:00
|
|
|
filterVendor,
|
|
|
|
|
models,
|
|
|
|
|
filteredModels,
|
2025-07-24 17:10:08 +08:00
|
|
|
loading,
|
2025-08-12 23:32:25 +08:00
|
|
|
searchValue,
|
2025-07-23 01:58:51 +08:00
|
|
|
t
|
|
|
|
|
}) => {
|
2025-07-23 03:14:25 +08:00
|
|
|
const [showFilterModal, setShowFilterModal] = useState(false);
|
|
|
|
|
|
2025-07-23 01:58:51 +08:00
|
|
|
const SearchAndActions = useMemo(() => (
|
|
|
|
|
<div className="flex items-center gap-4 w-full">
|
|
|
|
|
{/* 搜索框 */}
|
|
|
|
|
<div className="flex-1">
|
|
|
|
|
<Input
|
|
|
|
|
prefix={<IconSearch />}
|
|
|
|
|
placeholder={t('模糊搜索模型名称')}
|
2025-08-12 23:32:25 +08:00
|
|
|
value={searchValue}
|
2025-07-23 01:58:51 +08:00
|
|
|
onCompositionStart={handleCompositionStart}
|
|
|
|
|
onCompositionEnd={handleCompositionEnd}
|
|
|
|
|
onChange={handleChange}
|
|
|
|
|
showClear
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* 操作按钮 */}
|
|
|
|
|
<Button
|
2025-07-23 03:14:25 +08:00
|
|
|
theme='outline'
|
2025-07-23 01:58:51 +08:00
|
|
|
type='primary'
|
|
|
|
|
icon={<IconCopy />}
|
|
|
|
|
onClick={() => copyText(selectedRowKeys)}
|
|
|
|
|
disabled={selectedRowKeys.length === 0}
|
|
|
|
|
className="!bg-blue-500 hover:!bg-blue-600 text-white"
|
|
|
|
|
>
|
2025-07-23 03:14:25 +08:00
|
|
|
{t('复制')}
|
2025-07-23 01:58:51 +08:00
|
|
|
</Button>
|
2025-07-23 03:14:25 +08:00
|
|
|
|
|
|
|
|
{/* 移动端筛选按钮 */}
|
|
|
|
|
{isMobile && (
|
|
|
|
|
<Button
|
|
|
|
|
theme="outline"
|
|
|
|
|
type='tertiary'
|
|
|
|
|
icon={<IconFilter />}
|
|
|
|
|
onClick={() => setShowFilterModal(true)}
|
|
|
|
|
>
|
|
|
|
|
{t('筛选')}
|
|
|
|
|
</Button>
|
|
|
|
|
)}
|
2025-07-23 01:58:51 +08:00
|
|
|
</div>
|
2025-08-12 23:32:25 +08:00
|
|
|
), [selectedRowKeys, t, handleCompositionStart, handleCompositionEnd, handleChange, copyText, isMobile, searchValue]);
|
2025-07-23 01:58:51 +08:00
|
|
|
|
2025-07-23 03:14:25 +08:00
|
|
|
return (
|
|
|
|
|
<>
|
2025-08-10 14:10:50 +08:00
|
|
|
{/* 供应商介绍区域(桌面端显示) */}
|
|
|
|
|
{!isMobile && (
|
|
|
|
|
<PricingVendorIntroWithSkeleton
|
|
|
|
|
loading={loading}
|
|
|
|
|
filterVendor={filterVendor}
|
|
|
|
|
models={filteredModels}
|
|
|
|
|
allModels={models}
|
|
|
|
|
t={t}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
2025-07-24 17:10:08 +08:00
|
|
|
|
|
|
|
|
{/* 搜索和操作区域 */}
|
2025-07-23 03:14:25 +08:00
|
|
|
{SearchAndActions}
|
|
|
|
|
|
|
|
|
|
{/* 移动端筛选Modal */}
|
|
|
|
|
{isMobile && (
|
|
|
|
|
<PricingFilterModal
|
|
|
|
|
visible={showFilterModal}
|
|
|
|
|
onClose={() => setShowFilterModal(false)}
|
|
|
|
|
sidebarProps={sidebarProps}
|
|
|
|
|
t={t}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</>
|
|
|
|
|
);
|
2025-07-23 01:58:51 +08:00
|
|
|
};
|
|
|
|
|
|
2025-07-24 17:10:08 +08:00
|
|
|
export default PricingTopSection;
|