UNPKG

@blueprintjs/core

Version:
100 lines 4.45 kB
"use strict"; /* * Copyright 2016 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.Toast = void 0; var tslib_1 = require("tslib"); var classnames_1 = tslib_1.__importDefault(require("classnames")); var React = tslib_1.__importStar(require("react")); var icons_1 = require("@blueprintjs/icons"); var common_1 = require("../../common"); var props_1 = require("../../common/props"); var buttonGroup_1 = require("../button/buttonGroup"); var buttons_1 = require("../button/buttons"); var icon_1 = require("../icon/icon"); /** * Toast component. * * @see https://blueprintjs.com/docs/#core/components/toast */ var Toast = /** @class */ (function (_super) { tslib_1.__extends(Toast, _super); function Toast() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.handleActionClick = function (e) { var _a, _b; (_b = (_a = _this.props.action) === null || _a === void 0 ? void 0 : _a.onClick) === null || _b === void 0 ? void 0 : _b.call(_a, e); _this.triggerDismiss(false); }; _this.handleCloseClick = function () { return _this.triggerDismiss(false); }; _this.startTimeout = function () { _this.clearTimeouts(); if (_this.props.timeout > 0) { _this.setTimeout(function () { return _this.triggerDismiss(true); }, _this.props.timeout); } }; return _this; } Toast.prototype.render = function () { var _a = this.props, className = _a.className, icon = _a.icon, intent = _a.intent, message = _a.message, isCloseButtonShown = _a.isCloseButtonShown; return (React.createElement("div", { className: (0, classnames_1.default)(common_1.Classes.TOAST, common_1.Classes.intentClass(intent), className), onBlur: this.startTimeout, onFocus: this.clearTimeouts, onMouseEnter: this.clearTimeouts, onMouseLeave: this.startTimeout, tabIndex: 0 }, React.createElement(icon_1.Icon, { icon: icon }), React.createElement("span", { className: common_1.Classes.TOAST_MESSAGE, role: "alert" }, message), React.createElement(buttonGroup_1.ButtonGroup, { minimal: true }, this.maybeRenderActionButton(), isCloseButtonShown && (React.createElement(buttons_1.Button, { "aria-label": "Close", icon: React.createElement(icons_1.Cross, null), onClick: this.handleCloseClick }))))); }; Toast.prototype.componentDidMount = function () { this.startTimeout(); }; Toast.prototype.componentDidUpdate = function (prevProps) { if (prevProps.timeout !== this.props.timeout) { if (this.props.timeout > 0) { this.startTimeout(); } else { this.clearTimeouts(); } } }; Toast.prototype.componentWillUnmount = function () { this.clearTimeouts(); }; Toast.prototype.maybeRenderActionButton = function () { var action = this.props.action; if (action == null) { return undefined; } else { return React.createElement(buttons_1.AnchorButton, tslib_1.__assign({}, action, { intent: undefined, onClick: this.handleActionClick })); } }; Toast.prototype.triggerDismiss = function (didTimeoutExpire) { var _a, _b; this.clearTimeouts(); (_b = (_a = this.props).onDismiss) === null || _b === void 0 ? void 0 : _b.call(_a, didTimeoutExpire); }; Toast.defaultProps = { className: "", isCloseButtonShown: true, message: "", timeout: 5000, }; Toast.displayName = "".concat(props_1.DISPLAYNAME_PREFIX, ".Toast"); return Toast; }(common_1.AbstractPureComponent)); exports.Toast = Toast; //# sourceMappingURL=toast.js.map