react-native-macos/Libraries/Components/TextInput/TextInputState.js

60 строки
1.6 KiB
JavaScript
Исходник Обычный вид История

2015-01-30 04:10:49 +03:00
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
2015-01-30 04:10:49 +03:00
*
* @providesModule TextInputState
* @flow
2015-01-30 04:10:49 +03:00
*
* This class is responsible for coordinating the "focused"
* state for TextInputs. All calls relating to the keyboard
* should be funneled through here
*/
'use strict';
var RCTUIManager = require('NativeModules').UIManager;
2015-01-30 04:10:49 +03:00
var TextInputState = {
/**
* Internal state
*/
_currentlyFocusedID: (null: ?string),
2015-01-30 04:10:49 +03:00
/**
* Returns the ID of the currently focused text field, if one exists
* If no text field is focused it returns null
*/
currentlyFocusedField: function(): ?string {
2015-01-30 04:10:49 +03:00
return this._currentlyFocusedID;
},
/**
* @param {string} TextInputID id of the text field to focus
* Focuses the specified text field
* noop if the text field was already focused
*/
focusTextInput: function(textFieldID: string) {
if (this._currentlyFocusedID !== textFieldID && textFieldID !== null) {
2015-01-30 04:10:49 +03:00
this._currentlyFocusedID = textFieldID;
RCTUIManager.focus(textFieldID);
2015-01-30 04:10:49 +03:00
}
},
/**
* @param {string} textFieldID id of the text field to focus
* Unfocuses the specified text field
* noop if it wasn't focused
*/
blurTextInput: function(textFieldID: string) {
if (this._currentlyFocusedID === textFieldID && textFieldID !== null) {
2015-01-30 04:10:49 +03:00
this._currentlyFocusedID = null;
RCTUIManager.blur(textFieldID);
2015-01-30 04:10:49 +03:00
}
}
};
module.exports = TextInputState;