first commit
This commit is contained in:
127
node_modules/lit-html/node/development/directives/ref.js
generated
vendored
Normal file
127
node_modules/lit-html/node/development/directives/ref.js
generated
vendored
Normal file
@@ -0,0 +1,127 @@
|
||||
import { nothing } from '../lit-html.js';
|
||||
import { AsyncDirective } from '../async-directive.js';
|
||||
import { directive } from '../directive.js';
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
/**
|
||||
* Creates a new Ref object, which is container for a reference to an element.
|
||||
*/
|
||||
const createRef = () => new Ref();
|
||||
/**
|
||||
* An object that holds a ref value.
|
||||
*/
|
||||
class Ref {
|
||||
}
|
||||
// When callbacks are used for refs, this map tracks the last value the callback
|
||||
// was called with, for ensuring a directive doesn't clear the ref if the ref
|
||||
// has already been rendered to a new spot. It is double-keyed on both the
|
||||
// context (`options.host`) and the callback, since we auto-bind class methods
|
||||
// to `options.host`.
|
||||
const lastElementForContextAndCallback = new WeakMap();
|
||||
class RefDirective extends AsyncDirective {
|
||||
render(_ref) {
|
||||
return nothing;
|
||||
}
|
||||
update(part, [ref]) {
|
||||
var _a;
|
||||
const refChanged = ref !== this._ref;
|
||||
if (refChanged && this._ref !== undefined) {
|
||||
// The ref passed to the directive has changed;
|
||||
// unset the previous ref's value
|
||||
this._updateRefValue(undefined);
|
||||
}
|
||||
if (refChanged || this._lastElementForRef !== this._element) {
|
||||
// We either got a new ref or this is the first render;
|
||||
// store the ref/element & update the ref value
|
||||
this._ref = ref;
|
||||
this._context = (_a = part.options) === null || _a === void 0 ? void 0 : _a.host;
|
||||
this._updateRefValue((this._element = part.element));
|
||||
}
|
||||
return nothing;
|
||||
}
|
||||
_updateRefValue(element) {
|
||||
var _a;
|
||||
if (typeof this._ref === 'function') {
|
||||
// If the current ref was called with a previous value, call with
|
||||
// `undefined`; We do this to ensure callbacks are called in a consistent
|
||||
// way regardless of whether a ref might be moving up in the tree (in
|
||||
// which case it would otherwise be called with the new value before the
|
||||
// previous one unsets it) and down in the tree (where it would be unset
|
||||
// before being set). Note that element lookup is keyed by
|
||||
// both the context and the callback, since we allow passing unbound
|
||||
// functions that are called on options.host, and we want to treat
|
||||
// these as unique "instances" of a function.
|
||||
const context = (_a = this._context) !== null && _a !== void 0 ? _a : globalThis;
|
||||
let lastElementForCallback = lastElementForContextAndCallback.get(context);
|
||||
if (lastElementForCallback === undefined) {
|
||||
lastElementForCallback = new WeakMap();
|
||||
lastElementForContextAndCallback.set(context, lastElementForCallback);
|
||||
}
|
||||
if (lastElementForCallback.get(this._ref) !== undefined) {
|
||||
this._ref.call(this._context, undefined);
|
||||
}
|
||||
lastElementForCallback.set(this._ref, element);
|
||||
// Call the ref with the new element value
|
||||
if (element !== undefined) {
|
||||
this._ref.call(this._context, element);
|
||||
}
|
||||
}
|
||||
else {
|
||||
this._ref.value = element;
|
||||
}
|
||||
}
|
||||
get _lastElementForRef() {
|
||||
var _a, _b, _c;
|
||||
return typeof this._ref === 'function'
|
||||
? (_b = lastElementForContextAndCallback
|
||||
.get((_a = this._context) !== null && _a !== void 0 ? _a : globalThis)) === null || _b === void 0 ? void 0 : _b.get(this._ref)
|
||||
: (_c = this._ref) === null || _c === void 0 ? void 0 : _c.value;
|
||||
}
|
||||
disconnected() {
|
||||
// Only clear the box if our element is still the one in it (i.e. another
|
||||
// directive instance hasn't rendered its element to it before us); that
|
||||
// only happens in the event of the directive being cleared (not via manual
|
||||
// disconnection)
|
||||
if (this._lastElementForRef === this._element) {
|
||||
this._updateRefValue(undefined);
|
||||
}
|
||||
}
|
||||
reconnected() {
|
||||
// If we were manually disconnected, we can safely put our element back in
|
||||
// the box, since no rendering could have occurred to change its state
|
||||
this._updateRefValue(this._element);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Sets the value of a Ref object or calls a ref callback with the element it's
|
||||
* bound to.
|
||||
*
|
||||
* A Ref object acts as a container for a reference to an element. A ref
|
||||
* callback is a function that takes an element as its only argument.
|
||||
*
|
||||
* The ref directive sets the value of the Ref object or calls the ref callback
|
||||
* during rendering, if the referenced element changed.
|
||||
*
|
||||
* Note: If a ref callback is rendered to a different element position or is
|
||||
* removed in a subsequent render, it will first be called with `undefined`,
|
||||
* followed by another call with the new element it was rendered to (if any).
|
||||
*
|
||||
* ```js
|
||||
* // Using Ref object
|
||||
* const inputRef = createRef();
|
||||
* render(html`<input ${ref(inputRef)}>`, container);
|
||||
* inputRef.value.focus();
|
||||
*
|
||||
* // Using callback
|
||||
* const callback = (inputElement) => inputElement.focus();
|
||||
* render(html`<input ${ref(callback)}>`, container);
|
||||
* ```
|
||||
*/
|
||||
const ref = directive(RefDirective);
|
||||
|
||||
export { createRef, ref };
|
||||
//# sourceMappingURL=ref.js.map
|
Reference in New Issue
Block a user