* Revert "feat: temporary remove dark mode :( (#2168)" This reverts commit 222b4ad897c275dab0eaec3c8a8472bf3df7afc4. * fix: revert darkmode and fix darkmode for import model * fix: prettier format import model --------- Co-authored-by: Louis <louis@jan.ai>
155 lines
4.7 KiB
TypeScript
155 lines
4.7 KiB
TypeScript
import { useCallback } from 'react'
|
|
import { useDropzone } from 'react-dropzone'
|
|
|
|
import { ImportingModel, baseName, fs, joinPath } from '@janhq/core'
|
|
import { Modal, ModalContent, ModalHeader, ModalTitle } from '@janhq/uikit'
|
|
import { useAtomValue, useSetAtom } from 'jotai'
|
|
|
|
import { UploadCloudIcon } from 'lucide-react'
|
|
|
|
import { v4 as uuidv4 } from 'uuid'
|
|
|
|
import { snackbar } from '@/containers/Toast'
|
|
|
|
import useDropModelBinaries from '@/hooks/useDropModelBinaries'
|
|
import {
|
|
getImportModelStageAtom,
|
|
setImportModelStageAtom,
|
|
} from '@/hooks/useImportModel'
|
|
|
|
import { FilePathWithSize } from '@/utils/file'
|
|
|
|
import { importingModelsAtom } from '@/helpers/atoms/Model.atom'
|
|
|
|
const SelectingModelModal: React.FC = () => {
|
|
const setImportModelStage = useSetAtom(setImportModelStageAtom)
|
|
const importModelStage = useAtomValue(getImportModelStageAtom)
|
|
const setImportingModels = useSetAtom(importingModelsAtom)
|
|
const { onDropModels } = useDropModelBinaries()
|
|
|
|
const onSelectFileClick = useCallback(async () => {
|
|
const filePaths = await window.core?.api?.selectModelFiles()
|
|
if (!filePaths || filePaths.length === 0) return
|
|
|
|
const sanitizedFilePaths: FilePathWithSize[] = []
|
|
for (const filePath of filePaths) {
|
|
const fileStats = await fs.fileStat(filePath, true)
|
|
if (!fileStats) continue
|
|
|
|
if (!fileStats.isDirectory) {
|
|
const fileName = await baseName(filePath)
|
|
sanitizedFilePaths.push({
|
|
path: filePath,
|
|
name: fileName,
|
|
size: fileStats.size,
|
|
})
|
|
} else {
|
|
// allowing only one level of directory
|
|
const files = await fs.readdirSync(filePath)
|
|
|
|
for (const file of files) {
|
|
const fullPath = await joinPath([filePath, file])
|
|
const fileStats = await fs.fileStat(fullPath, true)
|
|
if (!fileStats || fileStats.isDirectory) continue
|
|
|
|
sanitizedFilePaths.push({
|
|
path: fullPath,
|
|
name: file,
|
|
size: fileStats.size,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
const unsupportedFiles = sanitizedFilePaths.filter(
|
|
(file) => !file.path.endsWith('.gguf')
|
|
)
|
|
const supportedFiles = sanitizedFilePaths.filter((file) =>
|
|
file.path.endsWith('.gguf')
|
|
)
|
|
|
|
const importingModels: ImportingModel[] = supportedFiles.map(
|
|
({ path, name, size }: FilePathWithSize) => {
|
|
return {
|
|
importId: uuidv4(),
|
|
modelId: undefined,
|
|
name: name.replace('.gguf', ''),
|
|
description: '',
|
|
path: path,
|
|
tags: [],
|
|
size: size,
|
|
status: 'PREPARING',
|
|
format: 'gguf',
|
|
}
|
|
}
|
|
)
|
|
if (unsupportedFiles.length > 0) {
|
|
snackbar({
|
|
description: `Only files with .gguf extension can be imported.`,
|
|
type: 'error',
|
|
})
|
|
}
|
|
if (importingModels.length === 0) return
|
|
|
|
setImportingModels(importingModels)
|
|
setImportModelStage('MODEL_SELECTED')
|
|
}, [setImportingModels, setImportModelStage])
|
|
|
|
const { isDragActive, getRootProps } = useDropzone({
|
|
noClick: true,
|
|
multiple: true,
|
|
onDrop: onDropModels,
|
|
})
|
|
|
|
const borderColor = isDragActive ? 'border-primary' : 'border-border'
|
|
const textColor = isDragActive ? 'text-primary' : 'text-muted-foreground'
|
|
const dragAndDropBgColor = isDragActive
|
|
? 'bg-[#EFF6FF] dark:bg-blue-50/10'
|
|
: 'bg-background'
|
|
|
|
return (
|
|
<Modal
|
|
open={importModelStage === 'SELECTING_MODEL'}
|
|
onOpenChange={() => {
|
|
setImportModelStage('NONE')
|
|
}}
|
|
>
|
|
<ModalContent>
|
|
<ModalHeader>
|
|
<ModalTitle>Import Model</ModalTitle>
|
|
|
|
<p className="text-sm font-medium text-muted-foreground">
|
|
Import any model file (GGUF) or folder. Your imported model will be
|
|
private to you.
|
|
</p>
|
|
</ModalHeader>
|
|
|
|
<div
|
|
className={`flex h-[172px] w-full items-center justify-center rounded-md border ${borderColor} ${dragAndDropBgColor}`}
|
|
{...getRootProps()}
|
|
onClick={onSelectFileClick}
|
|
>
|
|
<div className="flex flex-col items-center justify-center">
|
|
<div className="mx-auto inline-flex h-12 w-12 items-center justify-center rounded-full bg-blue-200">
|
|
<UploadCloudIcon size={24} className="text-blue-600" />
|
|
</div>
|
|
|
|
<div className="mt-4">
|
|
<span className="text-sm font-bold text-primary">
|
|
Click to upload
|
|
</span>
|
|
<span className={`text-sm ${textColor} font-medium`}>
|
|
{' '}
|
|
or drag and drop
|
|
</span>
|
|
</div>
|
|
<span className={`text-xs font-medium ${textColor}`}>(GGUF)</span>
|
|
</div>
|
|
</div>
|
|
</ModalContent>
|
|
</Modal>
|
|
)
|
|
}
|
|
|
|
export default SelectingModelModal
|