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
- Host: GitHub
- URL: https://github.com/zoltan-nz/table-sorting-app
- Owner: zoltan-nz
- Created: 2016-05-10T09:11:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-10T11:07:23.000Z (over 9 years ago)
- Last Synced: 2025-01-22T02:46:06.893Z (9 months ago)
- Language: JavaScript
- Homepage: http://table-sorting-app.surge.sh/books
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.