@material/web
Version:
Material web components
117 lines • 4.03 kB
JavaScript
/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { __decorate } from "tslib";
import '../../../focus/md-focus-ring.js';
import '../../../ripple/ripple.js';
import '../../badge/badge.js';
import { html, LitElement, nothing } from 'lit';
import { property, query } from 'lit/decorators.js';
import { classMap } from 'lit/directives/class-map.js';
import { requestUpdateOnAriaChange } from '../../../internal/aria/delegate.js';
/**
* TODO(b/265346501): add docs
*/
export class NavigationTab extends LitElement {
constructor() {
super(...arguments);
this.disabled = false;
this.active = false;
this.hideInactiveLabel = false;
this.badgeValue = '';
this.showBadge = false;
}
render() {
// Needed for closure conformance
const { ariaLabel } = this;
return html `
<button
class="md3-navigation-tab ${classMap(this.getRenderClasses())}"
role="tab"
aria-selected="${this.active}"
aria-label=${ariaLabel || nothing}
tabindex="${this.active ? 0 : -1}"
="${this.handleClick}"
>
<md-focus-ring part="focus-ring" inward></md-focus-ring>
<md-ripple ?disabled="${this.disabled}" class="md3-navigation-tab__ripple"></md-ripple>
<span aria-hidden="true" class="md3-navigation-tab__icon-content"
><span class="md3-navigation-tab__active-indicator"
></span><span class="md3-navigation-tab__icon"
><slot name="inactive-icon"></slot
></span>
<span class="md3-navigation-tab__icon md3-navigation-tab__icon--active"
><slot name="active-icon"></slot
></span>${this.renderBadge()}</span
>${this.renderLabel()}
</button>`;
}
getRenderClasses() {
return {
'md3-navigation-tab--hide-inactive-label': this.hideInactiveLabel,
'md3-navigation-tab--active': this.active,
};
}
renderBadge() {
return this.showBadge ?
html `<md-badge .value="${this.badgeValue}"></md-badge>` :
nothing;
}
renderLabel() {
// Needed for closure conformance
const { ariaLabel } = this;
const ariaHidden = ariaLabel ? 'true' : 'false';
return !this.label ?
nothing :
html `
<span aria-hidden="${ariaHidden}" class="md3-navigation-tab__label-text">${this.label}</span>`;
}
firstUpdated(changedProperties) {
super.firstUpdated(changedProperties);
const event = new Event('navigation-tab-rendered', { bubbles: true, composed: true });
this.dispatchEvent(event);
}
focus() {
const buttonElement = this.buttonElement;
if (buttonElement) {
buttonElement.focus();
}
}
blur() {
const buttonElement = this.buttonElement;
if (buttonElement) {
buttonElement.blur();
}
}
handleClick() {
// TODO(b/269772145): connect to ripple
this.dispatchEvent(new CustomEvent('navigation-tab-interaction', { detail: { state: this }, bubbles: true, composed: true }));
}
}
(() => {
requestUpdateOnAriaChange(NavigationTab);
})();
__decorate([
property({ type: Boolean })
], NavigationTab.prototype, "disabled", void 0);
__decorate([
property({ type: Boolean, reflect: true })
], NavigationTab.prototype, "active", void 0);
__decorate([
property({ type: Boolean, attribute: 'hide-inactive-label' })
], NavigationTab.prototype, "hideInactiveLabel", void 0);
__decorate([
property()
], NavigationTab.prototype, "label", void 0);
__decorate([
property({ attribute: 'badge-value' })
], NavigationTab.prototype, "badgeValue", void 0);
__decorate([
property({ type: Boolean, attribute: 'show-badge' })
], NavigationTab.prototype, "showBadge", void 0);
__decorate([
query('button')
], NavigationTab.prototype, "buttonElement", void 0);
//# sourceMappingURL=navigation-tab.js.map