mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Add winston formatting support for error causes Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix failing to run built version - Finally make logger fully injectable - Simplify startMainApplication to only have runMany(Sync) invocations to fix time of use bugs related to logger Signed-off-by: Sebastian Malton <sebastian@malton.name> * Remove legacy type enforced ipc to fix tests Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix type error Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name>
80 lines
2.6 KiB
TypeScript
80 lines
2.6 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { ipcRenderer } from "electron";
|
|
import * as proto from "../../../common/protocol-handler";
|
|
import Url from "url-parse";
|
|
import type { LensProtocolRouterDependencies } from "../../../common/protocol-handler";
|
|
import { foldAttemptResults, ProtocolHandlerInvalid, RouteAttempt } from "../../../common/protocol-handler";
|
|
import { Notifications } from "../../components/notifications";
|
|
|
|
interface Dependencies extends LensProtocolRouterDependencies {}
|
|
|
|
export class LensProtocolRouterRenderer extends proto.LensProtocolRouter {
|
|
constructor(protected dependencies: Dependencies) {
|
|
super(dependencies);
|
|
}
|
|
|
|
/**
|
|
* This function is needed to be called early on in the renderers lifetime.
|
|
*/
|
|
public init(): void {
|
|
ipcRenderer.on(proto.ProtocolHandlerInternal, (event, rawUrl: string, mainAttemptResult: RouteAttempt) => {
|
|
const rendererAttempt = this._routeToInternal(new Url(rawUrl, true));
|
|
|
|
if (foldAttemptResults(mainAttemptResult, rendererAttempt) === RouteAttempt.MISSING) {
|
|
Notifications.shortInfo((
|
|
<p>
|
|
{"Unknown action "}
|
|
<code>{rawUrl}</code>
|
|
{". Are you on the latest version?"}
|
|
</p>
|
|
));
|
|
}
|
|
});
|
|
ipcRenderer.on(proto.ProtocolHandlerExtension, async (event, rawUrl: string, mainAttemptResult: RouteAttempt) => {
|
|
const rendererAttempt = await this._routeToExtension(new Url(rawUrl, true));
|
|
|
|
switch (foldAttemptResults(mainAttemptResult, rendererAttempt)) {
|
|
case RouteAttempt.MISSING:
|
|
Notifications.shortInfo((
|
|
<p>
|
|
{"Unknown action "}
|
|
<code>{rawUrl}</code>
|
|
{". Are you on the latest version of the extension?"}
|
|
</p>
|
|
));
|
|
break;
|
|
case RouteAttempt.MISSING_EXTENSION:
|
|
Notifications.shortInfo((
|
|
<p>
|
|
{"Missing extension for action "}
|
|
<code>{rawUrl}</code>
|
|
{". Not able to find extension in our known list. Try installing it manually."}
|
|
</p>
|
|
));
|
|
break;
|
|
}
|
|
});
|
|
ipcRenderer.on(ProtocolHandlerInvalid, (event, error: string, rawUrl: string) => {
|
|
Notifications.error((
|
|
<>
|
|
<p>
|
|
{"Failed to route "}
|
|
<code>{rawUrl}</code>
|
|
.
|
|
</p>
|
|
<p>
|
|
<b>Error:</b>
|
|
{" "}
|
|
{error}
|
|
</p>
|
|
</>
|
|
));
|
|
});
|
|
}
|
|
}
|