mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
137 lines
3.8 KiB
TypeScript
137 lines
3.8 KiB
TypeScript
import "./namespace-select.scss";
|
|
|
|
import React from "react";
|
|
import { computed } from "mobx";
|
|
import { disposeOnUnmount, observer } from "mobx-react";
|
|
import { Select, SelectOption, SelectProps } from "../select";
|
|
import { cssNames } from "../../utils";
|
|
import { Icon } from "../icon";
|
|
import { namespaceStore } from "./namespace.store";
|
|
import { FilterIcon } from "../item-object-list/filter-icon";
|
|
import { FilterType } from "../item-object-list/page-filters.store";
|
|
import { kubeWatchApi } from "../../api/kube-watch-api";
|
|
|
|
interface Props extends SelectProps {
|
|
showIcons?: boolean;
|
|
showClusterOption?: boolean; // show "Cluster" option on the top (default: false)
|
|
showAllNamespacesOption?: boolean; // show "All namespaces" option on the top (default: false)
|
|
customizeOptions?(options: SelectOption[]): SelectOption[];
|
|
}
|
|
|
|
const defaultProps: Partial<Props> = {
|
|
showIcons: true,
|
|
showClusterOption: false,
|
|
};
|
|
|
|
@observer
|
|
export class NamespaceSelect extends React.Component<Props> {
|
|
static defaultProps = defaultProps as object;
|
|
|
|
componentDidMount() {
|
|
disposeOnUnmount(this, [
|
|
kubeWatchApi.subscribeStores([namespaceStore], {
|
|
preload: true,
|
|
})
|
|
]);
|
|
}
|
|
|
|
@computed get options(): SelectOption[] {
|
|
const { customizeOptions, showClusterOption, showAllNamespacesOption } = this.props;
|
|
let options: SelectOption[] = namespaceStore.items.map(ns => ({ value: ns.getName() }));
|
|
|
|
if (showAllNamespacesOption) {
|
|
options.unshift({ label: "All Namespaces", value: "" });
|
|
} else if (showClusterOption) {
|
|
options.unshift({ label: "Cluster", value: "" });
|
|
}
|
|
|
|
if (customizeOptions) {
|
|
options = customizeOptions(options);
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
formatOptionLabel = (option: SelectOption) => {
|
|
const { showIcons } = this.props;
|
|
const { value, label } = option;
|
|
|
|
return label || (
|
|
<>
|
|
{showIcons && <Icon small material="layers"/>}
|
|
{value}
|
|
</>
|
|
);
|
|
};
|
|
|
|
render() {
|
|
const { className, showIcons, customizeOptions, ...selectProps } = this.props;
|
|
|
|
return (
|
|
<Select
|
|
className={cssNames("NamespaceSelect", className)}
|
|
menuClass="NamespaceSelectMenu"
|
|
formatOptionLabel={this.formatOptionLabel}
|
|
options={this.options}
|
|
{...selectProps}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
@observer
|
|
export class NamespaceSelectFilter extends React.Component {
|
|
@computed get placeholder(): React.ReactNode {
|
|
const namespaces = namespaceStore.getContextNamespaces();
|
|
|
|
switch (namespaces.length) {
|
|
case 0:
|
|
case namespaceStore.allowedNamespaces.length:
|
|
return <>All namespaces</>;
|
|
case 1:
|
|
return <>Namespace: {namespaces[0]}</>;
|
|
default:
|
|
return <>Namespaces: {namespaces.join(", ")}</>;
|
|
}
|
|
}
|
|
|
|
formatOptionLabel = ({ value: namespace, label }: SelectOption) => {
|
|
if (namespace) {
|
|
const isSelected = namespaceStore.hasContext(namespace);
|
|
|
|
return (
|
|
<div className="flex gaps align-center">
|
|
<FilterIcon type={FilterType.NAMESPACE}/>
|
|
<span>{namespace}</span>
|
|
{isSelected && <Icon small material="check" className="box right"/>}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return label;
|
|
};
|
|
|
|
onChange = ([{ value: namespace }]: SelectOption[]) => {
|
|
if (namespace) {
|
|
namespaceStore.toggleContext(namespace);
|
|
} else {
|
|
namespaceStore.resetContext(); // "All namespaces" clicked, empty list considered as "all"
|
|
}
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<NamespaceSelect
|
|
isMulti={true}
|
|
showAllNamespacesOption={true}
|
|
closeMenuOnSelect={false}
|
|
isOptionSelected={() => false}
|
|
controlShouldRenderValue={false}
|
|
placeholder={this.placeholder}
|
|
onChange={this.onChange}
|
|
formatOptionLabel={this.formatOptionLabel}
|
|
/>
|
|
);
|
|
}
|
|
}
|