Skip to content

vandie/mdc-autoComplete

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AutoComplete Component

Follows the Material design spec as seen here

Designed to be 100% compatible with MDC for Web

Component Egineering Outline

Example

Test gif

Example usage

Intallation

This respository was created because I needed it for my own projects and it was not yet in MDC. I am hoping that they will adopt it and as such I have not created any builds outside my own or released it to NPM so as to avoid confusion. To install you can go to the above codepen and copy the script above //Install code above here to your own script then build the scss alongside all other MDC scss. Sorry if this isn't as easy as you'd hope...

Basic Usage

For basic usage put the autocomplete class in the textfield div and and add the autocomplete span as shown below.

<div class="mdc-textfield mdc-autocomplete">
    <input type="text" id="my-textfield" class="mdc-textfield__input">
    <label class="mdc-textfield__label" for="my-textfield">Autocomplete Test</label>
    <span class='mdc-autocomplete__span'></span>
</div>

Next you need to initiate the component and requires you to set a search array.

var arr = ['blue','red','green']//an array of strings
var x = MDCautoComplete.attachTo(document.querySelector('.mdc-autocomplete'))//init the autocomplete
x.searchArray = arr;// set the search array

Your autocomplete should now function.

Better Usage

It's unlikely that you would just want string data in your auto complete. You may (for example) require an avatar to apear when a valid email has been typed in. This can be done using the data-mdc-autocomplete-searchAttribute attribute on the mdc-autocomplete div and a slight modification to your array. Example below.

<div class="mdc-textfield mdc-autocomplete" data-mdc-autocomplete-searchAttribute='email'>
    <input type="text" id="my-textfield" class="mdc-textfield__input">
    <label class="mdc-textfield__label" for="my-textfield">Autocomplete Test</label>
    <span class='mdc-autocomplete__span'></span>
</div>

Then in your initiation of the component, do this instead.

var arr = [{email:'[email protected]',avatar:'blue.png'},{email:'[email protected]',avatar:'red.png'},{email:'[email protected]',avatar:'green.png'},{email:'[email protected]',avatar:'yellow.png'}]//an array of objects

var ac = MDCAutoComplete.attachTo(document.querySelector('.mdc-autocomplete')) //init the autocomplete element

ac.searchArray = arr//set the search array for the autocomplete

You may also like to force the user to use any autocompleted option. This can be done by adding data-mdc-autocomplete-forceComplete=true to the mdc-autocomplete element like so:

<div class="mdc-textfield mdc-autocomplete" data-mdc-autocomplete-forceComplete=true>
    <input type="text" id="my-textfield" class="mdc-textfield__input">
    <label class="mdc-textfield__label" for="my-textfield">Autocomplete Test</label>
    <span class='mdc-autocomplete__span'></span>
</div>

Events

When an autocomplete changes it's current best guess, it will fire an event. This event called MDCAutocomplete:newBestGuess will contain a variable called guess inside the variable detail. If you wanted to get the avatar from our previous example each time the best guess changed then the following code would do it.

document.querySelector('.mdc-autocomplete').addEventListener("MDCAutocomplete:newBestGuess",function(e) {
  console.log(e.detail.guess.avatar) //log the avatar file name of the current best guess
})

Theming

This component uses the hint color from your current theme. More info on theming can be found here

Light Theme

Dark Theme

About

An autocomplete component for MDC

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published