/ember-cli-sift-and-list

A component that reads a string and uses Sifter to sort an array by the string. Think of it as an autocomplete skeleton.

Primary LanguageJavaScriptMIT LicenseMIT

Ember-cli-sift-and-list

The add-on provides you a date input component based on amazing bootstrap-datepicker library. It supports popup and inline mode, and can be used in Ember CLI applications.

Installation

If you are using Ember CLI 0.1.5 and higher, just run within your project directory:

ember install:addon ember-cli-sift-and-list

When your Ember CLI version is below 0.1.5, please run within your project directory:

npm install --save-dev ember-cli-sift-and-list
ember generate ember-cli-sift-and-list

Usage

{{input value=searchInput}}
<ul>
{{#sift-and-list
  sortBy="title"
  list=list
  searchInput=searchInput
  results=results as |result|
}}
  <li>{{result.title}}</li>
{{/sift-and-list}}
</ul>

Collaborating

This outlines the details of collaborating on this Ember addon.

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.