/*
Copyright (C) 2023-2026 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 .
For commercial licensing, please contact support@quantumnous.com
*/
/* eslint-disable react-refresh/only-export-components */
import React, { createContext, useContext, useState } from 'react'
import type {
Model,
ModelTabCategory,
Vendor,
SyncDiffData,
SyncLocale,
SyncSource,
} from '../types'
// ============================================================================
// Types
// ============================================================================
type DialogType =
| 'create-model'
| 'update-model'
| 'create-vendor'
| 'update-vendor'
| 'missing-models'
| 'sync-wizard'
| 'upstream-conflict'
| 'prefill-groups'
| 'description'
| null
type ModelsContextType = {
open: DialogType
setOpen: (open: DialogType) => void
currentRow: Model | null
setCurrentRow: (model: Model | null) => void
currentVendor: Vendor | null
setCurrentVendor: (vendor: Vendor | null) => void
selectedVendor: string | null
setSelectedVendor: (vendor: string | null) => void
descriptionData: { modelName: string; description: string } | null
setDescriptionData: (
data: { modelName: string; description: string } | null
) => void
upstreamConflicts: SyncDiffData['conflicts']
setUpstreamConflicts: (conflicts: SyncDiffData['conflicts']) => void
syncWizardOptions: { locale: SyncLocale; source: SyncSource }
setSyncWizardOptions: React.Dispatch<
React.SetStateAction<{ locale: SyncLocale; source: SyncSource }>
>
tabCategory: ModelTabCategory
setTabCategory: (category: ModelTabCategory) => void
}
// ============================================================================
// Context
// ============================================================================
const ModelsContext = createContext(undefined)
// ============================================================================
// Provider
// ============================================================================
export function ModelsProvider({ children }: { children: React.ReactNode }) {
const [open, setOpen] = useState(null)
const [currentRow, setCurrentRow] = useState(null)
const [currentVendor, setCurrentVendor] = useState(null)
const [selectedVendor, setSelectedVendor] = useState(null)
const [descriptionData, setDescriptionData] = useState<{
modelName: string
description: string
} | null>(null)
const [upstreamConflicts, setUpstreamConflicts] = useState<
SyncDiffData['conflicts']
>([])
const [syncWizardOptions, setSyncWizardOptions] = useState<{
locale: SyncLocale
source: SyncSource
}>({
locale: 'zh',
source: 'official',
})
const [tabCategory, setTabCategory] = useState('metadata')
return (
{children}
)
}
// ============================================================================
// Hook
// ============================================================================
export function useModels() {
const context = useContext(ModelsContext)
if (!context) {
throw new Error('useModels must be used within ModelsProvider')
}
return context
}