It was fun while it lasted, but we have to stop maintaining these repositories. We haven't used these projects for quite some time and maintaining them is becoming harder to do.
You deserve better, and for that reason we've decided to archive some repositories, which includes this one.
Feel free to fork and alter the repositories, and go forth making awesome stuff.
An autocomplete component for the aurelia framework.
jspm install aurelia-autocomplete
Simply register autocomplete as a plugin in main.js.
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 = [];
attributes = ['productName', 'barcode'];
customLabel = product => product.name + product.barcode;
value = 'banana';
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"
value.two-way="value"
result.two-way="value"
attribute.bind="attributes"
results.bind="results"
limit="5"
endpoint="product-api"
sort.bind="productSort"
criteria.bind="{}"
label.bind="customLabel">
</auto-complete>
The max amount of results to return. (optional)
The name of the element. (optional)
Used when one already has a list of items to filter on. Requests is not necessary.
The string that is appended to the api endpoint. e.g. language
is the
resource in following url api.com/language
The string to be used to do a contains search with. By default it will look if the name contains this value
Can be used to select default element visually
The result object from the server, set when something was selected.
How many characters are required to type before starting a search.
The label to show in the footer. Using i18n? No problem, this automatically gets translated.
When to show the footer. Possible values are never
, always
an no-results
.
Callback that gets called with the selected value when the footer gets clicked.
Configure debounce value for user input.
Which relations to populate for results.
The property to query on. Support both string and array (in case it should query on multiple fields)
Used to pass the "selected" value to the user's view model
The results returned from the endpoint. These can be observed and mutated.
Used to determine the string to be shown as option label
Allow to overwrite the default api endpoint
Overwrite the default placeholder (Search). Gets translated automatically.
Sort method that takes a list and returns a sorted list. No sorting by default.
Used to make the criteria more specific
Some methods might be handy to overwrite or wrap.
When it returns true, a request will be performed on a search change.
Overwrite the default fetch. Expects to return a Promise which resolves to a list of results
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.
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.
Used by the this.filter
to determine if an item should be added or not.
Returns a regex which is used for highlighting the items in the html and for determining if an item matches in the itemMatches method