what are you doing there? go away fix recognizer to clear selected text on tap remove jank/hacks update readme remove android stuff (?) don't remove clipped subview on android for selection enable selection of alt text add numberOfLines properly apply container styles handle both selection and expand press events in alt text far better implementation revert link changes revert lightbox changes for now fix file name
Expo Selectable Text
This module creates a wrapper <SelectableText> for React Native's <Text> component. Text components are
parsed and rendered using UITextView instead of UILabel, allowing for text selection.
Usage
In most cases, you can simply use like so:
<SelectableText selectable style={{color: '#000000', fontSize: 20}}>
Here is some text.
</SelectableText>
You may also have nested <Text> components inside the <SelectableText> block. For example:
<SelectableText selectable style={{color: '#000000', fontSize: 20}}>
Here is some text. <Text style={{color: 'lightblue'}} onPress={() => {Alert.alert('Press!')}}>And this is a link.</Text>
</SelectableText>
Note that nested components should always use <Text> and not <SelectableText>. Only the outermost <Text> should
be replaced with <SelectableText>.
Like <Text> styles given to <SelectableText> will be passed to each child <Text> component unless specified in the
child's style. All the base React Native Text styles are supported
(with the same iOS limitations, of course).
Installation
Using inside of this project should not require any installation. The podfile should automatically find and locate the podspec inside of this directory.
Technical
Whenever we use the SelectableText component, we then loop over each of the children (or just the text if the child is typeof Text). We create "segments" of text based on this.
The native side renders a single UITextView and adds each of the text segments to the view. Using NSAttributedStrings, we can add the styles for each segment individually (falling back to the root styles).
There's a few ways we could go about handling presses. For one, we could create fake URLs to add to each NSAttributedString and handle their presses. However, this has a few downsides:
- We can't support long presses this way without adding an additional gesture recognizer.
- The presses actually are not "instant". The default gesture for these links requires a slighly longer press than just a tap, so we'd end up needing to modify this recognizer anyway.
As such, we create a gesture recognizer for the entire UITextView. The recognizer determines the text at the position of
the press, determines which segment it is, and sends an onTextPress event to the JS side along with the index of the
segment. On the JS side, we have our array of segments (that included the onPress event from the Text/SelectableText)
that we can now call based on the index from the native event.