Sha256: cf0bf297fb2b77e6bd9d64e51e93ba6029f1a6ceb591cfba79f7441da6eb307a

Contents?: true

Size: 1.24 KB

Versions: 644

Compression:

Stored size: 1.24 KB

Contents

/* eslint-disable react/no-multi-comp, flowtype/space-before-type-colon */
import Highlighter from 'react-highlight-words'
import React from 'react'
import classnames from 'classnames'
import { globalProps, GlobalProps } from '../utilities/globalProps'
import { buildHtmlProps } from '../utilities/props'

type HighlightProps = {
  className?: string,
  data?: {[key: string]: string},
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
  id?: string,
  children?: React.ReactChild[] | React.ReactChild | string,
  text?: string,
  highlightedText?: string[],
} & GlobalProps

const Highlight = (props: HighlightProps): React.ReactElement => {
  const {
    children,
    className = 'pb_highlight_kit',
    data = {},
    highlightedText = ['highlight'],
    htmlOptions = {},
    id = '',
    text = '',
  } = props

  const htmlProps = buildHtmlProps(htmlOptions)
  const highlightContent: any = text || children;

  return (
    <Highlighter
        autoEscape
        data={data}
        highlightClassName={classnames(globalProps(props), className)}
        highlightTag="mark"
        id={id}
        searchWords={highlightedText}
        textToHighlight={highlightContent}
        {...htmlProps}
    />
  )
}

export default Highlight

Version data entries

644 entries across 644 versions & 1 rubygems

Version Path
playbook_ui-14.11.1.pre.alpha.PLAY17445539 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR798datepickerturbo5537 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.pbntr703collapsiblerowsrails5536 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.PLAY1751pbcontenttagpt25529 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR7495495 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.12.0.pre.rc.11 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.12.0.pre.rc.10 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.12.0.pre.rc.9 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.12.0.pre.rc.8 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.12.0.pre.rc.7 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5437 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR719listdraggablesimple5432 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR768stickyrightcolumn5431 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.12.0.pre.rc.6 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5415 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5413 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.12.0.pre.rc.5 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5409 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5400 app/pb_kits/playbook/pb_highlight/_highlight.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5392 app/pb_kits/playbook/pb_highlight/_highlight.tsx