0.20.0 • Published 1 year ago

react-highlight-words v0.20.0

Weekly downloads
200,129
License
MIT
Repository
github
Last release
1 year ago

React component to highlight words within a larger body of text.

Check out a demo here.

Usage

To use it, just provide it with an array of search terms and a body of text to highlight.

Try this example in Code Sandbox.

import React from "react";
import { createRoot } from "react-dom/client";
import Highlighter from "react-highlight-words";

const root = createRoot(document.getElementById("root"));
root.render(
  <Highlighter
    highlightClassName="YourHighlightClass"
    searchWords={["and", "or", "the"]}
    autoEscape={true}
    textToHighlight="The dog is chasing the cat. Or perhaps they're just playing?"
  />
);

And the Highlighter will mark all occurrences of search terms within the text:

Props

PropertyTypeRequired?Description
activeClassNameStringThe class name to be applied to an active match. Use along with activeIndex
activeIndexNumberSpecify the match index that should be actively highlighted. Use along with activeClassName
activeStyleObjectThe inline style to be applied to an active match. Use along with activeIndex
autoEscapeBooleanEscape characters in searchWords which are meaningful in regular expressions
classNameStringCSS class name applied to the outer/wrapper <span>
caseSensitiveBooleanSearch should be case sensitive; defaults to false
findChunksFunctionUse a custom function to search for matching chunks. This makes it possible to use arbitrary logic when looking for matches. See the default findChunks function in highlight-words-core for signature. Have a look at the custom findChunks example on how to use it.
highlightClassNameString or ObjectCSS class name applied to highlighted text or object mapping search term matches to class names.
highlightStyleObjectInline styles applied to highlighted text
highlightTagNode or StringType of tag to wrap around highlighted matches. Defaults to mark but can also be a React element (class or functional)
sanitizeFunctionProcess each search word and text to highlight before comparing (eg remove accents); signature (text: string): string
searchWordsArray<String | RegExp>Array of search words. String search terms are automatically cast to RegExps unless autoEscape is true.
textToHighlightStringText to highlight matches in
unhighlightClassNameStringCSS class name applied to unhighlighted text
unhighlightStyleObjectInline styles applied to unhighlighted text
unhighlightTagNode or StringType of tag applied to unhighlighted parts. Defaults to span but can also be a React element (class or functional)
*anyAny other props (such as title or data-*) are applied to the outer/wrapper <span>

Custom highlight tag

By default this component uses an HTML Mark Text element (<mark>) to wrap matched text, but you can inject a custom tag using the highlightTag property. This tag should be a React component that accepts the following properties:

PropertyTypeDescription
childrenStringText to be highlighted
highlightIndexNumberIndex of matched text

For example:

const Highlight = ({ children, highlightIndex }) => (
  <strong className="highlighted-text">{children}</strong>
);

Installation

yarn add react-highlight-words
npm i --save react-highlight-words

License

MIT License - fork, modify and use however you want.

@grafana/ui@elliemae/ds-treeview@uponco/admin-ui@andromeda-ui/select@jessjess/react-site-componentsreact-highlight-searchboxreact-dadata-suggestions-forkreact-dadata-suggestions-v2cf-storybooktest-acttgintonicdesktop-transfer-client@caoyongmeng/ui-1bigendianuistocktracker@decooda_inc/media-carousel@luisrodriguezld/smart-tablehotee-adminteespace-drive-appteespace-talk-appcra-template-ifunpluscra-template-antd-ifunplusstadtenergielog8000v3ra-antd-table@mkiloyan/plugins@infinitebrahmanuniverse/nolb-react-hi@everything-registry/sub-chunk-2559test-ui-packmedusa-admin-ui-fadtddtd-teststorefront-icu_admin-uienhanced-antdenos-dplstrapi-plugin-environment-variablesstream-connect-sdkdemotitledoorson-ui@dewesoft-web/grid2cw-components@ditointernet/uai-componentsspaff-reactecheng-cli@datorama/app-components@decooda/iq-boteasyenrollsdkcbp-theme-react-starter@caominhhung1991/componentsclonerora-webcj-generalsciri-transformer1@caoyongmeng/uiclearkit@clearkit/reactcodeck@clearfacts/cf-components@clearfacts/cf-storybook@cloudtower/eagle@conantp/cdp-frontend@codementor/chat-widgetcompany-module@cocalc/frontendconversation-panel-hci@councildataproject/cdp-frontend@cricket-australia/play-cricket-react-ui@creation-ui/reactchakra-ui-autocompletechakra-ui-autocomplete-adaptedchakra-admin@cubeviz/inputsbj-beggars-tools@apitable/componentsbluerally-design-system@deskpro/deskpro-uicustomize-easy-ui-storybook@deepmala0410/emilus-template4@deepmala0410/emilus-temporary@deepmala0410/emiluslibrary@deepmala0410/emiluslibrary1@deepmala0410/emiluslibrary2@deepmala0410/using-emilus-library@deepmala0410/using-emilus-library-package@deepmala0410/using-emilus-library-package-1@deepmala0410/emilus@deepmala0410/emilus-app@deepmala0410/emilus-library@deepmala0410/emilus-template1@deepmala0410/emilus-temp@deepmala0410/emilus-template@deepmala0410/emilus-template2@deepmala0410/emilus-template3@deskpro/token-fieldcustom-admin-uid-react-components@dbosoft/nextjs-docs@drill4j/ui-kitdcg-nextbeisen-phoenix-fork-mobile-person-selectbems-theme-react-starter
0.20.0

1 year ago

0.19.0

1 year ago

0.18.0

2 years ago

0.17.0

3 years ago

0.16.0

5 years ago

0.15.1

5 years ago

0.15.0

5 years ago

0.14.0

6 years ago

0.13.0

6 years ago

0.12.0

6 years ago

0.11.0

6 years ago

0.10.0

7 years ago

0.9.0

7 years ago

0.8.1

7 years ago

0.8.0

7 years ago

0.7.2

7 years ago

0.7.1

7 years ago

0.7.0

7 years ago

0.6.0

7 years ago

0.5.0

8 years ago

0.4.1

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago