react-navigation-stack
Version:
Stack navigator component for React Navigation
126 lines (91 loc) • 5.2 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var React = _interopRequireWildcard(require("react"));
var _reactNative = require("react-native");
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
class KeyboardManager extends React.Component {
constructor(...args) {
super(...args);
_defineProperty(this, "previouslyFocusedTextInput", undefined);
_defineProperty(this, "startTimestamp", 0);
_defineProperty(this, "keyboardTimeout", void 0);
_defineProperty(this, "clearKeyboardTimeout", () => {
if (this.keyboardTimeout !== undefined) {
clearTimeout(this.keyboardTimeout);
this.keyboardTimeout = undefined;
}
});
_defineProperty(this, "handlePageChangeStart", () => {
if (!this.props.enabled) {
return;
}
this.clearKeyboardTimeout(); // @ts-expect-error: blurTextInput accepts both number and ref, but types say only ref
const input = _reactNative.TextInput.State.currentlyFocusedInput ? _reactNative.TextInput.State.currentlyFocusedInput() : _reactNative.TextInput.State.currentlyFocusedField(); // When a page change begins, blur the currently focused input
_reactNative.TextInput.State.blurTextInput(input); // Store the id of this input so we can refocus it if change was cancelled
this.previouslyFocusedTextInput = input; // Store timestamp for touch start
this.startTimestamp = Date.now();
});
_defineProperty(this, "handlePageChangeConfirm", force => {
if (!this.props.enabled) {
return;
}
this.clearKeyboardTimeout();
if (force) {
// Always dismiss input, even if we don't have a ref to it
// We might not have the ref if onPageChangeStart was never called
// This can happen if page change was not from a gesture
_reactNative.Keyboard.dismiss();
} else {
const input = this.previouslyFocusedTextInput;
if (input) {
// Dismiss the keyboard only if an input was a focused before
// This makes sure we don't dismiss input on going back and focusing an input
_reactNative.TextInput.State.blurTextInput(input);
}
} // Cleanup the ID on successful page change
this.previouslyFocusedTextInput = undefined;
});
_defineProperty(this, "handlePageChangeCancel", () => {
if (!this.props.enabled) {
return;
}
this.clearKeyboardTimeout(); // The page didn't change, we should restore the focus of text input
const input = this.previouslyFocusedTextInput;
if (input) {
// If the interaction was super short we should make sure keyboard won't hide again.
// Too fast input refocus will result only in keyboard flashing on screen and hiding right away.
// During first ~100ms keyboard will be dismissed no matter what,
// so we have to make sure it won't interrupt input refocus logic.
// That's why when the interaction is shorter than 100ms we add delay so it won't hide once again.
// Subtracting timestamps makes us sure the delay is executed only when needed.
if (Date.now() - this.startTimestamp < 100) {
this.keyboardTimeout = setTimeout(() => {
_reactNative.TextInput.State.focusTextInput(input);
this.previouslyFocusedTextInput = undefined;
}, 100);
} else {
_reactNative.TextInput.State.focusTextInput(input);
this.previouslyFocusedTextInput = undefined;
}
}
});
}
componentWillUnmount() {
this.clearKeyboardTimeout();
} // Numeric id of the previously focused text input
// When a gesture didn't change the tab, we can restore the focused input with this
render() {
return this.props.children({
onPageChangeStart: this.handlePageChangeStart,
onPageChangeConfirm: this.handlePageChangeConfirm,
onPageChangeCancel: this.handlePageChangeCancel
});
}
}
exports.default = KeyboardManager;
//# sourceMappingURL=KeyboardManager.js.map