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-autocomplete-email

v2.0.1

Published

A configurable & lightweight React email wrapper component that enables 'out of the box' email autocomplete/suggestions on input elements.

Downloads

436

Readme

react-autocomplete-email

A configurable & lightweight React wrapper component that enables "out of the box" email autocomplete/suggestions on input elements.

✅ A wrapper component so you can use alongside other form enabled libraries (such as Buefy).
✅ Customizable.
✅ Allow users to easily navigate the suggestions list by simply using the "up/down" keys.
✅ Users can also auto-fill the input with the desired value by hitting the "enter" key upon selection.

Check out the Vue.js version here.

Installation


# yarn
yarn add react-autocomplete-email

# npm
npm install react-autocomplete-email --save

Basic Usage


/* Import useState and useRef from React and import package */

import React, { useState, useRef } from 'react';
import EmailAutoComplete from 'react-autocomplete-email';

function App() {

  /* Set state and ref */

  const [inputVal, setInputVal] = useState('')
  const emailAutoCompleteRef = useRef();

  return (
      
    <EmailAutoComplete ref={emailAutoCompleteRef} onCompletion={val => setInputVal(val)}>
      <input type="text" value={inputVal} onChange={(e) => {setInputVal(e.target.value); emailAutoCompleteRef.current.change(e)}} onKeyDown={(e) => emailAutoCompleteRef.current.check(e)} />
    </EmailAutoComplete>
    
  );

}

export default App;

Configuration Example (Custom Domain Lists)


/* A "domains" prop is added to the component and references the array of domains within the data property below */

/* Import useState and useRef from React and import package */

import React, { useState, useRef } from 'react';
import EmailAutoComplete from 'react-autocomplete-email';

function App() {

  /* Set state and ref */
  
  const [inputVal, setInputVal] = useState('')
  const emailAutoCompleteRef = useRef();

  /* Domain List */

  const customDomains = [
    
    "domain1.com",
    "domain2.com",
    "domain3.com",
    "domain4.com",

  ]

  return (

    <EmailAutoComplete ref={emailAutoCompleteRef} onCompletion={val => setInputVal(val)} domains={customDomains}>
      <input type="text" name="email" placeholder="Email..." value={inputVal} onChange={(e) => {setInputVal(e.target.value); emailAutoCompleteRef.current.change(e)}} onKeyDown={(e) => emailAutoCompleteRef.current.check(e)} />
    </EmailAutoComplete>
    
  );

}

export default App;

Configuration Example (On Submit Callbacks)


/* An "onSubmit" prop is added to the component and references a method below */

/* Import useState and useRef from React and import package */

import React, { useState, useRef } from 'react';
import EmailAutoComplete from 'react-autocomplete-email';

function App() {

  /* Set state and ref */

  const [inputVal, setInputVal] = useState('')
  const emailAutoCompleteRef = useRef();
  
  const validateForm = () => {
    
    /* Called when a user hits enter when focused on the wrapped input element */
    
  };

  return (
      
    <EmailAutoComplete ref={emailAutoCompleteRef} onCompletion={val => setInputVal(val)} onSubmit={() => validateForm()}>
      <input type="text" value={inputVal} onChange={(e) => {setInputVal(e.target.value); emailAutoCompleteRef.current.change(e)}} onKeyDown={(e) => emailAutoCompleteRef.current.check(e)} />
    </EmailAutoComplete>
    
  );

}

export default App;

Configuration Example (Custom Inline Styles)


/* A "css" prop is added to the component and references a computed property below */


/* Import useState and useRef from React and import package */

import React, { useState, useRef } from 'react';
import EmailAutoComplete from 'react-autocomplete-email';

function App() {

  /* Set state and ref */

  const [inputVal, setInputVal] = useState('')
  const emailAutoCompleteRef = useRef();
  
  const styleOverrides = {
  
    /* Edit style for the suggestions "outer" container */

    container: {
      position: 'fixed',
      top: '40px',
      left: '40px'
    },

    /* Edit style for the suggestions overlay */

    overlay: {
      backgroundColor: #FFF
    },

    /* Edit style for the suggestions text */

    text: {

      /* Main text */

      suggestion: {
        color: purple
      },

      /* Highlighted/matched text */

      highlight: {
        color: blue
      }
  };

  return (
      
    <EmailAutoComplete ref={emailAutoCompleteRef} onCompletion={val => setInputVal(val)} css={styleOverrides}>
      <input type="text" value={inputVal} onChange={(e) => {setInputVal(e.target.value); emailAutoCompleteRef.current.change(e)}} onKeyDown={(e) => emailAutoCompleteRef.current.check(e)} />
    </EmailAutoComplete>
    
  );

}

export default App;

Configuration Example (CSS stylesheet overriddes)


Coming Soon!

Props

:racing_car: Roadmap

  • Add extra CSS override mappings.
  • Add ability to override CSS with a stylesheet (enables usage with media queries).
  • Autocomplete default suggestions list to be based on browser language detection, which will make the suggestions more regionally relevant.

Contributions

If you'd like to contribute and add functionality to this project, feel free to fork this repo, create a new feature branch and then submit a pull request.