UNPKG

@neo4j-ndl/react

Version:

React implementation of Neo4j Design System

86 lines 3.51 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Tag = void 0; const jsx_runtime_1 = require("react/jsx-runtime"); /** * * Copyright (c) "Neo4j" * Neo4j Sweden AB [http://neo4j.com] * * This file is part of Neo4j. * * Neo4j is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ const react_1 = __importStar(require("react")); const defaultImports_1 = require("../_common/defaultImports"); const utils_1 = require("../_common/utils"); const icons_1 = require("../icons"); /** * * * Helpers * * */ /** Add any helper functions here. */ /** * * * Tag Component * * */ exports.Tag = react_1.default.forwardRef(function Tag(props, ref) { const { children, type = 'default', size = 'medium', isRemovable, onRemove, className, htmlAttributes, } = props; if (isRemovable && typeof onRemove !== 'function') { (0, utils_1.needleWarningMessage)('Tag element is removable but onRemove prop is not a function or provided'); } const classes = (0, defaultImports_1.classNames)(`ndl-tag`, className, { 'ndl-destructive': type === 'destructive', 'ndl-removeable': isRemovable, 'ndl-small': size === 'small', 'ndl-medium': size === 'medium', 'ndl-large': size === 'large', }); const keyDownHandler = (0, react_1.useCallback)((e) => { if (e.key === 'Enter') { onRemove === null || onRemove === void 0 ? void 0 : onRemove(e); } }, [onRemove]); return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: classes, ref: ref }, htmlAttributes, { children: [children, isRemovable && ((0, jsx_runtime_1.jsx)("button", { type: "button", className: "ndl-remove-icon", onKeyDown: keyDownHandler, onClick: onRemove, "aria-label": "Remove tag", children: (0, jsx_runtime_1.jsx)(icons_1.XMarkIconOutline, {}) }))] }))); }); //# sourceMappingURL=Tag.js.map