/ember-timeline

A timeline component for EmberJS (work in progress)

Primary LanguageJavaScript

Ember-timeline

Demo: https://ember-timeline-demo.firebaseapp.com

Backlog and ideas

  • Tests!!
  • Handle pan/pinch on the zoomed timeline using Hammer.js, translate to mouse/wheel events and push them to the slider...
  • or write another slider plugin with native support for pan/pinch (so that no translation is required)
  • Improve the color picker layout on wide screens
  • Figure out a better way to layout the "tableform" on small screens (some ideas from a similar problem)
  • Improve the label collision detection algorithm and hidding strategy
  • Replace the beam implementation for something more performant (jsPlumb?)
  • Apply validations at the model level (ember-changeset-validations seems to be a good option)

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone <repository-url> this repository
  • cd ember-timeline
  • npm install
  • bower install

Running / Development

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember test
  • ember test --server

Building

  • ember build (development)
  • ember build --environment production (production)

Deploying

Specify what it takes to deploy your app.

Further Reading / Useful Links