UNPKG

lisn.js

Version:

Simply handle user gestures and actions. Includes widgets.

87 lines (82 loc) 2.46 kB
/** * @module Widgets */ import * as MH from "../globals/minification-helpers.js"; import { validateNumber } from "../utils/validation.js"; import { SizeWatcher } from "../watchers/size-watcher.js"; import { Widget, registerWidget } from "./widget.js"; /** * This is a simple wrapper around the {@link SizeWatcher}. If you are using * the JavaScript API, you should use the {@link SizeWatcher} directly. The * purpose of this widget is to expose the watcher's ability to track size * and set relevant CSS properties via the HTML API. See * {@link SizeWatcher.trackSize}. * * ----- * * To use with auto-widgets (HTML API) (see * {@link Settings.settings.autoWidgets | settings.autoWidgets}), the following * CSS classes or data attributes are recognized: * - `lisn-track-size` class or `data-lisn-track-size` attribute set on * the element that constitutes the widget. * * This widget does not support configuration and uses the default * {@link SizeWatcher} configuration except for resize threshold equal to 0. * * @example * This will track the size of this element and set the relevant CSS * properties. It will use the default {@link SizeWatcher} options and resize * threshold of 0. * * ```html * <div class="lisn-track-size"></div> * ``` * * @example * As above but with custom options * * ```html * <div data-lisn-track-size="threshold=0 | debounce-window=0"></div> * ``` */ export class TrackSize extends Widget { static get(element) { const instance = super.get(element, DUMMY_ID); if (MH.isInstanceOf(instance, TrackSize)) { return instance; } return null; } static register() { registerWidget(WIDGET_NAME, (element, config) => { if (!TrackSize.get(element)) { return new TrackSize(element, config); } return null; }, configValidator); } constructor(element, config) { super(element, { id: DUMMY_ID }); SizeWatcher.reuse().trackSize(null, MH.assign({ target: element }, config)); this.onDestroy(() => SizeWatcher.reuse().noTrackSize(null, element)); } } /** * @interface * * @since v1.2.0 */ // -------------------- const WIDGET_NAME = "track-size"; // Only one TrackSize widget per element is allowed, but Widget requires a // non-blank ID. const DUMMY_ID = WIDGET_NAME; const configValidator = { threshold: validateNumber, debounceWindow: validateNumber }; //# sourceMappingURL=track-size.js.map