import { useEffect, useState } from 'react'
import { useQueryClient } from '@tanstack/react-query'
import { getRouteApi } from '@tanstack/react-router'
import { Plus } from 'lucide-react'
import { useTranslation } from 'react-i18next'
import { Button } from '@/components/ui/button'
import { SectionPageLayout } from '@/components/layout'
import { listDeployments } from './api'
import { DeploymentAccessGuard } from './components/deployment-access-guard'
import { DeploymentsTable } from './components/deployments-table'
import { CreateDeploymentDrawer } from './components/dialogs/create-deployment-drawer'
import { ModelsDialogs } from './components/models-dialogs'
import { ModelsPrimaryButtons } from './components/models-primary-buttons'
import { ModelsProvider, useModels } from './components/models-provider'
import { ModelsTable } from './components/models-table'
import { useModelDeploymentSettings } from './hooks/use-model-deployment-settings'
import { deploymentsQueryKeys } from './lib'
import {
type ModelsSectionId,
MODELS_DEFAULT_SECTION,
} from './section-registry'
const route = getRouteApi('/_authenticated/models/$section')
function ModelsContent() {
const { t } = useTranslation()
const queryClient = useQueryClient()
const { tabCategory, setTabCategory } = useModels()
const params = route.useParams()
const activeSection = (params.section ??
MODELS_DEFAULT_SECTION) as ModelsSectionId
// Deployment create dialog state
const [createDeploymentOpen, setCreateDeploymentOpen] = useState(false)
// keep context state in sync (for components that rely on it)
useEffect(() => {
if (tabCategory !== activeSection) {
setTabCategory(activeSection)
}
}, [activeSection, setTabCategory, tabCategory])
const {
loading: deploymentLoading,
loadingPhase,
isIoNetEnabled,
connectionLoading,
connectionOk,
connectionError,
testConnection,
refresh: refreshDeploymentSettings,
} = useModelDeploymentSettings()
// Ensure settings are fresh when switching to deployments section
useEffect(() => {
if (activeSection === 'deployments') {
refreshDeploymentSettings()
}
}, [activeSection, refreshDeploymentSettings])
// Prefetch deployments list while connection check is in progress
// This allows the data to be ready as soon as the guard passes
useEffect(() => {
if (
activeSection === 'deployments' &&
isIoNetEnabled &&
loadingPhase === 'connection'
) {
const defaultParams = { p: 1, page_size: 10 }
queryClient.prefetchQuery({
queryKey: deploymentsQueryKeys.list(defaultParams),
queryFn: () => listDeployments(defaultParams),
staleTime: 30 * 1000, // 30 seconds
})
}
}, [activeSection, isIoNetEnabled, loadingPhase, queryClient])
return (
<>
{activeSection === 'metadata' ? t('Metadata') : t('Deployments')}
{activeSection === 'metadata'
? t('Manage model metadata and configuration')
: t('Manage model deployments')}
{activeSection === 'metadata' ? (
) : (
)}
{activeSection === 'metadata' ? (
) : (
)}
>
)
}
export function Models() {
return (
)
}