@blueprintjs/core
Version:
Core styles & components
125 lines • 5.23 kB
JavaScript
/*
* Copyright 2018 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { __decorate } from "tslib";
import classNames from "classnames";
import * as React from "react";
import { polyfill } from "react-lifecycles-compat";
import { AbstractPureComponent2, Classes } from "../../common";
import * as Errors from "../../common/errors";
import { getPositionIgnoreAngles, isPositionHorizontal } from "../../common/position";
import { DISPLAYNAME_PREFIX } from "../../common/props";
import { Button } from "../button/buttons";
import { H4 } from "../html/html";
import { Icon, IconSize } from "../icon/icon";
import { Overlay } from "../overlay/overlay";
export var DrawerSize;
(function (DrawerSize) {
DrawerSize["SMALL"] = "360px";
DrawerSize["STANDARD"] = "50%";
DrawerSize["LARGE"] = "90%";
})(DrawerSize || (DrawerSize = {}));
let Drawer = class Drawer extends AbstractPureComponent2 {
constructor() {
super(...arguments);
this.handleOpening = (node) => {
this.lastActiveElementBeforeOpened = document.activeElement;
this.props.onOpening?.(node);
};
this.handleClosed = (node) => {
if (this.props.shouldReturnFocusOnClose && this.lastActiveElementBeforeOpened instanceof HTMLElement) {
this.lastActiveElementBeforeOpened.focus();
}
this.props.onClosed?.(node);
};
}
render() {
// eslint-disable-next-line deprecation/deprecation
const { size, style, position, vertical } = this.props;
const realPosition = position ? getPositionIgnoreAngles(position) : undefined;
const classes = classNames(Classes.DRAWER, {
[Classes.VERTICAL]: !realPosition && vertical,
[Classes.positionClass(realPosition) ?? ""]: true,
}, this.props.className);
const styleProp = size == null
? style
: {
...style,
[(realPosition ? isPositionHorizontal(realPosition) : vertical) ? "height" : "width"]: size,
};
return (React.createElement(Overlay, Object.assign({}, this.props, { className: Classes.OVERLAY_CONTAINER, onOpening: this.handleOpening, onClosed: this.handleClosed }),
React.createElement("div", { className: classes, style: styleProp },
this.maybeRenderHeader(),
this.props.children)));
}
validateProps(props) {
if (props.title == null) {
if (props.icon != null) {
console.warn(Errors.DIALOG_WARN_NO_HEADER_ICON);
}
if (props.isCloseButtonShown != null) {
console.warn(Errors.DIALOG_WARN_NO_HEADER_CLOSE_BUTTON);
}
}
if (props.position != null) {
// eslint-disable-next-line deprecation/deprecation
if (props.vertical) {
console.warn(Errors.DRAWER_VERTICAL_IS_IGNORED);
}
if (props.position !== getPositionIgnoreAngles(props.position)) {
console.warn(Errors.DRAWER_ANGLE_POSITIONS_ARE_CASTED);
}
}
}
maybeRenderCloseButton() {
// `isCloseButtonShown` can't be defaulted through default props because of props validation
// so this check actually defaults it to true (fails only if directly set to false)
if (this.props.isCloseButtonShown !== false) {
return (React.createElement(Button, { "aria-label": "Close", className: Classes.DIALOG_CLOSE_BUTTON, icon: React.createElement(Icon, { icon: "small-cross", iconSize: IconSize.LARGE }), minimal: true, onClick: this.props.onClose }));
}
else {
return null;
}
}
maybeRenderHeader() {
const { icon, title } = this.props;
if (title == null) {
return null;
}
return (React.createElement("div", { className: Classes.DRAWER_HEADER },
React.createElement(Icon, { icon: icon, iconSize: IconSize.LARGE }),
React.createElement(H4, null, title),
this.maybeRenderCloseButton()));
}
};
Drawer.displayName = `${DISPLAYNAME_PREFIX}.Drawer`;
Drawer.defaultProps = {
canOutsideClickClose: true,
isOpen: false,
shouldReturnFocusOnClose: true,
style: {},
vertical: false,
};
/** @deprecated use DrawerSize.SMALL */
Drawer.SIZE_SMALL = DrawerSize.SMALL;
/** @deprecated use DrawerSize.STANDARD */
Drawer.SIZE_STANDARD = DrawerSize.STANDARD;
/** @deprecated use DrawerSize.LARGE */
Drawer.SIZE_LARGE = DrawerSize.LARGE;
Drawer = __decorate([
polyfill
], Drawer);
export { Drawer };
//# sourceMappingURL=drawer.js.map