Skip to content

bas080/aurelia-autocomplete

 
 

Repository files navigation

aurelia-autocomplete

Gitter

An autocomplete component for the aurelia framework.

Setup

jspm install aurelia-autocomplete

Usage

simple

<auto-complete resource="language"></auto-complete>

or if you have an array with items and thus would not need to perform a request

export class Page {
  languages = [ /* languages */ ];
}
<auto-complete items.bind="languages"></auto-complete>

extended

export class MyViewModel {

  results     = [];
  customLabel = product => product.name + product.barcode;
  search      = 'banan';
  productCriteria = {
    stock: {'>': 0}
  };
  defaultProduct = {
    productName: 'No product',
    productCategory   : 'none'
  };

  constructor() {
    product = this.defaultProduct;
  }

  resultsChanged(products) {
    // select the first product that has the name 'banana'. If cannot be found
    // then select the first product in the results.
    this.selected = products.find(product => product.name === 'banana') || products[0];

    // always show the no product option
    this.results = this.results.concat([this.defaultProduct]);
  }

  productSort(products) {
    products.sort((a, b) => a.price > b.price;
  }

}
  <h4>${product.productName} ${product.productCategory}</h4>

  <auto-complete
    resource="product"
    selected.bind="selected"
    search.bind="search"
    value.bind="product"
    attribute="productName"
    results.bind="results"
    limit="5"
    endpoint="product-api"
    sort.bind="productSort"
    criteria.bind="{}"
    label.bind="customLabel">
  </auto-complete>

Documentation

Bindables

limit = 10;

the max amount of results to return. (optional)

items;

used when one already has a list of items to filter on. Requests is not necessary.

resource;

the string that is appended to the api endpoint. e.g. language is the resource in following url api.com/language

search = '';

the string to be used to do a contains search with. By default it will look if the name contains this value

selected;

can be used to select default element visually

attribute = 'name';

the property to query on.

({defaultBindingMode: bindingMode.twoWay}) value = null;

used to pass the "selected" value to the user's view model

({defaultBindingMode: bindingMode.twoWay}) results = [];

the results returned from the endpoint. These can be observed and mutated.

label = result => result[this.attribute];

used to determine the string to be shown as option label

endpoint;

allow to overwrite the default api endpoint

sort = items => items;

sort method that takes a list and returns a sorted list. No sorting by default.

criteria = {};

used to make the criteria more specific

Methods

Some methods might be handy to overwrite or wrap.

shouldPerformRequest()

when it returns true, a request will be performed on a search change.

findResults(query)

Overwrite the default fetch. Expects to return a Promise which resolves to a list of results

searchQuery(string)

By default aurelia autocomplete works with waterline queries. If your query language differs, you can overwrite this method to return a query your endpoint accepts.

filter(items)

Takes items and returns only the array defined in the items bindable and should returns a new array containing the desired array with results.

By default it makes sure to not return more items than the limit specifies.

itemMatches(item)

Used by the this.filter to determine if an item should be added or not.

get regex()

Returns a regex which is used for highlighting the items in the html and for determining if an item matches in the itemMatches method

About

An autocomplete component for the aurelia framework.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 94.3%
  • HTML 5.7%