mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-18 10:17:26 +00:00
* wip ionet integrate * wip ionet integrate * wip ionet integrate * ollama wip * wip * feat: ionet integration & ollama manage * fix merge conflict * wip * fix: test conn cors * wip * fix ionet * fix ionet * wip * fix model select * refactor: Remove `pkg/ionet` test files and update related Go source and web UI model deployment components. * feat: Enhance model deployment UI with styling improvements, updated text, and a new description component. * Revert "feat: Enhance model deployment UI with styling improvements, updated text, and a new description component." This reverts commit 8b75cb5bf0d1a534b339df8c033be9a6c7df7964.
148 lines
4.4 KiB
JavaScript
148 lines
4.4 KiB
JavaScript
/*
|
|
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
|
|
*/
|
|
|
|
import React, { useState } from 'react';
|
|
import CardPro from '../../common/ui/CardPro';
|
|
import DeploymentsTable from './DeploymentsTable';
|
|
import DeploymentsActions from './DeploymentsActions';
|
|
import DeploymentsFilters from './DeploymentsFilters';
|
|
import EditDeploymentModal from './modals/EditDeploymentModal';
|
|
import CreateDeploymentModal from './modals/CreateDeploymentModal';
|
|
import ColumnSelectorModal from './modals/ColumnSelectorModal';
|
|
import { useDeploymentsData } from '../../../hooks/model-deployments/useDeploymentsData';
|
|
import { useIsMobile } from '../../../hooks/common/useIsMobile';
|
|
import { createCardProPagination } from '../../../helpers/utils';
|
|
|
|
const DeploymentsPage = () => {
|
|
const deploymentsData = useDeploymentsData();
|
|
const isMobile = useIsMobile();
|
|
|
|
// Create deployment modal state
|
|
const [showCreateModal, setShowCreateModal] = useState(false);
|
|
|
|
const {
|
|
// Edit state
|
|
showEdit,
|
|
editingDeployment,
|
|
closeEdit,
|
|
refresh,
|
|
|
|
// Actions state
|
|
selectedKeys,
|
|
setSelectedKeys,
|
|
setEditingDeployment,
|
|
setShowEdit,
|
|
batchDeleteDeployments,
|
|
|
|
// Filters state
|
|
formInitValues,
|
|
setFormApi,
|
|
searchDeployments,
|
|
loading,
|
|
searching,
|
|
|
|
// Column visibility
|
|
showColumnSelector,
|
|
setShowColumnSelector,
|
|
visibleColumns,
|
|
setVisibleColumns,
|
|
COLUMN_KEYS,
|
|
|
|
// Description state
|
|
compactMode,
|
|
setCompactMode,
|
|
|
|
// Translation
|
|
t,
|
|
} = deploymentsData;
|
|
|
|
return (
|
|
<>
|
|
{/* Modals */}
|
|
<EditDeploymentModal
|
|
refresh={refresh}
|
|
editingDeployment={editingDeployment}
|
|
visible={showEdit}
|
|
handleClose={closeEdit}
|
|
/>
|
|
|
|
<CreateDeploymentModal
|
|
visible={showCreateModal}
|
|
onCancel={() => setShowCreateModal(false)}
|
|
onSuccess={refresh}
|
|
t={t}
|
|
/>
|
|
|
|
<ColumnSelectorModal
|
|
visible={showColumnSelector}
|
|
onCancel={() => setShowColumnSelector(false)}
|
|
visibleColumns={visibleColumns}
|
|
onVisibleColumnsChange={setVisibleColumns}
|
|
columnKeys={COLUMN_KEYS}
|
|
t={t}
|
|
/>
|
|
|
|
{/* Main Content */}
|
|
<CardPro
|
|
type='type3'
|
|
actionsArea={
|
|
<div className='flex flex-col md:flex-row justify-between items-center gap-2 w-full'>
|
|
<DeploymentsActions
|
|
selectedKeys={selectedKeys}
|
|
setSelectedKeys={setSelectedKeys}
|
|
setEditingDeployment={setEditingDeployment}
|
|
setShowEdit={setShowEdit}
|
|
batchDeleteDeployments={batchDeleteDeployments}
|
|
compactMode={compactMode}
|
|
setCompactMode={setCompactMode}
|
|
showCreateModal={showCreateModal}
|
|
setShowCreateModal={setShowCreateModal}
|
|
setShowColumnSelector={setShowColumnSelector}
|
|
t={t}
|
|
/>
|
|
<DeploymentsFilters
|
|
formInitValues={formInitValues}
|
|
setFormApi={setFormApi}
|
|
searchDeployments={searchDeployments}
|
|
loading={loading}
|
|
searching={searching}
|
|
setShowColumnSelector={setShowColumnSelector}
|
|
t={t}
|
|
/>
|
|
</div>
|
|
}
|
|
paginationArea={createCardProPagination({
|
|
currentPage: deploymentsData.activePage,
|
|
pageSize: deploymentsData.pageSize,
|
|
total: deploymentsData.deploymentCount,
|
|
onPageChange: deploymentsData.handlePageChange,
|
|
onPageSizeChange: deploymentsData.handlePageSizeChange,
|
|
isMobile: isMobile,
|
|
t: deploymentsData.t,
|
|
})}
|
|
t={deploymentsData.t}
|
|
>
|
|
<DeploymentsTable {...deploymentsData} />
|
|
</CardPro>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default DeploymentsPage;
|