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

added Select component to landing page title for changing workspace

Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
This commit is contained in:
Jim Ehrismann 2021-01-22 19:46:59 -05:00
parent 0cd939a82d
commit 12c619aa0c
2 changed files with 77 additions and 22 deletions

View File

@ -5,7 +5,10 @@ import { observer } from "mobx-react";
import { clusterStore } from "../../../common/cluster-store";
import { Workspace, workspaceStore } from "../../../common/workspace-store";
import { PageLayout } from "../layout/page-layout"
import { Select, SelectOption } from "../select";
import { WorkspaceOverview } from "./workspace-overview"
import { autobind } from "../../../common/utils";
@observer
export class LandingPage extends React.Component {
@observable showHint = true;
@ -13,15 +16,37 @@ export class LandingPage extends React.Component {
currentWorkspace = autorun(() => { this.workspace = workspaceStore.currentWorkspace; })
@autobind()
getHeader() {
const onWorkspaceChange = (option: SelectOption) => {
const selectedWorkspace = workspaceStore.getByName(option.value);
if (!selectedWorkspace) {
return;
}
workspaceStore.setActive(selectedWorkspace.id);
}
return (
<h2 className="flex row center">
<span>Workspace:</span>
<Select
options={workspaceStore.enabledWorkspacesList.map(w => ({value: w.name, label: w.name}))}
value={this.workspace.name}
onChange={onWorkspaceChange}
/>
</h2>
);
}
render() {
const clusters = clusterStore.getByWorkspaceId(workspaceStore.currentWorkspaceId);
const noClustersInScope = !clusters.length;
const showStartupHint = this.showHint && noClustersInScope;
const header = <h2>{`Workspace: ${this.workspace?.name}`}</h2>;
return (
<PageLayout provideBackButtonNavigation={false} className="Workspaces" header={header} headerClass={"box center"}>
<PageLayout provideBackButtonNavigation={false} className="Workspaces" header={this.getHeader()} headerClass={"box center"}>
<div className="LandingPage flex auto">
{showStartupHint && (
<div className="startup-hint flex column gaps" onMouseEnter={() => this.showHint = false}>

View File

@ -1,6 +1,6 @@
import "./workspace-cluster-icon.scss";
import React, { Component } from "react";
import React, { Component, Fragment } from "react";
import { Workspace } from "../../../common/workspace-store";
import { clusterStore } from "../../../common/cluster-store";
import { Cluster } from "../../../main/cluster";
@ -29,6 +29,33 @@ enum sortBy {
@observer
export class WorkspaceOverview extends Component<Props> {
renderInfo() {
const { workspace } = this.props;
if (workspace.name === "default") {
return (
<Fragment>
<h2>Default Workspace</h2>
<p className="info">
This is the default workspace. Workspaces are used to organize clusters into logical groups.
</p>
<p>
A single workspaces contains a list of clusters and their full configuration.
</p>
</Fragment>
);
}
return (
<Fragment>
<h2>Description</h2>
<p className="info">
{workspace.description}
</p>
</Fragment>
)
}
getIcon(clusterItem: ClusterItem) {
const { cluster } = clusterItem;
const { name } = cluster;
@ -48,7 +75,9 @@ export class WorkspaceOverview extends Component<Props> {
const workspaceClusterStore = new WorkspaceClusterStore(workspace.id);
return (
<WizardLayout className="Workspaces" infoPanel={this.renderInfo()}>
<ItemListLayout
renderHeaderTitle={<div>Clusters</div>}
isClusterScoped
className="WorkspaceList" store={workspaceClusterStore}
sortingCallbacks={{
@ -56,7 +85,7 @@ export class WorkspaceOverview extends Component<Props> {
}}
searchFilters={[]}
renderTableHeader={[
{ title: "", className: "icon flex-grow" },
{ title: "", className: "icon" },
{ title: "Name", className: "name flex-grow", sortBy: sortBy.name },
{ title: "Id", className: "id" },
]}
@ -66,6 +95,7 @@ export class WorkspaceOverview extends Component<Props> {
item.getId(),
]}
/>
</WizardLayout>
);
}
}