2.0.1 • Published 2 years ago

@adhamu/react-search-suggestions v2.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

React Search Suggestions

A React input component with pluggable search suggestions.

Also includes arrow key navigation through results.

Build

Prerequisities

  • React (obviously)

Installation

yarn add @adhamu/react-search-suggestions

Usage

import React from 'react'
import { SearchSuggestions } from '@adhamu/react-search-suggestions'

const MyComponent = () => (
  <SearchSuggestions
    autoFocus={true}
    suggestions={[
      'polite',
      'fastidious',
      'dull',
      'pudding',
      'mole',
      'angle',
    ].map(word => (
      <a href={`https://www.google.co.uk/search?q=${word}`}>{word}</a>
    ))}
  />
)

export default MyComponent

HTML Structure

The markup is very simple. You bring what populates each search suggestion. In this example:

<div>
  <input />
  <ul>
    <li>
      <a href="https://www.google.co.uk/search?q=polite">polite</a>
    </li>
    <li>
      <a href="https://www.google.co.uk/search?q=fastidious">fastidious</a>
    </li>
    <li>
      <a href="https://www.google.co.uk/search?q=dull">dull</a>
    </li>
    <li>
      <a href="https://www.google.co.uk/search?q=pudding">pudding</a>
    </li>
    <li>
      <a href="https://www.google.co.uk/search?q=mole">mole</a>
    </li>
    <li>
      <a href="https://www.google.co.uk/search?q=angle">angle</a>
    </li>
  </ul>
</div>

Props

PropDescriptionTypeDefaultRequired?
suggestionsA collection of HTML elements or React components used for search suggestionsReact.ReactNode[]Y
idID for entire componentstringundefinedN
classNameOptional class name to style componentstring''N
nameInput namestring'q'N
placeholderInput placeholderstring'Search'N
autoFocusInput autoFocusbooleanfalseN
onChangeInput onChange handlerfunctionundefinedN
withStylesBasic styling for the componentbooleanfalseN

Styling

By default, the component comes with almost no styles. Given the semantic nature of the markup, it is quite easy to target these with CSS. As mentioned above, you can provide a className to the component for this.

Alternatively, you can set the withStyles prop to true to achieve some very basic styling. An example of this can be seen on GitHub Pages.

Important: The :focus attribute on each top level element's search suggestion is what powers the active state of a selected element. Refer to the HTML Structure above to correctly determine any CSS selectors.

Arrow Key Navigation

You get this functionality for free and was the main motivation for creating this shared component.

2.0.1

2 years ago

2.0.0

2 years ago

2.0.0-beta45

2 years ago

2.0.0-beta44

2 years ago

1.0.0

2 years ago

0.0.26-beta42

2 years ago

0.0.26-beta41

2 years ago

0.0.26

2 years ago

0.0.25

2 years ago

0.0.24

2 years ago

0.0.23

2 years ago

0.0.21

2 years ago

0.0.20

2 years ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.17

2 years ago

0.0.16

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago