mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-07 01:56:53 +00:00
Add a Bun script to apply and normalize AGPL copyright headers across the default frontend source files. The script keeps headers idempotent, upgrades existing headers to the 2023-2026 QuantumNous range, and is exposed through `bun run copyright` for future maintenance.
137 lines
4.2 KiB
TypeScript
Vendored
137 lines
4.2 KiB
TypeScript
Vendored
/*
|
|
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 <https://www.gnu.org/licenses/>.
|
|
|
|
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<ModelsContextType | undefined>(undefined)
|
|
|
|
// ============================================================================
|
|
// Provider
|
|
// ============================================================================
|
|
|
|
export function ModelsProvider({ children }: { children: React.ReactNode }) {
|
|
const [open, setOpen] = useState<DialogType>(null)
|
|
const [currentRow, setCurrentRow] = useState<Model | null>(null)
|
|
const [currentVendor, setCurrentVendor] = useState<Vendor | null>(null)
|
|
const [selectedVendor, setSelectedVendor] = useState<string | null>(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<ModelTabCategory>('metadata')
|
|
|
|
return (
|
|
<ModelsContext.Provider
|
|
value={{
|
|
open,
|
|
setOpen,
|
|
currentRow,
|
|
setCurrentRow,
|
|
currentVendor,
|
|
setCurrentVendor,
|
|
selectedVendor,
|
|
setSelectedVendor,
|
|
descriptionData,
|
|
setDescriptionData,
|
|
upstreamConflicts,
|
|
setUpstreamConflicts,
|
|
syncWizardOptions,
|
|
setSyncWizardOptions,
|
|
tabCategory,
|
|
setTabCategory,
|
|
}}
|
|
>
|
|
{children}
|
|
</ModelsContext.Provider>
|
|
)
|
|
}
|
|
|
|
// ============================================================================
|
|
// Hook
|
|
// ============================================================================
|
|
|
|
export function useModels() {
|
|
const context = useContext(ModelsContext)
|
|
if (!context) {
|
|
throw new Error('useModels must be used within ModelsProvider')
|
|
}
|
|
return context
|
|
}
|