Code Monkey home page Code Monkey logo

rn-text-touch-highlight's Introduction

React Native Text Touch Highlighter

React Native Text Touch Highlighter is a user friendly component library that enables users to effortlessly tap and drag to highlight text in React Native applications. This package simplifies the integration of text selection and annotation features, making it an ideal solution for mobile apps that require text highlighting or document annotation.

example

Installation

To install this package, use npm or yarn:

npm install react-native-reanimated
npm install react-native-gesture-handler
npm install rn-text-touch-highlight

or

yarn add react-native-reanimated
yarn add react-native-gesture-handler
yarn add rn-text-touch-highlight

Documentation

The docs can be found here: https://docs.benjamineruvieru.com/rn-text-touch-highlight

Usage

Import the HighlightText component in your application and include it in your JSX:

import { HighlightText } from 'rn-text-touch-highlight';

export default function App() {
  const highlightRef: any = React.useRef();

  const getHighlightData = () => {
    const data = highlightRef.current?.getHighlightedData();
    console.log(data);
  };
  const deleteFun = (id) => {
    highlightRef.current?.deleteHighlight(id);
  };

  return (
        <HighlightText
          ref={highlightRef}
          clearHighlightOnTap={true}
          highlightInitialDelay={500}
          initialHighlightData={[
            { end: 44, start: 20 },
            { end: 95, start: 70 },
          ]}
          lineSpace={5}
          lineBreakHeight={5}
          textColor={'black'}
          highlightedTextColor={'white'}
          highlightColor={'blue'}
          onHighlightStart={() => {
            console.log('hightStart');
          }}
          onHighlightEnd={(id) => {
            console.log('hightEnd', id);
          }}
          onHighlightTapped={(id, event) => {
            console.log('tapped', id, event);
          }}
          textStyle={{ fontSize: 15 }}
          backgroundColor="yellow"
          text={'Lorem ipsum dolor sit amet, consectetur adipiscing elit.'}
        />
      </View>
  );
}

Props

  • text (string, required): The text content to display and enable highlighting.
  • textColor (string): The color of the regular text.
  • highlightedTextColor (string): The color of the highlighted text.
  • highlightColor (string): The background color of the highlighted text.
  • lineBreakHeight (number): The height of line breaks.
  • lineSpace (number): The space between lines.
  • highlightInitialDelay (number): Finger press initial delay before highlighting the text. Default is 150 (in milliseconds).
  • onHighlightStart (function): Callback function when highlighting starts.
  • onHighlightEnd (function): Callback function when highlighting ends.
  • initialHighlightData (array of objects): An array specifying the initial highlight data, this is used to render text highlight initially
  • textStyle (object): Custom styles for the text.
  • marginBottom (number): Bottom margin for the text container.
  • margin (number): The margin of the HighlightText component.
  • marginTop (number): Top margin for the text container.
  • marginLeft (number): Left margin for the text container.
  • marginRight (number): Right margin for the text container.
  • onHighlightTapped (function): Callback function when a highlighted section is tapped.
  • clearHighlightOnTap (boolean): Clear highlighted sections on tap.

Ref Functions

  • getHighlightData: A ref function to retrieve the current highlighting data.
  • deleteHighlight: A ref function to programmatically delete a highlighted area by its id.

Example

For a complete example of how to use this package, please refer to the included example app.

Contributing

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

License

This package is open-source and available under the MIT License.

rn-text-touch-highlight's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

fattoh-saidov

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.