* @janhq/plugin-core module * refactor web to use exported services from module * refactor data-plugin to provide DAL & move model logics to model management plugin * model-management in TS * add ci auto package, increate version, and publish to npm repository * chore: storage operations * chore: hybrid data-plugin esm & cjs module * chore: PouchDB Driver * chore: documentation --------- Co-authored-by: Hien To <hien@jan.ai> Co-authored-by: Service Account <service@jan.ai>
98 lines
2.8 KiB
TypeScript
98 lines
2.8 KiB
TypeScript
import SimpleTag from "../SimpleTag";
|
|
import PrimaryButton from "../PrimaryButton";
|
|
import { formatDownloadPercentage, toGigabytes } from "@/_utils/converter";
|
|
import SecondaryButton from "../SecondaryButton";
|
|
import { Product } from "@/_models/Product";
|
|
import { useCallback, useEffect, useMemo } from "react";
|
|
import { ModelVersion } from "@/_models/ModelVersion";
|
|
import useGetPerformanceTag from "@/_hooks/useGetPerformanceTag";
|
|
import useDownloadModel from "@/_hooks/useDownloadModel";
|
|
import { useGetDownloadedModels } from "@/_hooks/useGetDownloadedModels";
|
|
import { modelDownloadStateAtom } from "@/_helpers/atoms/DownloadState.atom";
|
|
import { atom, useAtomValue, useSetAtom } from "jotai";
|
|
import {
|
|
MainViewState,
|
|
setMainViewStateAtom,
|
|
} from "@/_helpers/atoms/MainView.atom";
|
|
|
|
type Props = {
|
|
suitableModel: ModelVersion;
|
|
exploreModel: Product;
|
|
};
|
|
|
|
const ExploreModelItemHeader: React.FC<Props> = ({
|
|
suitableModel,
|
|
exploreModel,
|
|
}) => {
|
|
const { downloadModel } = useDownloadModel();
|
|
const { downloadedModels } = useGetDownloadedModels();
|
|
const { performanceTag, title, getPerformanceForModel } =
|
|
useGetPerformanceTag();
|
|
const downloadAtom = useMemo(
|
|
() => atom((get) => get(modelDownloadStateAtom)[suitableModel._id]),
|
|
[suitableModel._id]
|
|
);
|
|
const downloadState = useAtomValue(downloadAtom);
|
|
const setMainViewState = useSetAtom(setMainViewStateAtom);
|
|
|
|
useEffect(() => {
|
|
getPerformanceForModel(suitableModel);
|
|
}, [suitableModel]);
|
|
|
|
const onDownloadClick = useCallback(() => {
|
|
downloadModel(exploreModel, suitableModel);
|
|
}, [exploreModel, suitableModel]);
|
|
|
|
const isDownloaded =
|
|
downloadedModels.find((model) => model._id === suitableModel._id) != null;
|
|
|
|
let downloadButton = (
|
|
<PrimaryButton
|
|
title={
|
|
suitableModel.size
|
|
? `Download (${toGigabytes(suitableModel.size)})`
|
|
: "Download"
|
|
}
|
|
onClick={() => onDownloadClick()}
|
|
/>
|
|
);
|
|
|
|
if (isDownloaded) {
|
|
downloadButton = (
|
|
<PrimaryButton
|
|
title="View Downloaded Model"
|
|
onClick={() => {
|
|
setMainViewState(MainViewState.MyModel);
|
|
}}
|
|
className="bg-green-500 hover:bg-green-400"
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (downloadState != null) {
|
|
// downloading
|
|
downloadButton = (
|
|
<SecondaryButton
|
|
disabled
|
|
title={`Downloading (${formatDownloadPercentage(
|
|
downloadState.percent
|
|
)})`}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex items-center justify-between p-4 border-b border-gray-200">
|
|
<div className="flex items-center gap-2">
|
|
<span>{exploreModel.name}</span>
|
|
{performanceTag && (
|
|
<SimpleTag title={title} type={performanceTag} clickable={false} />
|
|
)}
|
|
</div>
|
|
{downloadButton}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ExploreModelItemHeader;
|