mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
da72b5d02c
Summary: Parses a set of props previously missing from C++ representation (they weren't required for iOS and core processing before). Changelog: [Internal] - Added missing fields for Android to C++ view props Reviewed By: sammy-SC Differential Revision: D33797489 fbshipit-source-id: 1625baa0c1a592fcef409a5f206496dff0368912
301 lines
8.1 KiB
C++
301 lines
8.1 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <folly/dynamic.h>
|
|
#include <glog/logging.h>
|
|
#include <react/debug/react_native_assert.h>
|
|
#include <react/renderer/components/view/AccessibilityPrimitives.h>
|
|
#include <react/renderer/core/PropsParserContext.h>
|
|
#include <react/renderer/core/propsConversions.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
inline void fromString(const std::string &string, AccessibilityTraits &result) {
|
|
if (string == "none") {
|
|
result = AccessibilityTraits::None;
|
|
return;
|
|
}
|
|
if (string == "button" || string == "togglebutton") {
|
|
result = AccessibilityTraits::Button;
|
|
return;
|
|
}
|
|
if (string == "link") {
|
|
result = AccessibilityTraits::Link;
|
|
return;
|
|
}
|
|
if (string == "image") {
|
|
result = AccessibilityTraits::Image;
|
|
return;
|
|
}
|
|
if (string == "selected") {
|
|
result = AccessibilityTraits::Selected;
|
|
return;
|
|
}
|
|
if (string == "plays") {
|
|
result = AccessibilityTraits::PlaysSound;
|
|
return;
|
|
}
|
|
if (string == "keyboardkey" || string == "key") {
|
|
result = AccessibilityTraits::KeyboardKey;
|
|
return;
|
|
}
|
|
if (string == "text") {
|
|
result = AccessibilityTraits::StaticText;
|
|
return;
|
|
}
|
|
if (string == "disabled") {
|
|
result = AccessibilityTraits::NotEnabled;
|
|
return;
|
|
}
|
|
if (string == "frequentUpdates") {
|
|
result = AccessibilityTraits::UpdatesFrequently;
|
|
return;
|
|
}
|
|
if (string == "search") {
|
|
result = AccessibilityTraits::SearchField;
|
|
return;
|
|
}
|
|
if (string == "startsMedia") {
|
|
result = AccessibilityTraits::StartsMediaSession;
|
|
return;
|
|
}
|
|
if (string == "adjustable") {
|
|
result = AccessibilityTraits::Adjustable;
|
|
return;
|
|
}
|
|
if (string == "allowsDirectInteraction") {
|
|
result = AccessibilityTraits::AllowsDirectInteraction;
|
|
return;
|
|
}
|
|
if (string == "pageTurn") {
|
|
result = AccessibilityTraits::CausesPageTurn;
|
|
return;
|
|
}
|
|
if (string == "header") {
|
|
result = AccessibilityTraits::Header;
|
|
return;
|
|
}
|
|
if (string == "imagebutton") {
|
|
result = AccessibilityTraits::Image | AccessibilityTraits::Button;
|
|
return;
|
|
}
|
|
if (string == "summary") {
|
|
result = AccessibilityTraits::SummaryElement;
|
|
return;
|
|
}
|
|
if (string == "switch") {
|
|
result = AccessibilityTraits::Switch;
|
|
return;
|
|
}
|
|
if (string == "tabbar") {
|
|
result = AccessibilityTraits::TabBar;
|
|
return;
|
|
}
|
|
if (string == "progressbar") {
|
|
result = AccessibilityTraits::UpdatesFrequently;
|
|
return;
|
|
}
|
|
result = AccessibilityTraits::None;
|
|
}
|
|
|
|
inline void fromRawValue(
|
|
const PropsParserContext &context,
|
|
const RawValue &value,
|
|
AccessibilityTraits &result) {
|
|
if (value.hasType<std::string>()) {
|
|
fromString((std::string)value, result);
|
|
return;
|
|
}
|
|
|
|
result = {};
|
|
|
|
react_native_assert(value.hasType<std::vector<std::string>>());
|
|
if (value.hasType<std::vector<std::string>>()) {
|
|
auto items = (std::vector<std::string>)value;
|
|
for (auto &item : items) {
|
|
AccessibilityTraits itemAccessibilityTraits;
|
|
fromString(item, itemAccessibilityTraits);
|
|
result = result | itemAccessibilityTraits;
|
|
}
|
|
} else {
|
|
LOG(ERROR) << "AccessibilityTraits parsing: unsupported type";
|
|
}
|
|
}
|
|
|
|
inline void fromRawValue(
|
|
const PropsParserContext &context,
|
|
const RawValue &value,
|
|
AccessibilityState &result) {
|
|
auto map = (butter::map<std::string, RawValue>)value;
|
|
auto selected = map.find("selected");
|
|
if (selected != map.end()) {
|
|
fromRawValue(context, selected->second, result.selected);
|
|
}
|
|
auto disabled = map.find("disabled");
|
|
if (disabled != map.end()) {
|
|
fromRawValue(context, disabled->second, result.disabled);
|
|
}
|
|
auto checked = map.find("checked");
|
|
if (checked != map.end()) {
|
|
if (checked->second.hasType<std::string>()) {
|
|
if ((std::string)checked->second == "mixed") {
|
|
result.checked = AccessibilityState::Mixed;
|
|
} else {
|
|
result.checked = AccessibilityState::None;
|
|
}
|
|
} else if (checked->second.hasType<bool>()) {
|
|
if ((bool)checked->second == true) {
|
|
result.checked = AccessibilityState::Checked;
|
|
} else {
|
|
result.checked = AccessibilityState::Unchecked;
|
|
}
|
|
} else {
|
|
result.checked = AccessibilityState::None;
|
|
}
|
|
}
|
|
auto busy = map.find("busy");
|
|
if (busy != map.end()) {
|
|
fromRawValue(context, busy->second, result.busy);
|
|
}
|
|
auto expanded = map.find("expanded");
|
|
if (expanded != map.end()) {
|
|
fromRawValue(context, expanded->second, result.expanded);
|
|
}
|
|
}
|
|
|
|
inline std::string toString(
|
|
const ImportantForAccessibility &importantForAccessibility) {
|
|
switch (importantForAccessibility) {
|
|
case ImportantForAccessibility::Auto:
|
|
return "auto";
|
|
case ImportantForAccessibility::Yes:
|
|
return "yes";
|
|
case ImportantForAccessibility::No:
|
|
return "no";
|
|
case ImportantForAccessibility::NoHideDescendants:
|
|
return "no-hide-descendants";
|
|
}
|
|
}
|
|
|
|
inline void fromRawValue(
|
|
const PropsParserContext &context,
|
|
const RawValue &value,
|
|
ImportantForAccessibility &result) {
|
|
react_native_assert(value.hasType<std::string>());
|
|
if (value.hasType<std::string>()) {
|
|
auto string = (std::string)value;
|
|
if (string == "auto") {
|
|
result = ImportantForAccessibility::Auto;
|
|
} else if (string == "yes") {
|
|
result = ImportantForAccessibility::Yes;
|
|
} else if (string == "no") {
|
|
result = ImportantForAccessibility::No;
|
|
} else if (string == "no-hide-descendants") {
|
|
result = ImportantForAccessibility::NoHideDescendants;
|
|
} else {
|
|
LOG(ERROR) << "Unsupported ImportantForAccessiblity value: " << string;
|
|
react_native_assert(false);
|
|
}
|
|
} else {
|
|
LOG(ERROR) << "Unsupported ImportantForAccessiblity type";
|
|
}
|
|
}
|
|
|
|
inline void fromRawValue(
|
|
const PropsParserContext &context,
|
|
const RawValue &value,
|
|
AccessibilityAction &result) {
|
|
auto map = (butter::map<std::string, RawValue>)value;
|
|
|
|
auto name = map.find("name");
|
|
react_native_assert(name != map.end() && name->second.hasType<std::string>());
|
|
if (name != map.end()) {
|
|
fromRawValue(context, name->second, result.name);
|
|
}
|
|
|
|
auto label = map.find("label");
|
|
if (label != map.end()) {
|
|
if (label->second.hasType<std::string>()) {
|
|
result.label = (std::string)label->second;
|
|
}
|
|
}
|
|
}
|
|
|
|
inline void fromRawValue(
|
|
const PropsParserContext &,
|
|
const RawValue &value,
|
|
AccessibilityValue &result) {
|
|
auto map = (butter::map<std::string, RawValue>)value;
|
|
|
|
auto min = map.find("min");
|
|
if (min != map.end()) {
|
|
if (min->second.hasType<int>()) {
|
|
result.min = (int)min->second;
|
|
}
|
|
}
|
|
|
|
auto max = map.find("max");
|
|
if (max != map.end()) {
|
|
if (max->second.hasType<int>()) {
|
|
result.max = (int)max->second;
|
|
}
|
|
}
|
|
|
|
auto now = map.find("now");
|
|
if (now != map.end()) {
|
|
if (now->second.hasType<int>()) {
|
|
result.now = (int)now->second;
|
|
}
|
|
}
|
|
|
|
auto text = map.find("text");
|
|
if (text != map.end()) {
|
|
if (text->second.hasType<std::string>()) {
|
|
result.text = (std::string)text->second;
|
|
}
|
|
}
|
|
}
|
|
|
|
inline void fromRawValue(
|
|
const PropsParserContext &context,
|
|
const RawValue &value,
|
|
AccessibilityLabelledBy &result) {
|
|
if (value.hasType<std::string>()) {
|
|
result.value.push_back((std::string)value);
|
|
} else if (value.hasType<std::vector<std::string>>()) {
|
|
result.value = (std::vector<std::string>)value;
|
|
}
|
|
}
|
|
|
|
inline void fromRawValue(
|
|
const PropsParserContext &context,
|
|
const RawValue &value,
|
|
AccessibilityLiveRegion &result) {
|
|
react_native_assert(value.hasType<std::string>());
|
|
if (value.hasType<std::string>()) {
|
|
auto string = (std::string)value;
|
|
if (string == "none") {
|
|
result = AccessibilityLiveRegion::None;
|
|
} else if (string == "polite") {
|
|
result = AccessibilityLiveRegion::Polite;
|
|
} else if (string == "assertive") {
|
|
result = AccessibilityLiveRegion::Assertive;
|
|
} else {
|
|
LOG(ERROR) << "Unsupported AccessibilityLiveRegion value: " << string;
|
|
react_native_assert(false);
|
|
}
|
|
} else {
|
|
LOG(ERROR) << "Unsupported AccessibilityLiveRegion type";
|
|
}
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|