shoelace/src/components/mutation-observer/mutation-observer.ts

122 wiersze
3.9 KiB
TypeScript
Czysty Zwykły widok Historia

2021-09-30 22:32:59 +00:00
import { customElement, property } from 'lit/decorators.js';
2023-01-13 20:43:55 +00:00
import { html } from 'lit';
2022-03-24 12:01:09 +00:00
import { watch } from '../../internal/watch';
2023-01-13 20:43:55 +00:00
import ShoelaceElement from '../../internal/shoelace-element';
2021-09-30 22:32:59 +00:00
import styles from './mutation-observer.styles';
import type { CSSResultGroup } from 'lit';
2021-09-30 22:32:59 +00:00
/**
Enrich components `@summary` with description from docs (#962) * keep header styles with repositioned description text * `animated-image` move description to component * code style * `avatar` add summary from docs * `badge` add summary from docs * `breadcrumb` add summary from docs * `button` add summary from docs * lead sentence is now part of the header * `button-group` add summary from docs * `card` add summary from docs * `checkbox` add summary from docs * `color-picker` add summary from docs * `details` add summary from docs * `dialog` add summary from docs * `divider` add summary from docs * `drawer` add summary from docs * `dropdown` add summary from docs * `format-bytes` add summary from docs * `format-date` add summary from docs * `format-number` add summary from docs * `icon` add summary from docs * `icon-button` add summary from docs * `image-comparer` add summary from docs * `include` add summary from docs * `input` add summary from docs * `menu` add summary from docs * `menu-item` add summary from docs * `menu-label` add summary from docs * `popup` add summary from docs * `progressbar` add summary from docs * `progress-ring` add summary from docs * `radio` add summary from docs * `radio-button` add summary from docs * `range` add summary from docs * `rating` add summary from docs * `relative-time` add summary from docs * `select` add summary from docs * `skeleton` add summary from docs * `spinner` add summary from docs * `split-panel` add summary from docs * `switch` add summary from docs * `tab-group` add summary from docs * `tag` add summary from docs * `textarea` add summary from docs * `tooltip` add summary from docs * `visually-hidden` add summary from docs * `animation` add summary from docs * `breadcrumb-item` add summary from docs * `mutation-observer` add summary from docs * `radio-group` add summary from docs * `resize-observer` add summary from docs * `tab` add summary from docs * `tab-panel` add summary from docs * `tree` add summary from docs * `tree-item` add summary from docs * remove `title` for further usage of `Sl` classnames in docs * revert: use markdown parser for component summary
2022-10-21 13:56:35 +00:00
* @summary The Mutation Observer component offers a thin, declarative interface to the [`MutationObserver API`](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver).
2023-01-12 15:26:25 +00:00
* @documentation https://shoelace.style/components/mutation-observer
2021-11-18 22:46:37 +00:00
* @status stable
2023-01-12 15:26:25 +00:00
* @since 2.0
2021-09-30 22:32:59 +00:00
*
2022-12-06 16:18:14 +00:00
* @event {{ mutationList: MutationRecord[] }} sl-mutation - Emitted when a mutation occurs.
2021-09-30 22:32:59 +00:00
*
* @slot - The content to watch for mutations.
*/
@customElement('sl-mutation-observer')
2022-08-17 15:37:37 +00:00
export default class SlMutationObserver extends ShoelaceElement {
static styles: CSSResultGroup = styles;
2021-09-30 22:32:59 +00:00
private mutationObserver: MutationObserver;
/**
2021-11-17 14:26:22 +00:00
* Watches for changes to attributes. To watch only specific attributes, separate them by a space, e.g.
2022-12-06 16:18:14 +00:00
* `attr="class id title"`. To watch all attributes, use `*`.
2021-09-30 22:32:59 +00:00
*/
@property({ reflect: true }) attr: string;
/** Indicates whether or not the attribute's previous value should be recorded when monitoring changes. */
@property({ attribute: 'attr-old-value', type: Boolean, reflect: true }) attrOldValue = false;
/** Watches for changes to the character data contained within the node. */
@property({ attribute: 'char-data', type: Boolean, reflect: true }) charData = false;
/** Indicates whether or not the previous value of the node's text should be recorded. */
@property({ attribute: 'char-data-old-value', type: Boolean, reflect: true }) charDataOldValue = false;
/** Watches for the addition or removal of new child nodes. */
@property({ attribute: 'child-list', type: Boolean, reflect: true }) childList = false;
/** Disables the observer. */
@property({ type: Boolean, reflect: true }) disabled = false;
connectedCallback() {
super.connectedCallback();
this.handleMutation = this.handleMutation.bind(this);
2021-09-30 22:32:59 +00:00
this.mutationObserver = new MutationObserver(this.handleMutation);
2021-10-07 13:30:47 +00:00
if (!this.disabled) {
this.startObserver();
}
2021-09-30 22:32:59 +00:00
}
disconnectedCallback() {
this.stopObserver();
}
2023-01-03 20:04:07 +00:00
private handleMutation(mutationList: MutationRecord[]) {
2022-09-16 20:21:40 +00:00
this.emit('sl-mutation', {
2021-09-30 22:32:59 +00:00
detail: { mutationList }
});
}
2021-09-30 22:32:59 +00:00
2023-01-03 20:04:07 +00:00
private startObserver() {
2021-11-05 13:22:59 +00:00
const observeAttributes = typeof this.attr === 'string' && this.attr.length > 0;
const attributeFilter = observeAttributes && this.attr !== '*' ? this.attr.split(' ') : undefined;
2021-09-30 22:32:59 +00:00
try {
this.mutationObserver.observe(this, {
subtree: true,
childList: this.childList,
2021-11-05 13:22:59 +00:00
attributes: observeAttributes,
attributeFilter,
2021-09-30 22:32:59 +00:00
attributeOldValue: this.attrOldValue,
characterData: this.charData,
characterDataOldValue: this.charDataOldValue
});
} catch {
//
// A mutation observer was created without one of the required attributes: attr, char-data, or child-list. The
// browser will normally throw an error, but we'll suppress that so it doesn't appear as attributes are added
// and removed.
//
}
}
2023-01-03 20:04:07 +00:00
private stopObserver() {
2021-09-30 22:32:59 +00:00
this.mutationObserver.disconnect();
}
2023-01-03 20:04:07 +00:00
@watch('disabled')
handleDisabledChange() {
if (this.disabled) {
this.stopObserver();
} else {
this.startObserver();
}
}
@watch('attr', { waitUntilFirstUpdate: true })
@watch('attr-old-value', { waitUntilFirstUpdate: true })
@watch('char-data', { waitUntilFirstUpdate: true })
@watch('char-data-old-value', { waitUntilFirstUpdate: true })
@watch('childList', { waitUntilFirstUpdate: true })
handleChange() {
this.stopObserver();
this.startObserver();
}
2021-09-30 22:32:59 +00:00
render() {
return html` <slot></slot> `;
}
}
declare global {
interface HTMLElementTagNameMap {
'sl-mutation-observer': SlMutationObserver;
}
}