📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

@jurishandapp/react-native-selectable-text

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@jurishandapp/react-native-selectable-text

Utilizado na seleção de texto

0.0.18
unpublished
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
2
Weekly downloads
 
Created
Source

react-native-selectable-text

This project came up to try to get around the lack of libraries related to text selection in React Native. If you support the project, feel free to interact and help improve the library.

Now available for IOS

Installation

npm install @jurishandapp/react-native-selectable-text --save
yarn add @jurishandapp/react-native-selectable-text

Linking

If the project has an error, run the following command

react-native link @jurishandapp/react-native-selectable-text

Manual Installation

Android

  • Open up android/app/src/main/java/[...]/MainApplication.java
  • Add import com.reactnativeselectabletext.SelectableTextPackage; to the imports at the top of the file
  • Append the following lines to android/settings.gradle:
     include ':@jurishandapp_react-native-selectable-text'
     project(':@jurishandapp_react-native-selectable-text').projectDir = new File(rootProject.projectDir, 
     '../node_modules/@jurishandapp/react-native-selectable-text/android')
    

iOS - Binary Linking (Alternative 1)

  • In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  • Go to node_modules@jurishandapp/react-native-selectable-text and add RNSelectableText.xcodeproj
  • In XCode, in the project navigator, select your project. Add libRNSelectableText.a to your project's Build PhasesLink Binary With Libraries
  • Run your project (Cmd+R)<

iOS - Pods (Alternative 2)

  • Add pod 'RNSelectableText', :path => '../node_modules/@jurishandapp/react-native-selectable-text/ios/RNSelectableText.podspec' to your projects podfile
  • run pod install

Usage

import { SelectableText } from "@jurishandapp/react-native-selectable-text";

// Use normally, it is a drop-in replacement for react-native/Text
<SelectableText
  menuItems={["Custom 1", "Custom 1"]}
  /* 
    Called when the user taps in a item of the selection menu:
    - eventType: (string) is the label
    - content: (string) the selected text portion
    - selectionStart: (int) is the start position of the selected text
    - selectionEnd: (int) is the end position of the selected text
   */
  onSelection={({ eventType, content, selectionStart, selectionEnd }) => {}}
  value="Text example"
/>;

Props

namedescriptiontypedefault
valuetext contentstring""
onSelectionCalled when the user taps in a item of the selection menu({ eventType: string, content: string, selectionStart: int, selectionEnd: int }) => void() => {}
onCreateSelectionCalled when user initiates selection({ content: string, selectionStart: int, selectionEnd: int }) => void() => {}
onChangeSelectionCalled when user moves selection({ content: string, selectionStart: int, selectionEnd: int }) => void() => {}
onDestroySelectionCalled when the selection is closed({ content: string, selectionStart: int, selectionEnd: int }) => void() => {}
menuItemscontext menu itemsarray(string)[]
styleadditional styles to be applied to textObjectnull
highlightsarray of text ranges that should be highlighted with an optional idarray({ id: string, start: int, end: int })[]
highlightColorhighlight colorstringnull
onHighlightPresscalled when the user taps the highlight(id: string) => void() => {}
enabledContextMenuenable context menubooleantrue
appendToChildrenelement to be added in the last line of textReactNodenull
TextComponentText component used to render valueReactNode
textValueProptext value prop for TextComponent. Should be used when passing TextComponent. Defaults to 'children' which works for string'children'
textComponentPropsadditional props to pass to TextComponentobjectnull

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

Keywords

react-native

FAQs

Package last updated on 10 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts