mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
This is mainly renaming some stuff. The behavior change is hasOwnProperty to nullish check. I had a bigger refactor that was a dead-end but might as well land this part and see if I can pick it up later.
156 lines
3.7 KiB
JavaScript
156 lines
3.7 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
import {checkFormFieldValueStringCoercion} from 'shared/CheckStringCoercion';
|
|
|
|
type ValueTracker = {
|
|
getValue(): string,
|
|
setValue(value: string): void,
|
|
stopTracking(): void,
|
|
};
|
|
interface ElementWithValueTracker extends HTMLInputElement {
|
|
_valueTracker?: ?ValueTracker;
|
|
}
|
|
|
|
function isCheckable(elem: HTMLInputElement) {
|
|
const type = elem.type;
|
|
const nodeName = elem.nodeName;
|
|
return (
|
|
nodeName &&
|
|
nodeName.toLowerCase() === 'input' &&
|
|
(type === 'checkbox' || type === 'radio')
|
|
);
|
|
}
|
|
|
|
function getTracker(node: ElementWithValueTracker) {
|
|
return node._valueTracker;
|
|
}
|
|
|
|
function detachTracker(node: ElementWithValueTracker) {
|
|
node._valueTracker = null;
|
|
}
|
|
|
|
function getValueFromNode(node: HTMLInputElement): string {
|
|
let value = '';
|
|
if (!node) {
|
|
return value;
|
|
}
|
|
|
|
if (isCheckable(node)) {
|
|
value = node.checked ? 'true' : 'false';
|
|
} else {
|
|
value = node.value;
|
|
}
|
|
|
|
return value;
|
|
}
|
|
|
|
function trackValueOnNode(node: any): ?ValueTracker {
|
|
const valueField = isCheckable(node) ? 'checked' : 'value';
|
|
const descriptor = Object.getOwnPropertyDescriptor(
|
|
node.constructor.prototype,
|
|
valueField,
|
|
);
|
|
|
|
if (__DEV__) {
|
|
checkFormFieldValueStringCoercion(node[valueField]);
|
|
}
|
|
let currentValue = '' + node[valueField];
|
|
|
|
// if someone has already defined a value or Safari, then bail
|
|
// and don't track value will cause over reporting of changes,
|
|
// but it's better then a hard failure
|
|
// (needed for certain tests that spyOn input values and Safari)
|
|
if (
|
|
node.hasOwnProperty(valueField) ||
|
|
typeof descriptor === 'undefined' ||
|
|
typeof descriptor.get !== 'function' ||
|
|
typeof descriptor.set !== 'function'
|
|
) {
|
|
return;
|
|
}
|
|
const {get, set} = descriptor;
|
|
Object.defineProperty(node, valueField, {
|
|
configurable: true,
|
|
// $FlowFixMe[missing-this-annot]
|
|
get: function () {
|
|
return get.call(this);
|
|
},
|
|
// $FlowFixMe[missing-local-annot]
|
|
// $FlowFixMe[missing-this-annot]
|
|
set: function (value) {
|
|
if (__DEV__) {
|
|
checkFormFieldValueStringCoercion(value);
|
|
}
|
|
currentValue = '' + value;
|
|
set.call(this, value);
|
|
},
|
|
});
|
|
// We could've passed this the first time
|
|
// but it triggers a bug in IE11 and Edge 14/15.
|
|
// Calling defineProperty() again should be equivalent.
|
|
// https://github.com/facebook/react/issues/11768
|
|
Object.defineProperty(node, valueField, {
|
|
enumerable: descriptor.enumerable,
|
|
});
|
|
|
|
const tracker = {
|
|
getValue() {
|
|
return currentValue;
|
|
},
|
|
setValue(value: string) {
|
|
if (__DEV__) {
|
|
checkFormFieldValueStringCoercion(value);
|
|
}
|
|
currentValue = '' + value;
|
|
},
|
|
stopTracking() {
|
|
detachTracker(node);
|
|
delete node[valueField];
|
|
},
|
|
};
|
|
return tracker;
|
|
}
|
|
|
|
export function track(node: ElementWithValueTracker) {
|
|
if (getTracker(node)) {
|
|
return;
|
|
}
|
|
|
|
node._valueTracker = trackValueOnNode(node);
|
|
}
|
|
|
|
export function updateValueIfChanged(node: ElementWithValueTracker): boolean {
|
|
if (!node) {
|
|
return false;
|
|
}
|
|
|
|
const tracker = getTracker(node);
|
|
// if there is no tracker at this point it's unlikely
|
|
// that trying again will succeed
|
|
if (!tracker) {
|
|
return true;
|
|
}
|
|
|
|
const lastValue = tracker.getValue();
|
|
const nextValue = getValueFromNode(node);
|
|
if (nextValue !== lastValue) {
|
|
tracker.setValue(nextValue);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
export function stopTracking(node: ElementWithValueTracker) {
|
|
const tracker = getTracker(node);
|
|
if (tracker) {
|
|
tracker.stopTracking();
|
|
}
|
|
}
|