mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Changelog: [Internal] - Add `accessibilityRole` to `RCTAttributedTextUtils`. AccessibilityRole was in `TextAttributes` which is a Fabric's abstraction so cannot be detected when enumerating attributedString. Mapping accessibilityRole from `TextAttributes` to `NSAttributedString` could provide the attributeName when iterating over attributedString and then successfully find the range of the fragment whose `accessibilityRole` has value @"link". Reviewed By: shergin Differential Revision: D22286747 fbshipit-source-id: eb039d6a35e77d1860f86ba287391ccb56fbe7b5
43 lines
1.5 KiB
Objective-C
43 lines
1.5 KiB
Objective-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.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#include <react/attributedstring/AttributedString.h>
|
|
#include <react/attributedstring/AttributedStringBox.h>
|
|
#include <react/attributedstring/TextAttributes.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
NSString *const RCTAttributedStringIsHighlightedAttributeName = @"IsHighlighted";
|
|
NSString *const RCTAttributedStringEventEmitterKey = @"EventEmitter";
|
|
NSString *const RCTTextAttributesAccessibilityRoleAttributeName = @"AccessibilityRole";
|
|
|
|
/*
|
|
* Creates `NSTextAttributes` from given `facebook::react::TextAttributes`
|
|
*/
|
|
NSDictionary<NSAttributedStringKey, id> *RCTNSTextAttributesFromTextAttributes(
|
|
facebook::react::TextAttributes const &textAttributes);
|
|
|
|
/*
|
|
* Conversions amond `NSAttributedString`, `AttributedString` and `AttributedStringBox`.
|
|
*/
|
|
NSAttributedString *RCTNSAttributedStringFromAttributedString(
|
|
facebook::react::AttributedString const &attributedString);
|
|
|
|
NSAttributedString *RCTNSAttributedStringFromAttributedStringBox(
|
|
facebook::react::AttributedStringBox const &attributedStringBox);
|
|
|
|
facebook::react::AttributedStringBox RCTAttributedStringBoxFromNSAttributedString(
|
|
NSAttributedString *nsAttributedString);
|
|
|
|
@interface RCTWeakEventEmitterWrapper : NSObject
|
|
@property (nonatomic, assign) facebook::react::SharedEventEmitter eventEmitter;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|