Valentin Shergin 94d49e544d Fabric: Codemod: All <fabric/... includes were renamed to <react/...
Summary: We are moving to more stable APIs removing all mentiones of the effort name from the codebase.

Reviewed By: mdvacca

Differential Revision: D12912894

fbshipit-source-id: 4a0c6b9e7454b8b14e62d419e9e9311dc0c56e7a
2018-11-10 14:22:15 -08:00

67 lines
2.2 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.
*/
#include "AccessibilityProps.h"
#include <react/components/view/accessibilityPropsConversions.h>
#include <react/components/view/propsConversions.h>
#include <react/core/propsConversions.h>
#include <react/debug/debugStringConvertibleUtils.h>
namespace facebook {
namespace react {
AccessibilityProps::AccessibilityProps(
const AccessibilityProps &sourceProps,
const RawProps &rawProps)
: accessible(
convertRawProp(rawProps, "accessible", sourceProps.accessible)),
accessibilityTraits(convertRawProp(
rawProps,
"accessibilityTraits",
sourceProps.accessibilityTraits)),
accessibilityLabel(convertRawProp(
rawProps,
"accessibilityLabel",
sourceProps.accessibilityLabel)),
accessibilityHint(convertRawProp(
rawProps,
"accessibilityHint",
sourceProps.accessibilityHint)),
accessibilityActions(convertRawProp(
rawProps,
"accessibilityActions",
sourceProps.accessibilityActions)),
accessibilityViewIsModal(convertRawProp(
rawProps,
"accessibilityViewIsModal",
sourceProps.accessibilityViewIsModal)),
accessibilityElementsHidden(convertRawProp(
rawProps,
"accessibilityElementsHidden",
sourceProps.accessibilityElementsHidden)),
accessibilityIgnoresInvertColors(convertRawProp(
rawProps,
"accessibilityIgnoresInvertColors",
sourceProps.accessibilityIgnoresInvertColors)),
testId(convertRawProp(rawProps, "testId", sourceProps.testId)) {}
#pragma mark - DebugStringConvertible
#if RN_DEBUG_STRING_CONVERTIBLE
SharedDebugStringConvertibleList AccessibilityProps::getDebugProps() const {
const auto &defaultProps = AccessibilityProps();
LOG(INFO) << "Call AccessibilityProps::getDebugProps with testId " << testId;
return SharedDebugStringConvertibleList{
debugStringConvertibleItem("testId", testId, defaultProps.testId),
};
}
#endif // RN_DEBUG_STRING_CONVERTIBLE
} // namespace react
} // namespace facebook