mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 01:40:53 +01:00
27 lines
663 B
TypeScript
27 lines
663 B
TypeScript
import COMMAND from "../constants/commands";
|
|
import { getMainWindow } from "../main-window";
|
|
import {
|
|
customModelsFolderPath,
|
|
setCustomModelsFolderPath,
|
|
} from "../utils/config-variables";
|
|
import getModels from "../utils/get-models";
|
|
import logit from "../utils/logit";
|
|
|
|
const getModelsList = async (event, payload) => {
|
|
const mainWindow = getMainWindow();
|
|
|
|
if (!mainWindow) return;
|
|
if (payload) {
|
|
setCustomModelsFolderPath(payload);
|
|
|
|
logit("📁 Custom Models Folder Path: ", customModelsFolderPath);
|
|
|
|
mainWindow.webContents.send(
|
|
COMMAND.CUSTOM_MODEL_FILES_LIST,
|
|
getModels(payload)
|
|
);
|
|
}
|
|
};
|
|
|
|
export default getModelsList;
|