1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix being able to view clusters outside the current workspace (#2355)

This commit is contained in:
Sebastian Malton 2021-04-14 09:49:14 -04:00 committed by GitHub
parent da6b5d6bde
commit b6c3ce7d28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
36 changed files with 583 additions and 240 deletions

View File

@ -102,12 +102,6 @@ describe("empty config", () => {
await clusterStore.removeById("foo"); await clusterStore.removeById("foo");
expect(clusterStore.getById("foo")).toBeNull(); expect(clusterStore.getById("foo")).toBeNull();
}); });
it("sets active cluster", () => {
clusterStore.setActive("foo");
expect(clusterStore.active.id).toBe("foo");
expect(workspaceStore.currentWorkspace.lastActiveClusterId).toBe("foo");
});
}); });
describe("with prod and dev clusters added", () => { describe("with prod and dev clusters added", () => {

View File

@ -50,6 +50,12 @@ describe("workspace store tests", () => {
expect(() => ws.removeWorkspaceById(WorkspaceStore.defaultId)).toThrowError("Cannot remove"); expect(() => ws.removeWorkspaceById(WorkspaceStore.defaultId)).toThrowError("Cannot remove");
}); });
it("has the default workspace as active", () => {
const ws = WorkspaceStore.getInstance<WorkspaceStore>();
expect(ws.isActive(WorkspaceStore.defaultId)).toBe(true);
});
it("can update workspace description", () => { it("can update workspace description", () => {
const ws = WorkspaceStore.getInstance<WorkspaceStore>(); const ws = WorkspaceStore.getInstance<WorkspaceStore>();
const workspace = ws.addWorkspace(new Workspace({ const workspace = ws.addWorkspace(new Workspace({

View File

@ -0,0 +1,182 @@
import { Workspace } from "../workspace-store";
import { clusterStore } from "../cluster-store";
import { Cluster } from "../../main/cluster";
jest.mock("../cluster-store");
const mockedClusterStore = clusterStore as jest.Mocked<typeof clusterStore>;
describe("Workspace tests", () => {
it("should be enabled if not managed", () => {
const w = new Workspace({
id: "f",
name: "f"
});
expect(w.enabled).toBe(true);
expect(w.isManaged).toBe(false);
});
it("should not be enabled initially if managed", () => {
const w = new Workspace({
id: "f",
name: "f",
ownerRef: "f"
});
expect(w.enabled).toBe(false);
expect(w.isManaged).toBe(true);
});
it("should be able to be enabled when managed", () => {
const w = new Workspace({
id: "f",
name: "f",
ownerRef: "f"
});
expect(w.enabled).toBe(false);
expect(w.isManaged).toBe(true);
w.enabled = true;
expect(w.enabled).toBe(true);
});
it("should allow valid clusterId to be set to activeClusterId", () => {
mockedClusterStore.getById.mockImplementationOnce(id => {
expect(id).toBe("foobar");
return {
workspace: "f",
id
} as Cluster;
});
const w = new Workspace({
id: "f",
name: "f"
});
w.setActiveCluster("foobar");
expect(w.activeClusterId).toBe("foobar");
});
it("should clear activeClusterId", () => {
mockedClusterStore.getById.mockImplementationOnce(id => {
expect(id).toBe("foobar");
return {
workspace: "f",
id
} as Cluster;
});
const w = new Workspace({
id: "f",
name: "f"
});
w.setActiveCluster("foobar");
expect(w.activeClusterId).toBe("foobar");
w.clearActiveCluster();
expect(w.activeClusterId).toBe(undefined);
});
it("should disallow valid clusterId to be set to activeClusterId", () => {
mockedClusterStore.getById.mockImplementationOnce(id => {
expect(id).toBe("foobar");
return undefined;
});
const w = new Workspace({
id: "f",
name: "f"
});
w.setActiveCluster("foobar");
expect(w.activeClusterId).toBe(undefined);
});
describe("Workspace.tryClearAsCurrentActiveCluster", () => {
it("should return false for non-matching ID", () => {
mockedClusterStore.getById.mockImplementationOnce(id => {
expect(id).toBe("foobar");
return {
workspace: "f",
id
} as Cluster;
});
const w = new Workspace({
id: "f",
name: "f",
activeClusterId: "foobar"
});
expect(w.tryClearAsActiveCluster("fa")).toBe(false);
expect(w.activeClusterId).toBe("foobar");
});
it("should return false for non-matching cluster", () => {
mockedClusterStore.getById.mockImplementationOnce(id => {
expect(id).toBe("foobar");
return {
workspace: "f",
id
} as Cluster;
});
const w = new Workspace({
id: "f",
name: "f",
activeClusterId: "foobar"
});
expect(w.tryClearAsActiveCluster({ id: "fa" } as Cluster)).toBe(false);
expect(w.activeClusterId).toBe("foobar");
});
it("should return true for matching ID", () => {
mockedClusterStore.getById.mockImplementationOnce(id => {
expect(id).toBe("foobar");
return {
workspace: "f",
id
} as Cluster;
});
const w = new Workspace({
id: "f",
name: "f",
activeClusterId: "foobar"
});
expect(w.tryClearAsActiveCluster("foobar")).toBe(true);
expect(w.activeClusterId).toBe(undefined);
});
it("should return true for matching cluster", () => {
mockedClusterStore.getById.mockImplementationOnce(id => {
expect(id).toBe("foobar");
return {
workspace: "f",
id
} as Cluster;
});
const w = new Workspace({
id: "f",
name: "f",
activeClusterId: "foobar"
});
expect(w.tryClearAsActiveCluster({ id: "foobar"} as Cluster)).toBe(true);
expect(w.activeClusterId).toBe(undefined);
});
});
});

View File

@ -15,7 +15,6 @@ import { handleRequest, requestMain, subscribeToBroadcast, unsubscribeAllFromBro
import _ from "lodash"; import _ from "lodash";
import move from "array-move"; import move from "array-move";
import type { WorkspaceId } from "./workspace-store"; import type { WorkspaceId } from "./workspace-store";
import { ResourceType } from "../renderer/components/+cluster-settings/components/cluster-metrics-setting";
export interface ClusterIconUpload { export interface ClusterIconUpload {
clusterId: string; clusterId: string;
@ -34,7 +33,6 @@ export type ClusterPrometheusMetadata = {
}; };
export interface ClusterStoreModel { export interface ClusterStoreModel {
activeCluster?: ClusterId; // last opened cluster
clusters?: ClusterModel[]; clusters?: ClusterModel[];
} }
@ -106,7 +104,6 @@ export class ClusterStore extends BaseStore<ClusterStoreModel> {
return filePath; return filePath;
} }
@observable activeCluster: ClusterId;
@observable removedClusters = observable.map<ClusterId, Cluster>(); @observable removedClusters = observable.map<ClusterId, Cluster>();
@observable clusters = observable.map<ClusterId, Cluster>(); @observable clusters = observable.map<ClusterId, Cluster>();
@ -189,10 +186,6 @@ export class ClusterStore extends BaseStore<ClusterStoreModel> {
}); });
} }
get activeClusterId() {
return this.activeCluster;
}
@computed get clustersList(): Cluster[] { @computed get clustersList(): Cluster[] {
return Array.from(this.clusters.values()); return Array.from(this.clusters.values());
} }
@ -201,40 +194,10 @@ export class ClusterStore extends BaseStore<ClusterStoreModel> {
return this.clustersList.filter((c) => c.enabled); return this.clustersList.filter((c) => c.enabled);
} }
@computed get active(): Cluster | null {
return this.getById(this.activeCluster);
}
@computed get connectedClustersList(): Cluster[] { @computed get connectedClustersList(): Cluster[] {
return this.clustersList.filter((c) => !c.disconnected); return this.clustersList.filter((c) => !c.disconnected);
} }
isActive(id: ClusterId) {
return this.activeCluster === id;
}
isMetricHidden(resource: ResourceType) {
return Boolean(this.active?.preferences.hiddenMetrics?.includes(resource));
}
@action
setActive(clusterId: ClusterId) {
const cluster = this.clusters.get(clusterId);
if (!cluster?.enabled) {
clusterId = null;
}
this.activeCluster = clusterId;
workspaceStore.setLastActiveClusterId(clusterId);
}
deactivate(id: ClusterId) {
if (this.isActive(id)) {
this.setActive(null);
}
}
@action @action
swapIconOrders(workspace: WorkspaceId, from: number, to: number) { swapIconOrders(workspace: WorkspaceId, from: number, to: number) {
const clusters = this.getByWorkspaceId(workspace); const clusters = this.getByWorkspaceId(workspace);
@ -268,28 +231,22 @@ export class ClusterStore extends BaseStore<ClusterStoreModel> {
@action @action
addClusters(...models: ClusterModel[]): Cluster[] { addClusters(...models: ClusterModel[]): Cluster[] {
const clusters: Cluster[] = []; return models.map(model => this.addCluster(model));
models.forEach(model => {
clusters.push(this.addCluster(model));
});
return clusters;
} }
@action @action
addCluster(model: ClusterModel | Cluster): Cluster { addCluster(clusterOrModel: ClusterModel | Cluster): Cluster {
appEventBus.emit({ name: "cluster", action: "add" }); appEventBus.emit({ name: "cluster", action: "add" });
let cluster = model as Cluster;
if (!(model instanceof Cluster)) { const cluster = clusterOrModel instanceof Cluster
cluster = new Cluster(model); ? clusterOrModel
} : new Cluster(clusterOrModel);
if (!cluster.isManaged) { if (!cluster.isManaged) {
cluster.enabled = true; cluster.enabled = true;
} }
this.clusters.set(model.id, cluster);
this.clusters.set(cluster.id, cluster);
return cluster; return cluster;
} }
@ -304,12 +261,9 @@ export class ClusterStore extends BaseStore<ClusterStoreModel> {
const cluster = this.getById(clusterId); const cluster = this.getById(clusterId);
if (cluster) { if (cluster) {
workspaceStore.getById(cluster.workspace)?.tryClearAsActiveCluster(cluster);
this.clusters.delete(clusterId); this.clusters.delete(clusterId);
if (this.activeCluster === clusterId) {
this.setActive(null);
}
// remove only custom kubeconfigs (pasted as text) // remove only custom kubeconfigs (pasted as text)
if (cluster.kubeConfigPath == ClusterStore.getCustomKubeConfigPath(clusterId)) { if (cluster.kubeConfigPath == ClusterStore.getCustomKubeConfigPath(clusterId)) {
unlink(cluster.kubeConfigPath).catch(() => null); unlink(cluster.kubeConfigPath).catch(() => null);
@ -325,7 +279,7 @@ export class ClusterStore extends BaseStore<ClusterStoreModel> {
} }
@action @action
protected fromStore({ activeCluster, clusters = [] }: ClusterStoreModel = {}) { protected fromStore({ clusters = [] }: ClusterStoreModel = {}) {
const currentClusters = this.clusters.toJS(); const currentClusters = this.clusters.toJS();
const newClusters = new Map<ClusterId, Cluster>(); const newClusters = new Map<ClusterId, Cluster>();
const removedClusters = new Map<ClusterId, Cluster>(); const removedClusters = new Map<ClusterId, Cluster>();
@ -353,14 +307,12 @@ export class ClusterStore extends BaseStore<ClusterStoreModel> {
} }
}); });
this.activeCluster = newClusters.get(activeCluster)?.enabled ? activeCluster : null;
this.clusters.replace(newClusters); this.clusters.replace(newClusters);
this.removedClusters.replace(removedClusters); this.removedClusters.replace(removedClusters);
} }
toJSON(): ClusterStoreModel { toJSON(): ClusterStoreModel {
return toJS({ return toJS({
activeCluster: this.activeCluster,
clusters: this.clustersList.map(cluster => cluster.toJSON()), clusters: this.clustersList.map(cluster => cluster.toJSON()),
}, { }, {
recurseEverything: true recurseEverything: true

View File

@ -6,9 +6,14 @@ import { appEventBus } from "./event-bus";
import { broadcastMessage, handleRequest, requestMain } from "../common/ipc"; import { broadcastMessage, handleRequest, requestMain } from "../common/ipc";
import logger from "../main/logger"; import logger from "../main/logger";
import type { ClusterId } from "./cluster-store"; import type { ClusterId } from "./cluster-store";
import { Cluster } from "../main/cluster";
import migrations from "../migrations/workspace-store";
import { clusterViewURL } from "../renderer/components/cluster-manager/cluster-view.route";
export type WorkspaceId = string; export type WorkspaceId = string;
export class InvariantError extends Error {}
export interface WorkspaceStoreModel { export interface WorkspaceStoreModel {
workspaces: WorkspaceModel[]; workspaces: WorkspaceModel[];
currentWorkspace?: WorkspaceId; currentWorkspace?: WorkspaceId;
@ -19,7 +24,7 @@ export interface WorkspaceModel {
name: string; name: string;
description?: string; description?: string;
ownerRef?: string; ownerRef?: string;
lastActiveClusterId?: ClusterId; activeClusterId?: ClusterId;
} }
export interface WorkspaceState { export interface WorkspaceState {
@ -61,18 +66,19 @@ export class Workspace implements WorkspaceModel, WorkspaceState {
*/ */
@observable ownerRef?: string; @observable ownerRef?: string;
@observable private _enabled = false;
/** /**
* Last active cluster id * The active cluster within this workspace
*
* @observable
*/ */
@observable lastActiveClusterId?: ClusterId; #activeClusterId = observable.box<ClusterId | undefined>();
get activeClusterId() {
return this.#activeClusterId.get();
}
@observable private _enabled: boolean; constructor(model: WorkspaceModel) {
this[updateFromModel](model);
constructor(data: WorkspaceModel) {
Object.assign(this, data);
if (!ipcRenderer) { if (!ipcRenderer) {
reaction(() => this.getState(), () => { reaction(() => this.getState(), () => {
@ -86,9 +92,9 @@ export class Workspace implements WorkspaceModel, WorkspaceState {
* *
* Workspaces that don't have ownerRef will be enabled by default. Workspaces with ownerRef need to explicitly enable a workspace. * Workspaces that don't have ownerRef will be enabled by default. Workspaces with ownerRef need to explicitly enable a workspace.
* *
* @observable * @computed
*/ */
get enabled(): boolean { @computed get enabled(): boolean {
return !this.isManaged || this._enabled; return !this.isManaged || this._enabled;
} }
@ -98,9 +104,82 @@ export class Workspace implements WorkspaceModel, WorkspaceState {
/** /**
* Is workspace managed by an extension * Is workspace managed by an extension
*
* @computed
*/ */
get isManaged(): boolean { @computed get isManaged(): boolean {
return !!this.ownerRef; return Boolean(this.ownerRef);
}
@computed get activeCluster(): Cluster | undefined {
return clusterStore.getById(this.activeClusterId);
}
/**
* Resolves the clusterId or cluster, checking some invariants
* @param clusterOrId The ID or cluster object to resolve
* @returns A Cluster instance of the specified cluster if it is in this workspace
* @throws if provided a falsey value or if it is an unknown ClusterId or if
* the cluster is not in this workspace.
*/
private resolveClusterOrId(clusterOrId: ClusterId | Cluster): Cluster {
if (!clusterOrId) {
throw new InvariantError("Must provide a Cluster or a ClusterId");
}
const cluster = typeof clusterOrId === "string"
? clusterStore.getById(clusterOrId)
: clusterOrId;
if (!cluster) {
throw new InvariantError(`ClusterId ${clusterOrId} is invalid`);
}
if (cluster.workspace !== this.id) {
throw new InvariantError(`Cluster ${cluster.name} is not in Workspace ${this.name}`);
}
return cluster;
}
/**
* Sets workspace's active cluster to resolved `clusterOrId`. As long as it
* is valid
* @param clusterOrId the cluster instance or its ID
*/
@action setActiveCluster(clusterOrId?: ClusterId | Cluster) {
try {
if (clusterOrId === undefined) {
this.#activeClusterId.set(undefined);
} else {
this.#activeClusterId.set(this.resolveClusterOrId(clusterOrId).id);
}
} catch (error) {
logger.error("[WORKSPACE]: activeClusterId was attempted to be set to an invalid value", { error, workspaceName: this.name });
}
}
/**
* Tries to clear the cluster as this workspace's activeCluster.
* @param clusterOrId the cluster instance or its ID
* @returns true if it matches the `activeClusterId` (and is thus cleared) else false
*/
@action tryClearAsActiveCluster(clusterOrId: ClusterId | Cluster): boolean {
const clusterId = typeof clusterOrId === "string"
? clusterOrId
: clusterOrId.id;
const clearActive = this.activeClusterId === clusterId;
if (clearActive) {
this.clearActiveCluster();
}
return clearActive;
}
@action clearActiveCluster() {
this.#activeClusterId.set(undefined);
} }
/** /**
@ -129,11 +208,15 @@ export class Workspace implements WorkspaceModel, WorkspaceState {
* @param state workspace state * @param state workspace state
*/ */
@action setState(state: WorkspaceState) { @action setState(state: WorkspaceState) {
Object.assign(this, state); this.enabled = state.enabled;
} }
[updateFromModel] = action((model: WorkspaceModel) => { [updateFromModel] = action((model: WorkspaceModel) => {
Object.assign(this, model); this.id = model.id;
this.name = model.name;
this.description = model.description;
this.ownerRef = model.ownerRef;
this.setActiveCluster(model.activeClusterId);
}); });
toJSON(): WorkspaceModel { toJSON(): WorkspaceModel {
@ -142,7 +225,7 @@ export class Workspace implements WorkspaceModel, WorkspaceState {
name: this.name, name: this.name,
description: this.description, description: this.description,
ownerRef: this.ownerRef, ownerRef: this.ownerRef,
lastActiveClusterId: this.lastActiveClusterId activeClusterId: this.activeClusterId,
}); });
} }
} }
@ -152,16 +235,18 @@ export class WorkspaceStore extends BaseStore<WorkspaceStoreModel> {
private static stateRequestChannel = "workspace:states"; private static stateRequestChannel = "workspace:states";
@observable currentWorkspaceId = WorkspaceStore.defaultId; @observable currentWorkspaceId = WorkspaceStore.defaultId;
@observable workspaces = observable.map<WorkspaceId, Workspace>(); @observable workspaces = observable.map<WorkspaceId, Workspace>();
private constructor() { private constructor() {
super({ super({
configName: "lens-workspace-store", configName: "lens-workspace-store",
migrations
}); });
this.workspaces.set(WorkspaceStore.defaultId, new Workspace({ this.workspaces.set(WorkspaceStore.defaultId, new Workspace({
id: WorkspaceStore.defaultId, id: WorkspaceStore.defaultId,
name: "default" name: "default",
})); }));
} }
@ -233,6 +318,19 @@ export class WorkspaceStore extends BaseStore<WorkspaceStoreModel> {
return id === WorkspaceStore.defaultId; return id === WorkspaceStore.defaultId;
} }
/**
* Checks if `workspaceOrId` represents `WorkspaceStore.currentWorkspaceId`
* @param workspaceOrId The workspace or its ID
* @returns true if the given workspace is the currently active on
*/
isActive(workspaceOrId: Workspace | WorkspaceId): boolean {
const workspaceId = typeof workspaceOrId === "string"
? workspaceOrId
: workspaceOrId.id;
return this.currentWorkspaceId === workspaceId;
}
getById(id: WorkspaceId): Workspace { getById(id: WorkspaceId): Workspace {
return this.workspaces.get(id); return this.workspaces.get(id);
} }
@ -248,9 +346,34 @@ export class WorkspaceStore extends BaseStore<WorkspaceStoreModel> {
if (!this.getById(id)) { if (!this.getById(id)) {
throw new Error(`workspace ${id} doesn't exist`); throw new Error(`workspace ${id} doesn't exist`);
} }
this.currentWorkspaceId = id; this.currentWorkspaceId = id;
} }
@action
async setActiveCluster(clusterOrId: ClusterId | Cluster): Promise<void> {
const cluster = typeof clusterOrId === "string"
? clusterStore.getById(clusterOrId)
: clusterOrId;
if (!cluster?.enabled) {
throw new Error(`cluster ${(clusterOrId as Cluster)?.id ?? clusterOrId} doesn't exist`);
}
this.setActive(this.getById(cluster.workspace).id);
if (ipcRenderer) {
const { navigate } = await import("../renderer/navigation");
navigate(clusterViewURL({ params: { clusterId: cluster.id } }));
} else {
const { WindowManager } = await import("../main/window-manager");
const windowManager = WindowManager.getInstance() as any;
await windowManager.navigate(clusterViewURL({ params: { clusterId: cluster.id } }));
}
}
@action @action
addWorkspace(workspace: Workspace) { addWorkspace(workspace: Workspace) {
const { id, name } = workspace; const { id, name } = workspace;
@ -293,14 +416,20 @@ export class WorkspaceStore extends BaseStore<WorkspaceStoreModel> {
if (this.currentWorkspaceId === id) { if (this.currentWorkspaceId === id) {
this.currentWorkspaceId = WorkspaceStore.defaultId; // reset to default this.currentWorkspaceId = WorkspaceStore.defaultId; // reset to default
} }
this.workspaces.delete(id); this.workspaces.delete(id);
appEventBus.emit({name: "workspace", action: "remove"}); appEventBus.emit({name: "workspace", action: "remove"});
clusterStore.removeByWorkspaceId(id); clusterStore.removeByWorkspaceId(id);
} }
@action @action
setLastActiveClusterId(clusterId?: ClusterId, workspaceId = this.currentWorkspaceId) { /**
this.getById(workspaceId).lastActiveClusterId = clusterId; * Attempts to clear `cluster` as the `activeCluster` from its own workspace
* @returns true if the cluster was previously the active one for its workspace
*/
tryClearAsActiveCluster(cluster: Cluster): boolean {
return this.getById(cluster.workspace).tryClearAsActiveCluster(cluster);
} }
@action @action

View File

@ -1,4 +1,5 @@
import { clusterStore as internalClusterStore, ClusterId } from "../../common/cluster-store"; import { clusterStore as internalClusterStore, ClusterId } from "../../common/cluster-store";
import { workspaceStore as internalWorkspaceStore } from "../../common/workspace-store";
import type { ClusterModel } from "../../common/cluster-store"; import type { ClusterModel } from "../../common/cluster-store";
import { Cluster } from "../../main/cluster"; import { Cluster } from "../../main/cluster";
import { Singleton } from "../core-api/utils"; import { Singleton } from "../core-api/utils";
@ -16,16 +17,22 @@ export class ClusterStore extends Singleton {
/** /**
* Active cluster id * Active cluster id
*
* @deprecated use `workspaceStore.currentWorkspace.activeClusterId`
*/ */
get activeClusterId(): string { get activeClusterId(): string {
return internalClusterStore.activeCluster; console.warn("get Store.ClusterStore.activeClusterId is deprecated. Use workspace.currentWorkspace.activeClusterId");
return internalWorkspaceStore.currentWorkspace.activeClusterId;
} }
/** /**
* Set active cluster id * Set active cluster id
* @deprecated use `LensExtension.navigate()`
*/ */
set activeClusterId(id : ClusterId) { set activeClusterId(id : ClusterId) {
internalClusterStore.setActive(id); console.warn("Store.ClusterStore.activeClusterId is deprecated. Use LensExtension.navigate()");
internalWorkspaceStore.currentWorkspace.setActiveCluster(id);
} }
/** /**
@ -37,9 +44,11 @@ export class ClusterStore extends Singleton {
/** /**
* Get active cluster (a cluster which is currently visible) * Get active cluster (a cluster which is currently visible)
*
* @deprecated use `clusterStore.getById(workspaceStore.currentWorkspace.activeClusterId)`
*/ */
get activeCluster(): Cluster | null { get activeCluster(): Cluster {
return internalClusterStore.active; return clusterStore.getById(internalWorkspaceStore.currentWorkspace.activeClusterId);
} }
/** /**

View File

@ -1,6 +1,7 @@
import { Singleton } from "../core-api/utils"; import { Singleton } from "../core-api/utils";
import { workspaceStore as internalWorkspaceStore, WorkspaceStore as InternalWorkspaceStore, Workspace, WorkspaceId } from "../../common/workspace-store"; import { workspaceStore as internalWorkspaceStore, WorkspaceStore as InternalWorkspaceStore, Workspace, WorkspaceId } from "../../common/workspace-store";
import { ObservableMap } from "mobx"; import { ObservableMap } from "mobx";
import { Cluster, ClusterId } from "../core-api/stores";
export { Workspace } from "../../common/workspace-store"; export { Workspace } from "../../common/workspace-store";
export type { WorkspaceId, WorkspaceModel } from "../../common/workspace-store"; export type { WorkspaceId, WorkspaceModel } from "../../common/workspace-store";
@ -113,6 +114,14 @@ export class WorkspaceStore extends Singleton {
removeWorkspaceById(id: WorkspaceId) { removeWorkspaceById(id: WorkspaceId) {
return internalWorkspaceStore.removeWorkspaceById(id); return internalWorkspaceStore.removeWorkspaceById(id);
} }
/**
* Sets the cluster and its workspace as active
* @param clusterOrId the cluster's ID or instance to set as the active cluster
*/
setActiveCluster(clusterOrId: ClusterId | Cluster) {
return internalWorkspaceStore.setActiveCluster(clusterOrId);
}
} }
export const workspaceStore = WorkspaceStore.getInstance<WorkspaceStore>(); export const workspaceStore = WorkspaceStore.getInstance<WorkspaceStore>();

View File

@ -16,6 +16,7 @@ import logger from "./logger";
import { VersionDetector } from "./cluster-detectors/version-detector"; import { VersionDetector } from "./cluster-detectors/version-detector";
import { detectorRegistry } from "./cluster-detectors/detector-registry"; import { detectorRegistry } from "./cluster-detectors/detector-registry";
import plimit from "p-limit"; import plimit from "p-limit";
import { ResourceType } from "../renderer/components/+cluster-settings/components/cluster-metrics-setting";
export enum ClusterStatus { export enum ClusterStatus {
AccessGranted = 2, AccessGranted = 2,
@ -315,6 +316,10 @@ export class Cluster implements ClusterModel, ClusterState {
} }
} }
public isMetricHidden(resource: ResourceType) {
return Boolean(this.preferences.hiddenMetrics?.includes(resource));
}
/** /**
* @internal * @internal
*/ */

View File

@ -106,8 +106,7 @@ app.on("ready", async () => {
// preload // preload
await Promise.all([ await Promise.all([
userStore.load(), userStore.load(),
clusterStore.load(), clusterStore.load().then(() => workspaceStore.load()),
workspaceStore.load(),
extensionsStore.load(), extensionsStore.load(),
filesystemProvisionerStore.load(), filesystemProvisionerStore.load(),
]); ]);

View File

@ -0,0 +1,28 @@
import { migration } from "../migration-wrapper";
interface Pre420Beta1WorkspaceModel {
id: string;
name: string;
description?: string;
ownerRef?: string;
lastActiveClusterId?: string;
}
export default migration({
version: "4.2.0-beta.1",
run(store) {
const oldWorkspaces: Pre420Beta1WorkspaceModel[] = store.get("workspaces") ?? [];
const workspaces = oldWorkspaces.map(({ lastActiveClusterId, ...rest }) => {
if (lastActiveClusterId) {
return {
activeClusterId: lastActiveClusterId,
...rest,
};
}
return rest;
});
store.set("workspaces", workspaces);
}
});

View File

@ -0,0 +1,5 @@
import version420Beta1 from "./4.2.0-beta.1";
export default {
...version420Beta1
};

View File

@ -56,8 +56,7 @@ export async function bootstrap(App: AppComponent) {
// preload common stores // preload common stores
await Promise.all([ await Promise.all([
userStore.load(), userStore.load(),
workspaceStore.load(), clusterStore.load().then(() => workspaceStore.load()),
clusterStore.load(),
extensionsStore.load(), extensionsStore.load(),
filesystemProvisionerStore.load(), filesystemProvisionerStore.load(),
themeStore.init(), themeStore.init(),

View File

@ -45,7 +45,7 @@ export class AddCluster extends React.Component {
@observable showSettings = false; @observable showSettings = false;
componentDidMount() { componentDidMount() {
clusterStore.setActive(null); workspaceStore.currentWorkspace.clearActiveCluster();
this.setKubeConfig(userStore.kubeConfigPath); this.setKubeConfig(userStore.kubeConfigPath);
appEventBus.emit({ name: "cluster-add", action: "start" }); appEventBus.emit({ name: "cluster-add", action: "start" });
} }
@ -181,13 +181,11 @@ export class AddCluster extends React.Component {
}); });
runInAction(() => { runInAction(() => {
clusterStore.addClusters(...newClusters); const [cluster, ...rest] = clusterStore.addClusters(...newClusters);
if (newClusters.length === 1) { if (rest.length === 0) {
const clusterId = newClusters[0].id; workspaceStore.getById(cluster.workspace).setActiveCluster(cluster);
navigate(clusterViewURL({ params: { clusterId: cluster.id } }));
clusterStore.setActive(clusterId);
navigate(clusterViewURL({ params: { clusterId } }));
} else { } else {
if (newClusters.length > 1) { if (newClusters.length > 1) {
Notifications.ok( Notifications.ok(

View File

@ -1,7 +1,7 @@
import { navigate } from "../../navigation"; import { navigate } from "../../navigation";
import { commandRegistry } from "../../../extensions/registries/command-registry"; import { commandRegistry } from "../../../extensions/registries/command-registry";
import { clusterSettingsURL } from "./cluster-settings.route"; import { clusterSettingsURL } from "./cluster-settings.route";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedClusterId } from "../../../common/cluster-store";
commandRegistry.add({ commandRegistry.add({
id: "cluster.viewCurrentClusterSettings", id: "cluster.viewCurrentClusterSettings",
@ -9,7 +9,7 @@ commandRegistry.add({
scope: "global", scope: "global",
action: () => navigate(clusterSettingsURL({ action: () => navigate(clusterSettingsURL({
params: { params: {
clusterId: clusterStore.active.id clusterId: getHostedClusterId(),
} }
})), })),
isActive: (context) => !!context.cluster isActive: (context) => !!context.cluster

View File

@ -16,6 +16,7 @@ import { PageLayout } from "../layout/page-layout";
import { requestMain } from "../../../common/ipc"; import { requestMain } from "../../../common/ipc";
import { clusterActivateHandler, clusterRefreshHandler } from "../../../common/cluster-ipc"; import { clusterActivateHandler, clusterRefreshHandler } from "../../../common/cluster-ipc";
import { navigation } from "../../navigation"; import { navigation } from "../../navigation";
import { workspaceStore } from "../../../common/workspace-store";
interface Props extends RouteComponentProps<IClusterSettingsRouteParams> { interface Props extends RouteComponentProps<IClusterSettingsRouteParams> {
} }
@ -39,7 +40,9 @@ export class ClusterSettings extends React.Component<Props> {
reaction(() => this.cluster, this.refreshCluster, { reaction(() => this.cluster, this.refreshCluster, {
fireImmediately: true, fireImmediately: true,
}), }),
reaction(() => this.clusterId, clusterId => clusterStore.setActive(clusterId), { reaction(() => this.cluster, cluster => {
workspaceStore.getById(cluster.workspace).setActiveCluster(cluster);
}, {
fireImmediately: true, fireImmediately: true,
}) })
]); ]);

View File

@ -5,7 +5,7 @@ import { reaction } from "mobx";
import { disposeOnUnmount, observer } from "mobx-react"; import { disposeOnUnmount, observer } from "mobx-react";
import { nodesStore } from "../+nodes/nodes.store"; import { nodesStore } from "../+nodes/nodes.store";
import { podsStore } from "../+workloads-pods/pods.store"; import { podsStore } from "../+workloads-pods/pods.store";
import { clusterStore, getHostedCluster } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
import { interval } from "../../utils"; import { interval } from "../../utils";
import { TabLayout } from "../layout/tab-layout"; import { TabLayout } from "../layout/tab-layout";
import { Spinner } from "../spinner"; import { Spinner } from "../spinner";
@ -66,7 +66,7 @@ export class ClusterOverview extends React.Component {
render() { render() {
const isLoaded = nodesStore.isLoaded && podsStore.isLoaded; const isLoaded = nodesStore.isLoaded && podsStore.isLoaded;
const isMetricsHidden = clusterStore.isMetricHidden(ResourceType.Cluster); const isMetricsHidden = getHostedCluster().isMetricHidden(ResourceType.Cluster);
return ( return (
<TabLayout> <TabLayout>

View File

@ -1,38 +1,58 @@
import "./landing-page.scss"; import "./landing-page.scss";
import React from "react"; import React from "react";
import { computed, observable } from "mobx"; import { computed, reaction } from "mobx";
import { observer } from "mobx-react"; import { disposeOnUnmount, observer } from "mobx-react";
import { clusterStore } from "../../../common/cluster-store"; import { clusterStore } from "../../../common/cluster-store";
import { workspaceStore } from "../../../common/workspace-store"; import { WorkspaceId, workspaceStore } from "../../../common/workspace-store";
import { WorkspaceOverview } from "./workspace-overview"; import { WorkspaceOverview } from "./workspace-overview";
import { PageLayout } from "../layout/page-layout"; import { PageLayout } from "../layout/page-layout";
import { Notifications } from "../notifications"; import { Notifications } from "../notifications";
import { Icon } from "../icon"; import { Icon } from "../icon";
import { createStorage } from "../../utils";
@observer @observer
export class LandingPage extends React.Component { export class LandingPage extends React.Component {
@observable showHint = true; private static storage = createStorage<WorkspaceId[]>("seen_workspaces", []);
@computed @computed get workspace() {
get clusters() { return workspaceStore.currentWorkspace;
return clusterStore.getByWorkspaceId(workspaceStore.currentWorkspaceId);
} }
componentDidMount() { componentDidMount() {
const noClustersInScope = !this.clusters.length; // ignore workspaces that don't exist
const showStartupHint = this.showHint; const seenWorkspaces = new Set(
LandingPage
.storage
.get()
.filter(id => workspaceStore.getById(id))
);
if (showStartupHint && noClustersInScope) { disposeOnUnmount(this, [
reaction(() => this.workspace, workspace => {
const showWelcomeNotification = !(
seenWorkspaces.has(workspace.id)
|| workspace.isManaged
|| clusterStore.getByWorkspaceId(workspace.id).length
);
if (showWelcomeNotification) {
Notifications.info(<><b>Welcome!</b><p>Get started by associating one or more clusters to Lens</p></>, { Notifications.info(<><b>Welcome!</b><p>Get started by associating one or more clusters to Lens</p></>, {
timeout: 30_000, timeout: 30_000,
id: "landing-welcome" id: "landing-welcome"
}); });
} }
seenWorkspaces.add(workspace.id);
LandingPage.storage.set(Array.from(seenWorkspaces));
}, {
fireImmediately: true,
}),
]);
} }
render() { render() {
const showBackButton = this.clusters.length > 0; const showBackButton = Boolean(this.workspace.activeClusterId);
const header = <><Icon svg="logo-lens" big /> <h2>{workspaceStore.currentWorkspace.name}</h2></>; const header = <><Icon svg="logo-lens" big /> <h2>{this.workspace.name}</h2></>;
return ( return (
<PageLayout className="LandingOverview flex" header={header} provideBackButtonNavigation={showBackButton} showOnTop={true}> <PageLayout className="LandingOverview flex" header={header} provideBackButtonNavigation={showBackButton} showOnTop={true}>

View File

@ -15,7 +15,7 @@ import { KubeObjectMeta } from "../kube-object/kube-object-meta";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry"; import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
import { getBackendServiceNamePort } from "../../api/endpoints/ingress.api"; import { getBackendServiceNamePort } from "../../api/endpoints/ingress.api";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props extends KubeObjectDetailsProps<Ingress> { interface Props extends KubeObjectDetailsProps<Ingress> {
} }
@ -101,6 +101,7 @@ export class IngressDetails extends React.Component<Props> {
if (!ingress) { if (!ingress) {
return null; return null;
} }
const { spec, status } = ingress; const { spec, status } = ingress;
const ingressPoints = status?.loadBalancer?.ingress; const ingressPoints = status?.loadBalancer?.ingress;
const { metrics } = ingressStore; const { metrics } = ingressStore;
@ -108,8 +109,7 @@ export class IngressDetails extends React.Component<Props> {
"Network", "Network",
"Duration", "Duration",
]; ];
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.Ingress); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.Ingress);
const { serviceName, servicePort } = ingress.getServiceNamePort(); const { serviceName, servicePort } = ingress.getServiceNamePort();
return ( return (

View File

@ -18,7 +18,7 @@ import { KubeObjectMeta } from "../kube-object/kube-object-meta";
import { KubeEventDetails } from "../+events/kube-event-details"; import { KubeEventDetails } from "../+events/kube-event-details";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry"; import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props extends KubeObjectDetailsProps<Node> { interface Props extends KubeObjectDetailsProps<Node> {
} }
@ -54,7 +54,7 @@ export class NodeDetails extends React.Component<Props> {
"Disk", "Disk",
"Pods", "Pods",
]; ];
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.Node); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.Node);
return ( return (
<div className="NodeDetails"> <div className="NodeDetails">

View File

@ -15,7 +15,7 @@ import { getDetailsUrl, KubeObjectDetailsProps, KubeObjectMeta } from "../kube-o
import { PersistentVolumeClaim } from "../../api/endpoints"; import { PersistentVolumeClaim } from "../../api/endpoints";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry"; import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props extends KubeObjectDetailsProps<PersistentVolumeClaim> { interface Props extends KubeObjectDetailsProps<PersistentVolumeClaim> {
} }
@ -43,7 +43,7 @@ export class PersistentVolumeClaimDetails extends React.Component<Props> {
const metricTabs = [ const metricTabs = [
"Disk" "Disk"
]; ];
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.VolumeClaim); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.VolumeClaim);
return ( return (
<div className="PersistentVolumeClaimDetails"> <div className="PersistentVolumeClaimDetails">

View File

@ -19,7 +19,7 @@ import { PodDetailsList } from "../+workloads-pods/pod-details-list";
import { KubeObjectMeta } from "../kube-object/kube-object-meta"; import { KubeObjectMeta } from "../kube-object/kube-object-meta";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry"; import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props extends KubeObjectDetailsProps<DaemonSet> { interface Props extends KubeObjectDetailsProps<DaemonSet> {
} }
@ -49,7 +49,7 @@ export class DaemonSetDetails extends React.Component<Props> {
const nodeSelector = daemonSet.getNodeSelectors(); const nodeSelector = daemonSet.getNodeSelectors();
const childPods = daemonSetStore.getChildPods(daemonSet); const childPods = daemonSetStore.getChildPods(daemonSet);
const metrics = daemonSetStore.metrics; const metrics = daemonSetStore.metrics;
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.DaemonSet); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.DaemonSet);
return ( return (
<div className="DaemonSetDetails"> <div className="DaemonSetDetails">

View File

@ -20,7 +20,7 @@ import { PodDetailsList } from "../+workloads-pods/pod-details-list";
import { KubeObjectMeta } from "../kube-object/kube-object-meta"; import { KubeObjectMeta } from "../kube-object/kube-object-meta";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry"; import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props extends KubeObjectDetailsProps<Deployment> { interface Props extends KubeObjectDetailsProps<Deployment> {
} }
@ -49,7 +49,7 @@ export class DeploymentDetails extends React.Component<Props> {
const selectors = deployment.getSelectors(); const selectors = deployment.getSelectors();
const childPods = deploymentStore.getChildPods(deployment); const childPods = deploymentStore.getChildPods(deployment);
const metrics = deploymentStore.metrics; const metrics = deploymentStore.metrics;
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.Deployment); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.Deployment);
return ( return (
<div className="DeploymentDetails"> <div className="DeploymentDetails">

View File

@ -12,7 +12,7 @@ import { ResourceMetrics } from "../resource-metrics";
import { IMetrics } from "../../api/endpoints/metrics.api"; import { IMetrics } from "../../api/endpoints/metrics.api";
import { ContainerCharts } from "./container-charts"; import { ContainerCharts } from "./container-charts";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props { interface Props {
pod: Pod; pod: Pod;
@ -65,7 +65,7 @@ export class PodDetailsContainer extends React.Component<Props> {
"Memory", "Memory",
"Filesystem", "Filesystem",
]; ];
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.Container); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.Container);
return ( return (
<div className="PodDetailsContainer"> <div className="PodDetailsContainer">

View File

@ -23,7 +23,7 @@ import { PodCharts, podMetricTabs } from "./pod-charts";
import { KubeObjectMeta } from "../kube-object/kube-object-meta"; import { KubeObjectMeta } from "../kube-object/kube-object-meta";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry"; import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props extends KubeObjectDetailsProps<Pod> { interface Props extends KubeObjectDetailsProps<Pod> {
} }
@ -68,7 +68,7 @@ export class PodDetails extends React.Component<Props> {
const nodeSelector = pod.getNodeSelectors(); const nodeSelector = pod.getNodeSelectors();
const volumes = pod.getVolumes(); const volumes = pod.getVolumes();
const metrics = podsStore.metrics; const metrics = podsStore.metrics;
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.Pod); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.Pod);
return ( return (
<div className="PodDetails"> <div className="PodDetails">

View File

@ -18,7 +18,7 @@ import { PodDetailsList } from "../+workloads-pods/pod-details-list";
import { KubeObjectMeta } from "../kube-object/kube-object-meta"; import { KubeObjectMeta } from "../kube-object/kube-object-meta";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry"; import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props extends KubeObjectDetailsProps<ReplicaSet> { interface Props extends KubeObjectDetailsProps<ReplicaSet> {
} }
@ -49,7 +49,7 @@ export class ReplicaSetDetails extends React.Component<Props> {
const nodeSelector = replicaSet.getNodeSelectors(); const nodeSelector = replicaSet.getNodeSelectors();
const images = replicaSet.getImages(); const images = replicaSet.getImages();
const childPods = replicaSetStore.getChildPods(replicaSet); const childPods = replicaSetStore.getChildPods(replicaSet);
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.ReplicaSet); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.ReplicaSet);
return ( return (
<div className="ReplicaSetDetails"> <div className="ReplicaSetDetails">

View File

@ -19,7 +19,7 @@ import { PodDetailsList } from "../+workloads-pods/pod-details-list";
import { KubeObjectMeta } from "../kube-object/kube-object-meta"; import { KubeObjectMeta } from "../kube-object/kube-object-meta";
import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry"; import { kubeObjectDetailRegistry } from "../../api/kube-object-detail-registry";
import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting"; import { ResourceType } from "../+cluster-settings/components/cluster-metrics-setting";
import { clusterStore } from "../../../common/cluster-store"; import { getHostedCluster } from "../../../common/cluster-store";
interface Props extends KubeObjectDetailsProps<StatefulSet> { interface Props extends KubeObjectDetailsProps<StatefulSet> {
} }
@ -48,7 +48,7 @@ export class StatefulSetDetails extends React.Component<Props> {
const nodeSelector = statefulSet.getNodeSelectors(); const nodeSelector = statefulSet.getNodeSelectors();
const childPods = statefulSetStore.getChildPods(statefulSet); const childPods = statefulSetStore.getChildPods(statefulSet);
const metrics = statefulSetStore.metrics; const metrics = statefulSetStore.metrics;
const isMetricHidden = clusterStore.isMetricHidden(ResourceType.StatefulSet); const isMetricHidden = getHostedCluster().isMetricHidden(ResourceType.StatefulSet);
return ( return (
<div className="StatefulSetDetails"> <div className="StatefulSetDetails">

View File

@ -7,7 +7,6 @@ import { Input, InputValidator } from "../input";
import { navigate } from "../../navigation"; import { navigate } from "../../navigation";
import { CommandOverlay } from "../command-palette/command-container"; import { CommandOverlay } from "../command-palette/command-container";
import { landingURL } from "../+landing-page"; import { landingURL } from "../+landing-page";
import { clusterStore } from "../../../common/cluster-store";
const uniqueWorkspaceName: InputValidator = { const uniqueWorkspaceName: InputValidator = {
condition: ({ required }) => required, condition: ({ required }) => required,
@ -31,7 +30,6 @@ export class AddWorkspace extends React.Component {
} }
workspaceStore.setActive(workspace.id); workspaceStore.setActive(workspace.id);
clusterStore.setActive(null);
navigate(landingURL()); navigate(landingURL());
CommandOverlay.close(); CommandOverlay.close();
} }

View File

@ -3,7 +3,7 @@ import { observer } from "mobx-react";
import { computed} from "mobx"; import { computed} from "mobx";
import { WorkspaceStore, workspaceStore } from "../../../common/workspace-store"; import { WorkspaceStore, workspaceStore } from "../../../common/workspace-store";
import { commandRegistry } from "../../../extensions/registries/command-registry"; import { commandRegistry } from "../../../extensions/registries/command-registry";
import { Select } from "../select"; import { Select, SelectOption } from "../select";
import { navigate } from "../../navigation"; import { navigate } from "../../navigation";
import { CommandOverlay } from "../command-palette/command-container"; import { CommandOverlay } from "../command-palette/command-container";
import { AddWorkspace } from "./add-workspace"; import { AddWorkspace } from "./add-workspace";
@ -20,8 +20,8 @@ export class ChooseWorkspace extends React.Component {
private static editActionId = "__edit__"; private static editActionId = "__edit__";
@computed get options() { @computed get options() {
const options = workspaceStore.enabledWorkspacesList.map((workspace) => { const options: SelectOption<string | symbol>[] = workspaceStore.enabledWorkspacesList.map((workspace) => {
return { value: workspace.id, label: workspace.name }; return { value: workspace.id, label: workspace.name, isDisabled: workspaceStore.isActive(workspace) };
}); });
options.push({ value: ChooseWorkspace.overviewActionId, label: "Show current workspace overview ..." }); options.push({ value: ChooseWorkspace.overviewActionId, label: "Show current workspace overview ..." });
@ -39,34 +39,21 @@ export class ChooseWorkspace extends React.Component {
return options; return options;
} }
onChange(id: string) { onChange(idOrAction: string): void {
if (id === ChooseWorkspace.overviewActionId) { switch (idOrAction) {
case ChooseWorkspace.overviewActionId:
navigate(landingURL()); // overview of active workspace. TODO: change name from landing navigate(landingURL()); // overview of active workspace. TODO: change name from landing
CommandOverlay.close();
return; return CommandOverlay.close();
} case ChooseWorkspace.addActionId:
return CommandOverlay.open(<AddWorkspace />);
if (id === ChooseWorkspace.addActionId) { case ChooseWorkspace.removeActionId:
CommandOverlay.open(<AddWorkspace />); return CommandOverlay.open(<RemoveWorkspace />);
case ChooseWorkspace.editActionId:
return; return CommandOverlay.open(<EditWorkspace />);
} default: // assume id
workspaceStore.setActive(idOrAction);
if (id === ChooseWorkspace.removeActionId) { const clusterId = workspaceStore.getById(idOrAction).activeClusterId;
CommandOverlay.open(<RemoveWorkspace />);
return;
}
if (id === ChooseWorkspace.editActionId) {
CommandOverlay.open(<EditWorkspace />);
return;
}
workspaceStore.setActive(id);
const clusterId = workspaceStore.getById(id).lastActiveClusterId;
if (clusterId) { if (clusterId) {
navigate(clusterViewURL({ params: { clusterId } })); navigate(clusterViewURL({ params: { clusterId } }));
@ -76,6 +63,7 @@ export class ChooseWorkspace extends React.Component {
CommandOverlay.close(); CommandOverlay.close();
} }
}
render() { render() {
return ( return (

View File

@ -9,7 +9,8 @@ import { cssNames, IClassName } from "../../utils";
import { Badge } from "../badge"; import { Badge } from "../badge";
import { Tooltip } from "../tooltip"; import { Tooltip } from "../tooltip";
import { subscribeToBroadcast } from "../../../common/ipc"; import { subscribeToBroadcast } from "../../../common/ipc";
import { observable } from "mobx"; import { computed, observable } from "mobx";
import { workspaceStore } from "../../../common/workspace-store";
interface Props extends DOMAttributes<HTMLElement> { interface Props extends DOMAttributes<HTMLElement> {
cluster: Cluster; cluster: Cluster;
@ -18,7 +19,6 @@ interface Props extends DOMAttributes<HTMLElement> {
showErrors?: boolean; showErrors?: boolean;
showTooltip?: boolean; showTooltip?: boolean;
interactive?: boolean; interactive?: boolean;
isActive?: boolean;
options?: HashiconParams; options?: HashiconParams;
} }
@ -33,8 +33,16 @@ export class ClusterIcon extends React.Component<Props> {
@observable eventCount = 0; @observable eventCount = 0;
get eventCountBroadcast() { @computed get eventCountBroadcast() {
return `cluster-warning-event-count:${this.props.cluster.id}`; const { cluster } = this.props;
return `cluster-warning-event-count:${cluster.id}`;
}
@computed get isActive() {
const { cluster } = this.props;
return workspaceStore.getById(cluster.workspace).activeClusterId === cluster.id;
} }
componentDidMount() { componentDidMount() {
@ -48,8 +56,9 @@ export class ClusterIcon extends React.Component<Props> {
} }
render() { render() {
const { isActive } = this;
const { const {
cluster, showErrors, showTooltip, errorClass, options, interactive, isActive, cluster, showErrors, showTooltip, errorClass, options, interactive,
children, ...elemProps children, ...elemProps
} = this.props; } = this.props;
const { name, preferences, id: clusterId, online } = cluster; const { name, preferences, id: clusterId, online } = cluster;

View File

@ -10,6 +10,7 @@ import { ConfirmDialog } from "../confirm-dialog";
import { Cluster } from "../../../main/cluster"; import { Cluster } from "../../../main/cluster";
import { Tooltip } from "../../components//tooltip"; import { Tooltip } from "../../components//tooltip";
import { IpcRendererNavigationEvents } from "../../navigation/events"; import { IpcRendererNavigationEvents } from "../../navigation/events";
import { workspaceStore } from "../../../common/workspace-store";
const navigate = (route: string) => const navigate = (route: string) =>
broadcastMessage(IpcRendererNavigationEvents.NAVIGATE_IN_APP, route); broadcastMessage(IpcRendererNavigationEvents.NAVIGATE_IN_APP, route);
@ -24,8 +25,10 @@ export const ClusterActions = (cluster: Cluster) => ({
params: { clusterId: cluster.id } params: { clusterId: cluster.id }
})), })),
disconnect: async () => { disconnect: async () => {
clusterStore.deactivate(cluster.id); if (workspaceStore.tryClearAsActiveCluster(cluster)) {
navigate(landingURL()); navigate(landingURL());
}
await requestMain(clusterDisconnectHandler, cluster.id); await requestMain(clusterDisconnectHandler, cluster.id);
}, },
remove: () => { remove: () => {
@ -38,7 +41,6 @@ export const ClusterActions = (cluster: Cluster) => ({
label: "Remove" label: "Remove"
}, },
ok: () => { ok: () => {
clusterStore.deactivate(cluster.id);
clusterStore.removeById(cluster.id); clusterStore.removeById(cluster.id);
navigate(landingURL()); navigate(landingURL());
}, },

View File

@ -17,6 +17,7 @@ import { hasLoadedView, initView, lensViews, refreshViews } from "./lens-views";
import { globalPageRegistry } from "../../../extensions/registries/page-registry"; import { globalPageRegistry } from "../../../extensions/registries/page-registry";
import { Extensions, extensionsRoute } from "../+extensions"; import { Extensions, extensionsRoute } from "../+extensions";
import { getMatchedClusterId } from "../../navigation"; import { getMatchedClusterId } from "../../navigation";
import { workspaceStore } from "../../../common/workspace-store";
@observer @observer
export class ClusterManager extends React.Component { export class ClusterManager extends React.Component {
@ -44,12 +45,12 @@ export class ClusterManager extends React.Component {
} }
get startUrl() { get startUrl() {
const { activeClusterId } = clusterStore; const { currentWorkspace } = workspaceStore;
if (activeClusterId) { if (currentWorkspace.activeClusterId) {
return clusterViewURL({ return clusterViewURL({
params: { params: {
clusterId: activeClusterId clusterId: currentWorkspace.activeClusterId
} }
}); });
} }

View File

@ -8,6 +8,7 @@ import { ClusterStatus } from "./cluster-status";
import { hasLoadedView } from "./lens-views"; import { hasLoadedView } from "./lens-views";
import { Cluster } from "../../../main/cluster"; import { Cluster } from "../../../main/cluster";
import { clusterStore } from "../../../common/cluster-store"; import { clusterStore } from "../../../common/cluster-store";
import { workspaceStore } from "../../../common/workspace-store";
interface Props extends RouteComponentProps<IClusterViewRouteParams> { interface Props extends RouteComponentProps<IClusterViewRouteParams> {
} }
@ -24,7 +25,9 @@ export class ClusterView extends React.Component<Props> {
async componentDidMount() { async componentDidMount() {
disposeOnUnmount(this, [ disposeOnUnmount(this, [
reaction(() => this.clusterId, clusterId => clusterStore.setActive(clusterId), { reaction(() => this.cluster, cluster => {
workspaceStore.getById(cluster.workspace).setActiveCluster(cluster);
}, {
fireImmediately: true, fireImmediately: true,
}) })
]); ]);

View File

@ -30,6 +30,10 @@ interface Props {
export class ClustersMenu extends React.Component<Props> { export class ClustersMenu extends React.Component<Props> {
@observable workspaceMenuVisible = false; @observable workspaceMenuVisible = false;
get workspace() {
return workspaceStore.currentWorkspace;
}
showCluster = (clusterId: ClusterId) => { showCluster = (clusterId: ClusterId) => {
navigate(clusterViewURL({ params: { clusterId } })); navigate(clusterViewURL({ params: { clusterId } }));
}; };
@ -77,9 +81,7 @@ export class ClustersMenu extends React.Component<Props> {
render() { render() {
const { className } = this.props; const { className } = this.props;
const workspace = workspaceStore.getById(workspaceStore.currentWorkspaceId); const clusters = clusterStore.getByWorkspaceId(this.workspace.id).filter(cluster => cluster.enabled);
const clusters = clusterStore.getByWorkspaceId(workspace.id).filter(cluster => cluster.enabled);
const activeClusterId = clusterStore.activeCluster;
return ( return (
<div className={cssNames("ClustersMenu flex column", className)}> <div className={cssNames("ClustersMenu flex column", className)}>
@ -88,10 +90,7 @@ export class ClustersMenu extends React.Component<Props> {
<Droppable droppableId="cluster-menu" type="CLUSTER"> <Droppable droppableId="cluster-menu" type="CLUSTER">
{({ innerRef, droppableProps, placeholder }: DroppableProvided) => ( {({ innerRef, droppableProps, placeholder }: DroppableProvided) => (
<div ref={innerRef} {...droppableProps}> <div ref={innerRef} {...droppableProps}>
{clusters.map((cluster, index) => { {clusters.map((cluster, index) => (
const isActive = cluster.id === activeClusterId;
return (
<Draggable draggableId={cluster.id} index={index} key={cluster.id}> <Draggable draggableId={cluster.id} index={index} key={cluster.id}>
{({ draggableProps, dragHandleProps, innerRef }: DraggableProvided) => ( {({ draggableProps, dragHandleProps, innerRef }: DraggableProvided) => (
<div ref={innerRef} {...draggableProps} {...dragHandleProps}> <div ref={innerRef} {...draggableProps} {...dragHandleProps}>
@ -99,15 +98,13 @@ export class ClustersMenu extends React.Component<Props> {
key={cluster.id} key={cluster.id}
showErrors={true} showErrors={true}
cluster={cluster} cluster={cluster}
isActive={isActive}
onClick={() => this.showCluster(cluster.id)} onClick={() => this.showCluster(cluster.id)}
onContextMenu={() => this.showContextMenu(cluster)} onContextMenu={() => this.showContextMenu(cluster)}
/> />
</div> </div>
)} )}
</Draggable> </Draggable>
); ))}
})}
{placeholder} {placeholder}
</div> </div>
)} )}

View File

@ -8,7 +8,6 @@ import { EventEmitter } from "../../../common/event-emitter";
import { subscribeToBroadcast } from "../../../common/ipc"; import { subscribeToBroadcast } from "../../../common/ipc";
import { CommandDialog } from "./command-dialog"; import { CommandDialog } from "./command-dialog";
import { CommandRegistration, commandRegistry } from "../../../extensions/registries/command-registry"; import { CommandRegistration, commandRegistry } from "../../../extensions/registries/command-registry";
import { clusterStore } from "../../../common/cluster-store";
import { workspaceStore } from "../../../common/workspace-store"; import { workspaceStore } from "../../../common/workspace-store";
export type CommandDialogEvent = { export type CommandDialogEvent = {
@ -49,7 +48,7 @@ export class CommandContainer extends React.Component<{ clusterId?: string }> {
private runCommand(command: CommandRegistration) { private runCommand(command: CommandRegistration) {
command.action({ command.action({
cluster: clusterStore.active, cluster: workspaceStore.currentWorkspace.activeCluster,
workspace: workspaceStore.currentWorkspace workspace: workspaceStore.currentWorkspace
}); });
} }

View File

@ -4,7 +4,6 @@ import { computed, observable, toJS } from "mobx";
import { observer } from "mobx-react"; import { observer } from "mobx-react";
import React from "react"; import React from "react";
import { commandRegistry } from "../../../extensions/registries/command-registry"; import { commandRegistry } from "../../../extensions/registries/command-registry";
import { clusterStore } from "../../../common/cluster-store";
import { workspaceStore } from "../../../common/workspace-store"; import { workspaceStore } from "../../../common/workspace-store";
import { CommandOverlay } from "./command-container"; import { CommandOverlay } from "./command-container";
import { broadcastMessage } from "../../../common/ipc"; import { broadcastMessage } from "../../../common/ipc";
@ -16,13 +15,11 @@ export class CommandDialog extends React.Component {
@observable menuIsOpen = true; @observable menuIsOpen = true;
@computed get options() { @computed get options() {
const context = { const activeCluster = workspaceStore.currentWorkspace.activeCluster;
cluster: clusterStore.active,
workspace: workspaceStore.currentWorkspace
};
return commandRegistry.getItems().filter((command) => { return commandRegistry.getItems()
if (command.scope === "cluster" && !clusterStore.active) { .filter(command => {
if (command.scope === "cluster" && !activeCluster) {
return false; return false;
} }
@ -31,15 +28,18 @@ export class CommandDialog extends React.Component {
} }
try { try {
return command.isActive(context); return command.isActive({
cluster: activeCluster,
workspace: workspaceStore.currentWorkspace
});
} catch(e) { } catch(e) {
console.error(e); console.error(e);
return false; return false;
} }
}).map((command) => { })
return { value: command.id, label: command.title }; .map(({ id, title }) => ({ value: id, label: title }))
}).sort((a, b) => a.label > b.label ? 1 : -1); .sort((a, b) => a.label > b.label ? 1 : -1);
} }
private onChange(value: string) { private onChange(value: string) {
@ -49,6 +49,7 @@ export class CommandDialog extends React.Component {
return; return;
} }
const activeCluster = workspaceStore.currentWorkspace.activeCluster;
const action = toJS(command.action); const action = toJS(command.action);
try { try {
@ -56,16 +57,16 @@ export class CommandDialog extends React.Component {
if (command.scope === "global") { if (command.scope === "global") {
action({ action({
cluster: clusterStore.active, cluster: activeCluster,
workspace: workspaceStore.currentWorkspace workspace: workspaceStore.currentWorkspace
}); });
} else if(clusterStore.active) { } else if(activeCluster) {
navigate(clusterViewURL({ navigate(clusterViewURL({
params: { params: {
clusterId: clusterStore.active.id clusterId: activeCluster.id
} }
})); }));
broadcastMessage(`command-palette:run-action:${clusterStore.active.id}`, command.id); broadcastMessage(`command-palette:run-action:${activeCluster.id}`, command.id);
} }
} catch(error) { } catch(error) {
console.error("[COMMAND-DIALOG] failed to execute command", command.id, error); console.error("[COMMAND-DIALOG] failed to execute command", command.id, error);

View File

@ -8,6 +8,7 @@ import { invalidKubeconfigHandler } from "./invalid-kubeconfig-handler";
import { clusterStore } from "../../common/cluster-store"; import { clusterStore } from "../../common/cluster-store";
import { navigate } from "../navigation"; import { navigate } from "../navigation";
import { clusterSettingsURL } from "../components/+cluster-settings"; import { clusterSettingsURL } from "../components/+cluster-settings";
import logger from "../../main/logger";
function sendToBackchannel(backchannel: string, notificationId: string, data: BackchannelArg): void { function sendToBackchannel(backchannel: string, notificationId: string, data: BackchannelArg): void {
notificationsStore.remove(notificationId); notificationsStore.remove(notificationId);
@ -59,6 +60,12 @@ const listNamespacesForbiddenHandlerDisplayedAt = new Map<string, number>();
const intervalBetweenNotifications = 1000 * 60; // 60s const intervalBetweenNotifications = 1000 * 60; // 60s
function ListNamespacesForbiddenHandler(event: IpcRendererEvent, ...[clusterId]: ListNamespaceForbiddenArgs): void { function ListNamespacesForbiddenHandler(event: IpcRendererEvent, ...[clusterId]: ListNamespaceForbiddenArgs): void {
const cluster = clusterStore.getById(clusterId);
if (!cluster) {
return void logger.warn("[ListNamespacesForbiddenHandler]: received event but was given an unknown cluster ID", { clusterId });
}
const lastDisplayedAt = listNamespacesForbiddenHandlerDisplayedAt.get(clusterId); const lastDisplayedAt = listNamespacesForbiddenHandlerDisplayedAt.get(clusterId);
const wasDisplayed = Boolean(lastDisplayedAt); const wasDisplayed = Boolean(lastDisplayedAt);
const now = Date.now(); const now = Date.now();
@ -76,7 +83,7 @@ function ListNamespacesForbiddenHandler(event: IpcRendererEvent, ...[clusterId]:
( (
<div className="flex column gaps"> <div className="flex column gaps">
<b>Add Accessible Namespaces</b> <b>Add Accessible Namespaces</b>
<p>Cluster <b>{clusterStore.active.name}</b> does not have permissions to list namespaces. Please add the namespaces you have access to.</p> <p>Cluster <b>{cluster.name}</b> does not have permissions to list namespaces. Please add the namespaces you have access to.</p>
<div className="flex gaps row align-left box grow"> <div className="flex gaps row align-left box grow">
<Button active outlined label="Go to Accessible Namespaces Settings" onClick={()=> { <Button active outlined label="Go to Accessible Namespaces Settings" onClick={()=> {
navigate(clusterSettingsURL({ params: { clusterId }, fragment: "accessible-namespaces" })); navigate(clusterSettingsURL({ params: { clusterId }, fragment: "accessible-namespaces" }));