An open API service indexing awesome lists of open source software.

https://github.com/zoltan-nz/table-sorting-app

Experimenting with Ember Sorting
https://github.com/zoltan-nz/table-sorting-app

Last synced: 7 months ago
JSON representation

Experimenting with Ember Sorting

Awesome Lists containing this project

README

          

# Table-sorting-app

This is an Ember application, without Ember Data.

Experimenting with sorting data in a table.

## Implementation log

Create new Ember app.

Remove Ember Data.

Add sass and bootstrap.

Add ember-faker addon.

Add ember-lodash addon.

Create a books route.

Create a books controller.

Create a navbar partial with link to the Books page.

Create a folder `fixtures` and a file `books.js` for generating fake array with book Ember Object.

Add model hook to books route where we return our generated fixture data.

List all books on our template.

Add dynamic `Number of Records` field to the page.

Add sorting logic to the page.

Use queryParams to store the sorting state.