TopGit tracks clauderic/react-autocompletely on GitHub. The project has 16 stars. ๐ฎ Primitives to build simple, flexible, WAI-ARIA compliant React autocomplete components
Snapshot summary built from the project's own GitHub metadata โ there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then โ see the READ ME tab for the original README in full.
Primitives to build simple, flexible, WAI-ARIA compliant React autocomplete components
The problem
You need an autocomplete experience in your application and you want it to be
accessible. You also want it to be simple and flexible to account for your use
cases.
This solution
This is a collection of primitive components that you can compose together to
create an autocomplete component which you can reuse in your application. It's
based on ideas from the talk "Compound Components"
which effectively gives you maximum flexibility with a minimal API because you
are responsible for the rendering of the autocomplete components.
This differs from other solutions which render things for their use case and
then expose many options to allow for extensibility causing an API that is less
easy to use and less flexible as well as making the implementation more
complicated and harder to contribute to.
Installation
This component is currently under development and is not yet released...
This module is distributed via npm which is bundled with node and
should be installed as one of your project's dependencies:
npm install --save react-autocompletely
This package also depends on react and prop-types. Please make sure you have
those installed as well.
Usage
Things are still in flux a little bit (looking for feedback).
import Autocomplete from 'react-autocompletely'
// use components together here.
Available components and relevant props:
Autocomplete
This is the main component. It renders a div and forwards props. Wrap
everything in this.
onChange
function(item: any) | required
Called when the user selects an item
Autocomplete.Input
This is the input component. It renders an input and forwards props.
defaultValue
string / null | defaults to null
The initial value the input should have when it's mounted.
getValue
function(item: any) | defaults to an identity function (i => String(i))
Used to determine the inputValue for the selected item.
Autocomplete.Controller
This component allows you to receive and interact with the state of the
autocomplete component.
children
function({}) | required
This is called with an object with the properties listed below:
property
type
description
highlightedIndex
number / null
the currently highlighted item
setHighlightedIndex
function(index: number)
call to set a new highlighted index
inputValue
string / null
the current value of the input
isOpen
boolean
the menu open state
toggleMenu
function(state: boolean)
toggle the menu open state (if state is not provided, then it will be set to the inverse of the current state)
openMenu
function()
opens the menu
closeMenu
function()
closes the menu
selectedItem
any
the currently selected item
clearSelection
function()
clears the selection
selectItem
function(item: any)
selects the given item
selectItemAtIndex
function(index: number)
selects the item at the given index
selectHighlightedItem
function()
selects the item that is currently highlighted
Autocomplete.Menu
This component allows you to render the items based on the user input. It
renders a div with another div for your items and a div for the menu
status (for accessibility purposes)
defaultHighlightedIndex
number/null | defaults to null
This is the initial index to highlight when the menu first opens.
children
function({}) | required
This is called with the same things that the children prop is called with for
Autocomplete.Controller
Autocomplete.Item
Render your items inside this component. This renders a div and forwards all
props.
index
number | required
this is how react-autocompletely keeps track of your item when updating the
highlightedIndex as the user keys around.
value
any | required
This is the item data that will be selected when the user selects a particular
item.
Examples
Examples exist on codesandbox.io:
react-autocompletely Apollo example
If you would like to add an example, follow these steps:
Fork this codesandbox
Update the code for your example (add some form of documentation to explain what it is)
Update the title and description
Add the tag: react-autocompletely:example
Inspiration
I was heavily inspired by Ryan Florence and his talk entitled:
"Compound Components". I also took a few ideas from
the code in react-autocomplete and
jQuery UI's Autocomplete.
You can watch me build the first iteration of react-autocompletely on YouTube:
Part 1
Part 2
Other Solutions
You can implement these other solutions using react-autocompletely, but if
you'd prefer to use these out of the box solutions, then that's fine too:
react-select
react-autocomplete
Contributors
Thanks goes to these people (emoji key):
Kent C. Dodds ๐ป ๐ ๐ โ ๏ธ
Jack Moore ๐ก
Travis Arnold ๐ป ๐
Jeremy Gayed ๐ก
Haroen Viaene ๐ก
monssef ๐ก
Federico Zivolo ๐
Divyendu Singh ๐ก
Muhammad Salman ๐ป
This project follows the all-contributors specification.
Contributions of any kind welcome!
Does clauderic/react-autocompletely have a project website?
No homepage URL was recorded for clauderic/react-autocompletely in TopGit's last sync. The README tab above frequently contains screenshots and demo links, or check the repository description on GitHub.
Is clauderic/react-autocompletely open source?
Yes โ clauderic/react-autocompletely ships under the MIT license, which makes its source code freely readable (and, depending on license terms, forkable and reusable). Source: github.com/clauderic/react-autocompletely.
What is clauderic/react-autocompletely?
clauderic/react-autocompletely (clauderic/react-autocompletely) is a JavaScript project on GitHub. From the project's own README: ๐ฎ Primitives to build simple, flexible, WAI-ARIA compliant React autocomplete components
What license does clauderic/react-autocompletely use?
clauderic/react-autocompletely is released under the MIT license. Always verify the LICENSE file directly on GitHub for the authoritative terms โ license strings can be edited out of sync with a project's actual stance.
Where do I read more about clauderic/react-autocompletely?
This TopGit page is a snapshot โ the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/clauderic/react-autocompletely is the definitive source.
Read full README in the tab above.
Want a second opinion on react-autocompletely?
Ask an AI that can read this page โ one click and you get its take on react-autocompletely.