mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
85 lines
2.2 KiB
TypeScript
85 lines
2.2 KiB
TypeScript
import "./page-layout.scss";
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { autobind, cssNames, IClassName } from "../../utils";
|
|
import { Icon } from "../icon";
|
|
import { navigation } from "../../navigation";
|
|
|
|
export interface PageLayoutProps extends React.DOMAttributes<any> {
|
|
className?: IClassName;
|
|
header: React.ReactNode;
|
|
headerClass?: IClassName;
|
|
contentClass?: IClassName;
|
|
provideBackButtonNavigation?: boolean;
|
|
contentGaps?: boolean;
|
|
showOnTop?: boolean; // covers whole app view
|
|
back?: (evt: React.MouseEvent | KeyboardEvent) => void;
|
|
}
|
|
|
|
const defaultProps: Partial<PageLayoutProps> = {
|
|
provideBackButtonNavigation: true,
|
|
contentGaps: true,
|
|
};
|
|
|
|
@observer
|
|
export class PageLayout extends React.Component<PageLayoutProps> {
|
|
static defaultProps = defaultProps as object;
|
|
|
|
@autobind()
|
|
back(evt?: React.MouseEvent | KeyboardEvent) {
|
|
if (this.props.back) {
|
|
this.props.back(evt);
|
|
} else {
|
|
navigation.goBack();
|
|
}
|
|
}
|
|
|
|
async componentDidMount() {
|
|
window.addEventListener("keydown", this.onEscapeKey);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
window.removeEventListener("keydown", this.onEscapeKey);
|
|
}
|
|
|
|
onEscapeKey = (evt: KeyboardEvent) => {
|
|
if (!this.props.provideBackButtonNavigation) {
|
|
return;
|
|
}
|
|
|
|
if (evt.code === "Escape") {
|
|
evt.stopPropagation();
|
|
this.back(evt);
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
contentClass, header, headerClass, provideBackButtonNavigation,
|
|
contentGaps, showOnTop, children, ...elemProps
|
|
} = this.props;
|
|
const className = cssNames("PageLayout", { top: showOnTop }, this.props.className);
|
|
|
|
return (
|
|
<div {...elemProps} className={className}>
|
|
<div className={cssNames("header flex gaps align-center", headerClass)}>
|
|
{header}
|
|
{provideBackButtonNavigation && (
|
|
<Icon
|
|
big material="close"
|
|
className="back box right"
|
|
onClick={this.back}
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className="content-wrapper">
|
|
<div className={cssNames("content", contentGaps && "flex column gaps", contentClass)}>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|