diff --git a/components/Settings.tsx b/components/Settings.tsx index a7a97dc..4f4d5fc 100644 --- a/components/Settings.tsx +++ b/components/Settings.tsx @@ -1,6 +1,6 @@ import React, { useState, useEffect } from "react"; import { View, Text, TextInput, Pressable, StyleSheet } from "react-native"; -import { WhisperFile } from "@/app/lib/whisper"; +import { WhisperFile, download_status_t, whisper_tag_t } from "@/app/lib/whisper"; import { Settings } from "@/app/lib/settings"; import { Picker } from "@react-native-picker/picker"; import { LanguageServer, language_matrix, language_matrix_entry } from "@/app/i18n/api"; @@ -25,9 +25,9 @@ const SettingsComponent = () => { const [whisperModel, setWhisperModel] = useState("small"); const [downloader, setDownloader] = useState(null); - const [whisperDownloadProgress, setWhisperDownloadProgress] = useState< - any | null - >(null); + const [whisperFile, setWhisperFile] = useState(null); + const [downloadStatus, setDownloadStatus] = useState(); + const [downloadStatusChecker, setDownloadStatusChecker] = useState(); useEffect(() => { loadSettings(); @@ -74,17 +74,22 @@ const SettingsComponent = () => { } }; + const intervalUpdateDownloadStatus = async () => { + if (!whisperFile) return; + const status = await whisperFile.getDownloadStatus(); + setDownloadStatus(status); + } + const handleWhisperModelChange = async ( - model: keyof typeof WHISPER_MODELS + model: whisper_tag_t, ) => { const settings = await Settings.getDefault(); - setWhisperModel(model); await settings.setWhisperModel(model); - checkDownloadStatus(model); + setWhisperModel(model); + setWhisperFile(new WhisperFile(model)); }; const doDownload = async () => { - const whisperFile = WHISPER_MODELS[whisperModel]; const resumable = await whisperFile.createDownloadResumable({ onData: (progress) => setWhisperDownloadProgress(progress), }); @@ -122,16 +127,16 @@ const SettingsComponent = () => { return hostLanguage && libretranslateBaseUrl ? ( Host Language: - - { languag } - - - + {languageOptions && Object.entries(languageOptions).map(([key, value]) => { + return () + })} + )} LibreTranslate Base URL: { - const originalModule = jest.requireActual('@/app/lib/whisper'); +// Mock the WhisperFile class +jest.mock("@/app/lib/whisper", () => { + const originalModule = jest.requireActual("@/app/lib/whisper"); return { ...originalModule, - Whisper: class { - constructor(...args) { - originalModule.Whisper.apply(this, args); - } + WhisperFile: jest.fn().mockImplementation((tag, targetFileName, label, size) => ({ + tag, + targetFileName, + label, + size, + doesTargetExist: jest.fn(), + getDownloadStatus: jest.fn(), // Mock other methods as needed + isDownloadcomplete: () => true, + })), + }; +}); - targetFile = { - bytes: jest.fn().mockReturnValue(new Uint8Array([/* mock data */])), - }; - }, +jest.mock("expo-file-system", () => { + const originalModule = jest.requireActual("expo-file-system"); + + return { + ...originalModule, + File: jest.fn().mockImplementation(() => ({ + bytes: jest.fn(), + exists: jest.fn(), + })), }; }); diff --git a/translation_terrace.db b/translation_terrace.db deleted file mode 100644 index 1bee694..0000000 Binary files a/translation_terrace.db and /dev/null differ