Elizabeth Mitchell e7bc633e18 chore(behaviors): add ElementInternals mixin
PiperOrigin-RevId: 576937116
2023-10-26 11:31:33 -07:00

223 lines
6.1 KiB
TypeScript

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import '../../focus/md-focus-ring.js';
import '../../ripple/ripple.js';
import {html, 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 {ARIAMixinStrict} from '../../internal/aria/aria.js';
import {requestUpdateOnAriaChange} from '../../internal/aria/delegate.js';
import {
FormSubmitter,
FormSubmitterType,
setupFormSubmitter,
} from '../../internal/controller/form-submitter.js';
import {isRtl} from '../../internal/controller/is-rtl.js';
import {
internals,
mixinElementInternals,
} from '../../labs/behaviors/element-internals.js';
type LinkTarget = '_blank' | '_parent' | '_self' | '_top';
// Separate variable needed for closure.
const iconButtonBaseClass = mixinElementInternals(LitElement);
// tslint:disable-next-line:enforce-comments-on-exported-symbols
export class IconButton extends iconButtonBaseClass implements FormSubmitter {
static {
requestUpdateOnAriaChange(IconButton);
setupFormSubmitter(IconButton);
}
/** @nocollapse */
static readonly formAssociated = true;
/** @nocollapse */
static override shadowRootOptions: ShadowRootInit = {
mode: 'open',
delegatesFocus: true,
};
/**
* Disables the icon button and makes it non-interactive.
*/
@property({type: Boolean, reflect: true}) disabled = false;
/**
* Flips the icon if it is in an RTL context at startup.
*/
@property({type: Boolean, attribute: 'flip-icon-in-rtl'})
flipIconInRtl = false;
/**
* Sets the underlying `HTMLAnchorElement`'s `href` resource attribute.
*/
@property() href = '';
/**
* Sets the underlying `HTMLAnchorElement`'s `target` attribute.
*/
@property() target: LinkTarget | '' = '';
/**
* The `aria-label` of the button when the button is toggleable and selected.
*/
@property({attribute: 'aria-label-selected'}) ariaLabelSelected = '';
/**
* When true, the button will toggle between selected and unselected
* states
*/
@property({type: Boolean}) 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.
*/
@property({type: Boolean, reflect: true}) selected = false;
@property() type: FormSubmitterType = 'submit';
@property() value = '';
get name() {
return this.getAttribute('name') ?? '';
}
set name(name: string) {
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;
}
@state() private flipIcon = isRtl(this, this.flipIconInRtl);
/**
* Link buttons cannot be disabled.
*/
protected override willUpdate() {
if (this.href) {
this.disabled = false;
}
}
protected override render() {
const tag = this.href ? literal`div` : literal`button`;
// Needed for closure conformance
const {ariaLabel, ariaHasPopup, ariaExpanded} = this as ARIAMixinStrict;
const hasToggledAriaLabel = ariaLabel && this.ariaLabelSelected;
const ariaPressedValue = !this.toggle ? nothing : this.selected;
let ariaLabelValue: string | null | typeof nothing = 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}"
?disabled="${!this.href && this.disabled}"
@click="${this.handleClick}">
${this.renderFocusRing()}
${this.renderRipple()}
${!this.selected ? this.renderIcon() : nothing}
${this.selected ? this.renderSelectedIcon() : nothing}
${this.renderTouchTarget()}
${this.href && this.renderLink()}
</${tag}>`;
}
private renderLink() {
// Needed for closure conformance
const {ariaLabel} = this as ARIAMixinStrict;
return html`
<a
class="link"
id="link"
href="${this.href}"
target="${this.target || nothing}"
aria-label="${ariaLabel || nothing}"></a>
`;
}
protected getRenderClasses() {
return {
'flip-icon': this.flipIcon,
'selected': this.toggle && this.selected,
};
}
private renderIcon() {
return html`<span class="icon"><slot></slot></span>`;
}
private 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>`;
}
private renderTouchTarget() {
return html`<span class="touch"></span>`;
}
private renderFocusRing() {
return html`<md-focus-ring
part="focus-ring"
for=${this.href ? 'link' : 'button'}></md-focus-ring>`;
}
private renderRipple() {
return html`<md-ripple
for=${this.href ? 'link' : nothing}
?disabled="${!this.href && this.disabled}"></md-ripple>`;
}
override connectedCallback() {
this.flipIcon = isRtl(this, this.flipIconInRtl);
super.connectedCallback();
}
private async handleClick(event: Event) {
// Allow the event to propagate
await 0;
if (!this.toggle || this.disabled || 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}));
}
}