UNPKG

@blueprintjs/core

Version:

Core styles & components

45 lines 2.47 kB
/* * Copyright 2015 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 classNames from "classnames"; import * as React from "react"; import { AbstractPureComponent, Classes, Intent } from "../../common"; import { DISPLAYNAME_PREFIX, removeNonHTMLProps } from "../../common/props"; import { Icon } from "../icon/icon"; import { Tag } from "../tag/tag"; export class TabTitle extends AbstractPureComponent { constructor() { super(...arguments); this.handleClick = (e) => this.props.onClick(this.props.id, e); } render() { const { className, children, disabled, id, parentId, selected, title, icon, tagContent, tagProps, ...htmlProps } = this.props; const intent = selected ? Intent.PRIMARY : Intent.NONE; const { tabPanelId, tabTitleId } = generateTabIds(parentId, id); return (React.createElement("div", { ...removeNonHTMLProps(htmlProps), "aria-controls": tabPanelId, "aria-disabled": disabled, "aria-expanded": selected, "aria-selected": selected, className: classNames(Classes.TAB, className), "data-tab-id": id, id: tabTitleId, onClick: disabled ? undefined : this.handleClick, role: "tab", tabIndex: disabled ? undefined : selected ? 0 : -1 }, icon != null && React.createElement(Icon, { icon: icon, intent: intent, className: Classes.TAB_ICON }), title, children, tagContent != null && (React.createElement(Tag, { minimal: true, intent: intent, ...tagProps, className: classNames(Classes.TAB_TAG, tagProps === null || tagProps === void 0 ? void 0 : tagProps.className) }, tagContent)))); } } TabTitle.displayName = `${DISPLAYNAME_PREFIX}.TabTitle`; export function generateTabIds(parentId, tabId) { return { tabPanelId: `${Classes.TAB_PANEL}_${parentId}_${tabId}`, tabTitleId: `${Classes.TAB}-title_${parentId}_${tabId}`, }; } //# sourceMappingURL=tabTitle.js.map