npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-govuk-autocomplete

v1.0.6

Published

A React GOV.UK auto complete component for government platforms and services.

Downloads

177

Readme

GOV.UK React Auto Complete User Guide

The GOV.UK Design System is an official design framework produced by the UK Government and defines best practices and rules that must be followed to ensure that your code base is GDS Compliant.

You can find the guide at the GOV.UK Design System website.

Overview

The standard implementation for the GDS Auto Complete does not support large datasets or the dynamic creation of selectable items.

The remit was to develop an accessible react based auto complete component that would both allow large datasets and the ability to dynamically select an option that was not in the list.

Rather than build the whole component from scratch, two libraries have been utilised. The actual select control uses the React Select component which has excellent accessibility support and the ability to create a select control that supports the dynamic creation of items.

The support for large datasets was implemented by overriding the MenuList component of the react select control with a virtual list implementation utilising the Tanstack Virtual library.

The resulting component is shown below:

Auto Complete!

A working (Demo) can be found under the auto complete menu option, showing two variants, one with a simple list and the second with a large dataset creatable item list.

Configuration

The below shows one of our example implementations of the auto complete integrated with React Hook Form:

<Controller
  control={control}
  name="model"
  render={({ field: { value, onChange }, fieldState: { error } }) => (
    <AutoComplete
      identifier="model"
      label="Model"
      labelClassExt="govuk-label-s"
      containerClassExt="govuk-input--width-20"
      hint="Large dataset and create"
      allowCreate={true}
      useUpperCase={true}
      options={vehicleModels}
      value={vehicleModels.find(x => x.value === value)}
      getOptionLabel={x => x.label}
      onChange={x => onChange(x?.value)}
      error={error?.message}
    />
  )}
/>

Installation

The package can be installed via npm:

npm install react-govuk-autocomplete --save

Or via yarn:

yarn add react-govuk-autocomplete

The auto complete uses GDS styles which can be installed via the govuk-frontend package:

npm install govuk-frontend --save
yarn add govuk-frontend

License

Copyright (c) 2024 Barry Jacobs and individual contributors. Licensed under MIT license, see LICENSE for the full license.