mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* wip: command palette Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * register shortcut to global menu Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * introduce openCommandDialog & closeCommandDialog Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix ipc broadcast to frames from renderer Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * tweak Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * add more commands Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * ipc fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * add integration tests Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * ipc fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * implement workspace edit Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * workspace edit fixes Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * make tests green Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fixes from code review Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup ipc Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup CommandRegistry Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * ipc fix Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix ClusterManager cluster auto-init Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * ensure cluster view is active before sending a command Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * switch to last active cluster when workspace change Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * tweak integration tests Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * run integration tests serially Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fixes based on code review Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup more Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * add workspace fixes Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cleanup Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
import type { AppPreferenceRegistration, ClusterFeatureRegistration, ClusterPageMenuRegistration, KubeObjectDetailRegistration, KubeObjectMenuRegistration, KubeObjectStatusRegistration, PageMenuRegistration, PageRegistration, StatusBarRegistration, } from "./registries";
|
|
import type { Cluster } from "../main/cluster";
|
|
import { LensExtension } from "./lens-extension";
|
|
import { getExtensionPageUrl } from "./registries/page-registry";
|
|
import { CommandRegistration } from "./registries/command-registry";
|
|
|
|
export class LensRendererExtension extends LensExtension {
|
|
globalPages: PageRegistration[] = [];
|
|
clusterPages: PageRegistration[] = [];
|
|
globalPageMenus: PageMenuRegistration[] = [];
|
|
clusterPageMenus: ClusterPageMenuRegistration[] = [];
|
|
kubeObjectStatusTexts: KubeObjectStatusRegistration[] = [];
|
|
appPreferences: AppPreferenceRegistration[] = [];
|
|
clusterFeatures: ClusterFeatureRegistration[] = [];
|
|
statusBarItems: StatusBarRegistration[] = [];
|
|
kubeObjectDetailItems: KubeObjectDetailRegistration[] = [];
|
|
kubeObjectMenuItems: KubeObjectMenuRegistration[] = [];
|
|
commands: CommandRegistration[] = [];
|
|
|
|
async navigate<P extends object>(pageId?: string, params?: P) {
|
|
const { navigate } = await import("../renderer/navigation");
|
|
const pageUrl = getExtensionPageUrl({
|
|
extensionId: this.name,
|
|
pageId,
|
|
params: params ?? {}, // compile to url with params
|
|
});
|
|
|
|
navigate(pageUrl);
|
|
}
|
|
|
|
/**
|
|
* Defines if extension is enabled for a given cluster. Defaults to `true`.
|
|
*/
|
|
// eslint-disable-next-line unused-imports/no-unused-vars-ts
|
|
async isEnabledForCluster(cluster: Cluster): Promise<Boolean> {
|
|
return true;
|
|
}
|
|
}
|