@kui-shell/core
Version:
An Electron-based shell for cloud-native development
104 lines • 4.38 kB
JavaScript
/*
* Copyright 2018 The Kubernetes Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { inBrowser } from './client';
function catastrophe(err) {
console.error('restart needed');
console.error(err);
document.body.classList.add('oops-total-catastrophe');
}
function initCommandRegistrar() {
return __awaiter(this, void 0, void 0, function* () {
const { init } = yield import('../../commands/tree');
yield init();
});
}
/**
* Invoked on the domReady event.
*
* @param { Client } clientMain client-provided renderer of main content
*
*/
const domReady = (inSandbox, client) => () => __awaiter(void 0, void 0, void 0, function* () {
const initializer = import('./init');
const plugins = import('../../plugins/plugins');
const events = import('../../core/events');
try {
const waitForThese = [];
const commands = initCommandRegistrar();
waitForThese.push(plugins.then((_) => __awaiter(void 0, void 0, void 0, function* () {
yield _.init();
yield commands;
yield _.preload();
})));
waitForThese.push(document.body.classList.contains('in-electron')
? import(/* webpackChunkName: "electron" */ /* webpackMode: "lazy" */ '../electron-events').then(_ => _.init())
: Promise.resolve());
waitForThese.push(waitForThese[1].then(() => initializer).then(_ => _.init()));
// await query.then(_ => _.init())
yield Promise.all(waitForThese);
document.body.classList.remove('still-loading');
events.then(eventChannelUnsafe => {
eventChannelUnsafe.default.emit('/init/done');
if (client) {
const root = document.body.querySelector('main');
if (!inSandbox && !inBrowser()) {
// if in Electron, then see if the init-electron code wants to special case things
import(/* webpackChunkName: "electron" */ /* webpackMode: "lazy" */ './init-electron').then(_ => _.render(client, root));
}
else {
client(root, false);
}
}
});
}
catch (err) {
catastrophe(err);
}
});
/**
* Usage: clients will invoke this with their main renderer.
*
* For reference, the HTML template is to be found in
* ../../../templates/index.ejs. This template is in turn managed by
* packages/webpack/webpack.config.js.
*
* @param renderer a function that injects its content into the given
* container
*
*/
export default (client) => __awaiter(void 0, void 0, void 0, function* () {
import('./init').then(_ => _.preinit(false));
window.addEventListener('load', domReady(false, client), { once: true });
});
/** For booting into an external browser sandbox, such as codesandbox.io */
export function bootIntoSandbox() {
return __awaiter(this, void 0, void 0, function* () {
const { setMedia, Media } = yield import('../../core/capabilities');
setMedia(Media.Browser);
yield import('./init').then(_ => _.preinit(true));
yield domReady(true)();
});
}
//# sourceMappingURL=boot.js.map