/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import { getInjectable } from "@ogre-tools/injectable"; import { lensWindowInjectionToken } from "../application-window/lens-window-injection-token"; import createLensWindowInjectable from "../application-window/create-lens-window.injectable"; import staticFilesDirectoryInjectable from "../../../../common/vars/static-files-directory.injectable"; import getAbsolutePathInjectable from "../../../../common/path/get-absolute-path.injectable"; const splashWindowInjectable = getInjectable({ id: "splash-window", instantiate: (di) => { const createLensWindow = di.inject(createLensWindowInjectable); const staticFilesDirectory = di.inject(staticFilesDirectoryInjectable); const getAbsolutePath = di.inject(getAbsolutePathInjectable); const splashWindowFile = getAbsolutePath(staticFilesDirectory, "splash.html"); return createLensWindow({ id: "splash", title: "Loading", getContentSource: () => ({ file: splashWindowFile, }), defaultWidth: 500, defaultHeight: 300, resizable: false, windowFrameUtilitiesAreShown: false, centered: true, }); }, injectionToken: lensWindowInjectionToken, }); export default splashWindowInjectable;