mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3f405dcbd2
Summary: Changelog: [Internal] - Add support for accessibilityRole = "switch" Reviewed By: sammy-SC Differential Revision: D22906500 fbshipit-source-id: 81dfbfd56a24c89ffedc0fde5a63f7bdeed0c5db
193 lines
4.9 KiB
C++
193 lines
4.9 KiB
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its 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 <react/renderer/components/view/AccessibilityPrimitives.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") {
|
|
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;
|
|
}
|
|
result = AccessibilityTraits::None;
|
|
}
|
|
|
|
inline void fromRawValue(const RawValue &value, AccessibilityTraits &result) {
|
|
if (value.hasType<std::string>()) {
|
|
fromString((std::string)value, result);
|
|
return;
|
|
}
|
|
|
|
if (value.hasType<std::vector<std::string>>()) {
|
|
result = {};
|
|
auto items = (std::vector<std::string>)value;
|
|
for (auto &item : items) {
|
|
AccessibilityTraits itemAccessibilityTraits;
|
|
fromString(item, itemAccessibilityTraits);
|
|
result = result | itemAccessibilityTraits;
|
|
}
|
|
}
|
|
|
|
abort();
|
|
}
|
|
|
|
inline void fromRawValue(const RawValue &value, AccessibilityState &result) {
|
|
auto map = (better::map<std::string, RawValue>)value;
|
|
auto selected = map.find("selected");
|
|
if (selected != map.end()) {
|
|
fromRawValue(selected->second, result.selected);
|
|
}
|
|
auto disabled = map.find("disabled");
|
|
if (disabled != map.end()) {
|
|
fromRawValue(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(busy->second, result.busy);
|
|
}
|
|
auto expanded = map.find("expanded");
|
|
if (expanded != map.end()) {
|
|
fromRawValue(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 RawValue &value,
|
|
ImportantForAccessibility &result) {
|
|
auto string = (std::string)value;
|
|
if (string == "auto") {
|
|
result = ImportantForAccessibility::Auto;
|
|
return;
|
|
}
|
|
if (string == "yes") {
|
|
result = ImportantForAccessibility::Yes;
|
|
return;
|
|
}
|
|
if (string == "no") {
|
|
result = ImportantForAccessibility::No;
|
|
return;
|
|
}
|
|
if (string == "no-hide-descendants") {
|
|
result = ImportantForAccessibility::NoHideDescendants;
|
|
return;
|
|
}
|
|
abort();
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|