UNPKG

@blueprintjs/core

Version:
67 lines 3.35 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.KeyCombo = void 0; var tslib_1 = require("tslib"); var classnames_1 = tslib_1.__importDefault(require("classnames")); var React = tslib_1.__importStar(require("react")); var common_1 = require("../../common"); var icon_1 = require("../icon/icon"); var hotkeyParser_1 = require("./hotkeyParser"); var KeyIcons = { alt: { icon: "key-option", iconTitle: "Alt/Option key" }, cmd: { icon: "key-command", iconTitle: "Command key" }, ctrl: { icon: "key-control", iconTitle: "Control key" }, delete: { icon: "key-delete", iconTitle: "Delete key" }, down: { icon: "arrow-down", iconTitle: "Down key" }, enter: { icon: "key-enter", iconTitle: "Enter key" }, left: { icon: "arrow-left", iconTitle: "Left key" }, meta: { icon: "key-command", iconTitle: "Command key" }, right: { icon: "arrow-right", iconTitle: "Right key" }, shift: { icon: "key-shift", iconTitle: "Shift key" }, up: { icon: "arrow-up", iconTitle: "Up key" }, }; var KeyCombo = /** @class */ (function (_super) { tslib_1.__extends(KeyCombo, _super); function KeyCombo() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.renderKey = function (key, index) { var _a; var icon = KeyIcons[key]; var reactKey = "key-".concat(index); return (React.createElement("kbd", { className: (0, classnames_1.default)(common_1.Classes.KEY, (_a = {}, _a[common_1.Classes.MODIFIER_KEY] = icon != null, _a)), key: reactKey }, icon != null && React.createElement(icon_1.Icon, { icon: icon.icon, title: icon.iconTitle }), key)); }; _this.renderMinimalKey = function (key, index) { var icon = KeyIcons[key]; return icon == null ? key : React.createElement(icon_1.Icon, { icon: icon.icon, title: icon.iconTitle, key: "key-".concat(index) }); }; return _this; } KeyCombo.prototype.render = function () { var _a = this.props, className = _a.className, combo = _a.combo, minimal = _a.minimal; var keys = (0, hotkeyParser_1.normalizeKeyCombo)(combo) .map(function (key) { return (key.length === 1 ? key.toUpperCase() : key); }) .map(minimal ? this.renderMinimalKey : this.renderKey); return React.createElement("span", { className: (0, classnames_1.default)(common_1.Classes.KEY_COMBO, className) }, keys); }; KeyCombo.displayName = "".concat(common_1.DISPLAYNAME_PREFIX, ".KeyCombo"); return KeyCombo; }(common_1.AbstractPureComponent2)); exports.KeyCombo = KeyCombo; //# sourceMappingURL=keyCombo.js.map