mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import React from "react";
|
|
import { computed } from "mobx";
|
|
import { observer } from "mobx-react";
|
|
import { cssNames } from "../../utils";
|
|
import { KubeObject } from "../../api/kube-object";
|
|
import { getSelectedDetails, showDetails } from "../../navigation";
|
|
import { ItemListLayout, ItemListLayoutProps } from "../item-object-list/item-list-layout";
|
|
import { KubeObjectStore } from "../../kube-object.store";
|
|
|
|
export interface KubeObjectListLayoutProps extends ItemListLayoutProps {
|
|
store: KubeObjectStore;
|
|
}
|
|
|
|
@observer
|
|
export class KubeObjectListLayout extends React.Component<KubeObjectListLayoutProps> {
|
|
@computed get selectedItem() {
|
|
return this.props.store.getByPath(getSelectedDetails());
|
|
}
|
|
|
|
onDetails = (item: KubeObject) => {
|
|
if (this.props.onDetails) {
|
|
this.props.onDetails(item);
|
|
}
|
|
else {
|
|
showDetails(item.selfLink);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { className, ...layoutProps } = this.props;
|
|
return (
|
|
<ItemListLayout
|
|
{...layoutProps}
|
|
className={cssNames("KubeObjectListLayout", className)}
|
|
detailsItem={this.selectedItem}
|
|
onDetails={this.onDetails}
|
|
/>
|
|
);
|
|
}
|
|
}
|