mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
51af7cdcde
Summary: changelog: [internal] Enable two new clang tidy checks: - modernize-concat-nested-namespaces - google-build-using-namespace jest_e2e[run_all_tests] Reviewed By: rshest Differential Revision: D40020646 fbshipit-source-id: f3be80b5f829dd0ba376bdd70ed13332e114d48a
141 lines
4.0 KiB
C++
141 lines
4.0 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include "TextInputEventEmitter.h"
|
|
|
|
namespace facebook::react {
|
|
|
|
static jsi::Value textInputMetricsPayload(
|
|
jsi::Runtime &runtime,
|
|
TextInputMetrics const &textInputMetrics) {
|
|
auto payload = jsi::Object(runtime);
|
|
|
|
payload.setProperty(
|
|
runtime,
|
|
"text",
|
|
jsi::String::createFromUtf8(runtime, textInputMetrics.text));
|
|
|
|
payload.setProperty(runtime, "eventCount", textInputMetrics.eventCount);
|
|
|
|
{
|
|
auto selection = jsi::Object(runtime);
|
|
selection.setProperty(
|
|
runtime, "start", textInputMetrics.selectionRange.location);
|
|
selection.setProperty(
|
|
runtime,
|
|
"end",
|
|
textInputMetrics.selectionRange.location +
|
|
textInputMetrics.selectionRange.length);
|
|
payload.setProperty(runtime, "selection", selection);
|
|
}
|
|
|
|
return payload;
|
|
};
|
|
|
|
static jsi::Value keyPressMetricsPayload(
|
|
jsi::Runtime &runtime,
|
|
KeyPressMetrics const &keyPressMetrics) {
|
|
auto payload = jsi::Object(runtime);
|
|
payload.setProperty(runtime, "eventCount", keyPressMetrics.eventCount);
|
|
|
|
std::string key;
|
|
if (keyPressMetrics.text.empty()) {
|
|
key = "Backspace";
|
|
} else {
|
|
if (keyPressMetrics.text.front() == '\n') {
|
|
key = "Enter";
|
|
} else if (keyPressMetrics.text.front() == '\t') {
|
|
key = "Tab";
|
|
} else {
|
|
key = keyPressMetrics.text.front();
|
|
}
|
|
}
|
|
payload.setProperty(
|
|
runtime, "key", jsi::String::createFromUtf8(runtime, key));
|
|
return payload;
|
|
};
|
|
|
|
void TextInputEventEmitter::onFocus(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent("focus", textInputMetrics);
|
|
}
|
|
|
|
void TextInputEventEmitter::onBlur(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent("blur", textInputMetrics);
|
|
}
|
|
|
|
void TextInputEventEmitter::onChange(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent("change", textInputMetrics);
|
|
}
|
|
|
|
void TextInputEventEmitter::onChangeSync(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent(
|
|
"changeSync", textInputMetrics, EventPriority::SynchronousBatched);
|
|
}
|
|
|
|
void TextInputEventEmitter::onContentSizeChange(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent("contentSizeChange", textInputMetrics);
|
|
}
|
|
|
|
void TextInputEventEmitter::onSelectionChange(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent("selectionChange", textInputMetrics);
|
|
}
|
|
|
|
void TextInputEventEmitter::onEndEditing(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent("endEditing", textInputMetrics);
|
|
}
|
|
|
|
void TextInputEventEmitter::onSubmitEditing(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent("submitEditing", textInputMetrics);
|
|
}
|
|
|
|
void TextInputEventEmitter::onKeyPress(
|
|
KeyPressMetrics const &keyPressMetrics) const {
|
|
dispatchEvent(
|
|
"keyPress",
|
|
[keyPressMetrics](jsi::Runtime &runtime) {
|
|
return keyPressMetricsPayload(runtime, keyPressMetrics);
|
|
},
|
|
EventPriority::AsynchronousBatched);
|
|
}
|
|
|
|
void TextInputEventEmitter::onKeyPressSync(
|
|
KeyPressMetrics const &keyPressMetrics) const {
|
|
dispatchEvent(
|
|
"keyPressSync",
|
|
[keyPressMetrics](jsi::Runtime &runtime) {
|
|
return keyPressMetricsPayload(runtime, keyPressMetrics);
|
|
},
|
|
EventPriority::SynchronousBatched);
|
|
}
|
|
|
|
void TextInputEventEmitter::onScroll(
|
|
TextInputMetrics const &textInputMetrics) const {
|
|
dispatchTextInputEvent("scroll", textInputMetrics);
|
|
}
|
|
|
|
void TextInputEventEmitter::dispatchTextInputEvent(
|
|
std::string const &name,
|
|
TextInputMetrics const &textInputMetrics,
|
|
EventPriority priority) const {
|
|
dispatchEvent(
|
|
name,
|
|
[textInputMetrics](jsi::Runtime &runtime) {
|
|
return textInputMetricsPayload(runtime, textInputMetrics);
|
|
},
|
|
priority);
|
|
}
|
|
|
|
} // namespace facebook::react
|