/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { __decorate } from "tslib";
import '../../focus/md-focus-ring.js';
import '../../ripple/ripple.js';
import { html, isServer, LitElement, nothing } from 'lit';
import { property, state } from 'lit/decorators.js';
import { classMap } from 'lit/directives/class-map.js';
import { literal, html as staticHtml } from 'lit/static-html.js';
import { mixinDelegatesAria } from '../../internal/aria/delegate.js';
import { setupFormSubmitter, } from '../../internal/controller/form-submitter.js';
import { isRtl } from '../../internal/controller/is-rtl.js';
import { internals, mixinElementInternals, } from '../../labs/behaviors/element-internals.js';
// Separate variable needed for closure.
const iconButtonBaseClass = mixinDelegatesAria(mixinElementInternals(LitElement));
/**
* A button for rendering icons.
*
* @fires input {InputEvent} Dispatched when a toggle button toggles --bubbles
* --composed
* @fires change {Event} Dispatched when a toggle button toggles --bubbles
*/
export class IconButton extends iconButtonBaseClass {
get name() {
return this.getAttribute('name') ?? '';
}
set name(name) {
this.setAttribute('name', name);
}
/**
* The associated form element with which this element's value will submit.
*/
get form() {
return this[internals].form;
}
/**
* The labels this element is associated with.
*/
get labels() {
return this[internals].labels;
}
constructor() {
super();
/**
* Disables the icon button and makes it non-interactive.
*/
this.disabled = false;
/**
* "Soft-disables" the icon button (disabled but still focusable).
*
* Use this when an icon button needs increased visibility when disabled. See
* https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_disabled_controls
* for more guidance on when this is needed.
*/
this.softDisabled = false;
/**
* Flips the icon if it is in an RTL context at startup.
*/
this.flipIconInRtl = false;
/**
* Sets the underlying `HTMLAnchorElement`'s `href` resource attribute.
*/
this.href = '';
/**
* Sets the underlying `HTMLAnchorElement`'s `target` attribute.
*/
this.target = '';
/**
* The `aria-label` of the button when the button is toggleable and selected.
*/
this.ariaLabelSelected = '';
/**
* When true, the button will toggle between selected and unselected
* states
*/
this.toggle = false;
/**
* Sets the selected state. When false, displays the default icon. When true,
* displays the selected icon, or the default icon If no `slot="selected"`
* icon is provided.
*/
this.selected = false;
/**
* The default behavior of the button. May be "button", "reset", or "submit"
* (default).
*/
this.type = 'submit';
/**
* The value added to a form with the button's name when the button submits a
* form.
*/
this.value = '';
this.flipIcon = isRtl(this, this.flipIconInRtl);
if (!isServer) {
this.addEventListener('click', this.handleClick.bind(this));
}
}
willUpdate() {
// Link buttons cannot be disabled or soft-disabled.
if (this.href) {
this.disabled = false;
this.softDisabled = false;
}
}
render() {
const tag = this.href ? literal `div` : literal `button`;
// Needed for closure conformance
const { ariaLabel, ariaHasPopup, ariaExpanded } = this;
const hasToggledAriaLabel = ariaLabel && this.ariaLabelSelected;
const ariaPressedValue = !this.toggle ? nothing : this.selected;
let ariaLabelValue = nothing;
if (!this.href) {
ariaLabelValue =
hasToggledAriaLabel && this.selected
? this.ariaLabelSelected
: ariaLabel;
}
return staticHtml `<${tag}
class="icon-button ${classMap(this.getRenderClasses())}"
id="button"
aria-label="${ariaLabelValue || nothing}"
aria-haspopup="${(!this.href && ariaHasPopup) || nothing}"
aria-expanded="${(!this.href && ariaExpanded) || nothing}"
aria-pressed="${ariaPressedValue}"
aria-disabled=${(!this.href && this.softDisabled) || nothing}
?disabled="${!this.href && this.disabled}"
@click="${this.handleClickOnChild}">
${this.renderFocusRing()}
${this.renderRipple()}
${!this.selected ? this.renderIcon() : nothing}
${this.selected ? this.renderSelectedIcon() : nothing}
${this.renderTouchTarget()}
${this.href && this.renderLink()}
</${tag}>`;
}
renderLink() {
// Needed for closure conformance
const { ariaLabel } = this;
return html `
<a
class="link"
id="link"
href="${this.href}"
target="${this.target || nothing}"
aria-label="${ariaLabel || nothing}"></a>
`;
}
getRenderClasses() {
return {
'flip-icon': this.flipIcon,
'selected': this.toggle && this.selected,
};
}
renderIcon() {
return html `<span class="icon"><slot></slot></span>`;
}
renderSelectedIcon() {
// Use default slot as fallback to not require specifying multiple icons
return html `<span class="icon icon--selected"
><slot name="selected"><slot></slot></slot
></span>`;
}
renderTouchTarget() {
return html `<span class="touch"></span>`;
}
renderFocusRing() {
// TODO(b/310046938): use the same id for both elements
return html `<md-focus-ring
part="focus-ring"
for=${this.href ? 'link' : 'button'}></md-focus-ring>`;
}
renderRipple() {
const isRippleDisabled = !this.href && (this.disabled || this.softDisabled);
// TODO(b/310046938): use the same id for both elements
return html `<md-ripple
for=${this.href ? 'link' : nothing}
?disabled="${isRippleDisabled}"></md-ripple>`;
}
connectedCallback() {
this.flipIcon = isRtl(this, this.flipIconInRtl);
super.connectedCallback();
}
/** Handles a click on this element. */
handleClick(event) {
// If the icon button is soft-disabled, we need to explicitly prevent the
// click from propagating to other event listeners as well as prevent the
// default action.
if (!this.href && this.softDisabled) {
event.stopImmediatePropagation();
event.preventDefault();
return;
}
}
/**
* Handles a click on the child <div> or <button> element within this
* element's shadow DOM.
*/
async handleClickOnChild(event) {
// Allow the event to propagate
await 0;
if (!this.toggle ||
this.disabled ||
this.softDisabled ||
event.defaultPrevented) {
return;
}
this.selected = !this.selected;
this.dispatchEvent(new InputEvent('input', { bubbles: true, composed: true }));
// Bubbles but does not compose to mimic native browser <input> & <select>
// Additionally, native change event is not an InputEvent.
this.dispatchEvent(new Event('change', { bubbles: true }));
}
}
(() => {
setupFormSubmitter(IconButton);
})();
/** @nocollapse */
IconButton.formAssociated = true;
/** @nocollapse */
IconButton.shadowRootOptions = {
mode: 'open',
delegatesFocus: true,
};
__decorate([
property({ type: Boolean, reflect: true })
], IconButton.prototype, "disabled", void 0);
__decorate([
property({ type: Boolean, attribute: 'soft-disabled', reflect: true })
], IconButton.prototype, "softDisabled", void 0);
__decorate([
property({ type: Boolean, attribute: 'flip-icon-in-rtl' })
], IconButton.prototype, "flipIconInRtl", void 0);
__decorate([
property()
], IconButton.prototype, "href", void 0);
__decorate([
property()
], IconButton.prototype, "target", void 0);
__decorate([
property({ attribute: 'aria-label-selected' })
], IconButton.prototype, "ariaLabelSelected", void 0);
__decorate([
property({ type: Boolean })
], IconButton.prototype, "toggle", void 0);
__decorate([
property({ type: Boolean, reflect: true })
], IconButton.prototype, "selected", void 0);
__decorate([
property()
], IconButton.prototype, "type", void 0);
__decorate([
property({ reflect: true })
], IconButton.prototype, "value", void 0);
__decorate([
state()
], IconButton.prototype, "flipIcon", void 0);
//# sourceMappingURL=icon-button.js.map