@smui/snackbar
Version:
Svelte Material UI - Snackbar
211 lines (180 loc) • 6.71 kB
text/typescript
/**
* @license
* Copyright 2018 Google Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
import { MDCComponent } from '@smui/common/base/component';
import type { SpecificEventListener } from '@smui/common/base/types';
import { closest } from '@smui/common/dom/ponyfill';
import type { MDCSnackbarAdapter } from './adapter';
import { strings } from './constants';
import { MDCSnackbarFoundation } from './foundation';
import type {
MDCSnackbarAnnouncer,
MDCSnackbarAnnouncerFactory,
MDCSnackbarCloseEventDetail,
} from './types';
import * as util from './util';
const {
SURFACE_SELECTOR,
LABEL_SELECTOR,
ACTION_SELECTOR,
DISMISS_SELECTOR,
OPENING_EVENT,
OPENED_EVENT,
CLOSING_EVENT,
CLOSED_EVENT,
} = strings;
/** MDC Snackbar */
export class MDCSnackbar extends MDCComponent<MDCSnackbarFoundation> {
static override attachTo(root: HTMLElement) {
return new MDCSnackbar(root);
}
private announce!: MDCSnackbarAnnouncer; // assigned in initialize()
private actionEl!: HTMLElement; // assigned in initialSyncWithDOM()
private labelEl!: HTMLElement; // assigned in initialSyncWithDOM()
private surfaceEl!: HTMLElement; // assigned in initialSyncWithDOM()
private handleKeyDown!: SpecificEventListener<'keydown'>; // assigned in initialSyncWithDOM()
private handleSurfaceClick!: SpecificEventListener<'click'>; // assigned in initialSyncWithDOM()
override initialize(
announcerFactory: MDCSnackbarAnnouncerFactory = () => util.announce,
) {
this.announce = announcerFactory();
}
override initialSyncWithDOM() {
this.surfaceEl = this.root.querySelector<HTMLElement>(SURFACE_SELECTOR)!;
this.labelEl = this.root.querySelector<HTMLElement>(LABEL_SELECTOR)!;
this.actionEl = this.root.querySelector<HTMLElement>(ACTION_SELECTOR)!;
this.handleKeyDown = (event) => {
this.foundation.handleKeyDown(event);
};
this.handleSurfaceClick = (event) => {
const target = event.target as Element;
if (this.isActionButton(target)) {
this.foundation.handleActionButtonClick(event);
} else if (this.isActionIcon(target)) {
this.foundation.handleActionIconClick(event);
}
};
this.registerKeyDownHandler(this.handleKeyDown);
this.registerSurfaceClickHandler(this.handleSurfaceClick);
}
override destroy() {
super.destroy();
this.deregisterKeyDownHandler(this.handleKeyDown);
this.deregisterSurfaceClickHandler(this.handleSurfaceClick);
}
open() {
this.foundation.open();
}
/**
* @param reason Why the snackbar was closed. Value will be passed to
* CLOSING_EVENT and CLOSED_EVENT via the `event.detail.reason` property.
* Standard values are REASON_ACTION and REASON_DISMISS, but custom
* client-specific values may also be used if desired.
*/
close(reason = '') {
this.foundation.close(reason);
}
override getDefaultFoundation() {
// DO NOT INLINE this variable. For backward compatibility, foundations take
// a Partial<MDCFooAdapter>. To ensure we don't accidentally omit any
// methods, we need a separate, strongly typed adapter variable.
const adapter: MDCSnackbarAdapter = {
addClass: (className) => {
this.root.classList.add(className);
},
announce: () => {
this.announce(this.labelEl);
},
notifyClosed: (reason) => {
this.emit<MDCSnackbarCloseEventDetail>(
CLOSED_EVENT,
reason ? { reason } : {},
);
},
notifyClosing: (reason) => {
this.emit<MDCSnackbarCloseEventDetail>(
CLOSING_EVENT,
reason ? { reason } : {},
);
},
notifyOpened: () => {
this.emit(OPENED_EVENT, {});
},
notifyOpening: () => {
this.emit(OPENING_EVENT, {});
},
removeClass: (className) => {
this.root.classList.remove(className);
},
};
return new MDCSnackbarFoundation(adapter);
}
get timeoutMs(): number {
return this.foundation.getTimeoutMs();
}
set timeoutMs(timeoutMs: number) {
this.foundation.setTimeoutMs(timeoutMs);
}
get closeOnEscape(): boolean {
return this.foundation.getCloseOnEscape();
}
set closeOnEscape(closeOnEscape: boolean) {
this.foundation.setCloseOnEscape(closeOnEscape);
}
get isOpen(): boolean {
return this.foundation.isOpen();
}
get labelText(): string {
// This property only returns null if the node is a document, DOCTYPE,
// or notation. On Element nodes, it always returns a string.
return this.labelEl.textContent!;
}
set labelText(labelText: string) {
this.labelEl.textContent = labelText;
}
get actionButtonText(): string {
return this.actionEl.textContent!;
}
set actionButtonText(actionButtonText: string) {
this.actionEl.textContent = actionButtonText;
}
private registerKeyDownHandler(handler: SpecificEventListener<'keydown'>) {
this.listen('keydown', handler);
}
private deregisterKeyDownHandler(handler: SpecificEventListener<'keydown'>) {
this.unlisten('keydown', handler);
}
private registerSurfaceClickHandler(handler: SpecificEventListener<'click'>) {
this.surfaceEl.addEventListener('click', handler as EventListener);
}
private deregisterSurfaceClickHandler(
handler: SpecificEventListener<'click'>,
) {
this.surfaceEl.removeEventListener('click', handler as EventListener);
}
private isActionButton(target: Element): boolean {
return Boolean(closest(target, ACTION_SELECTOR));
}
private isActionIcon(target: Element): boolean {
return Boolean(closest(target, DISMISS_SELECTOR));
}
}