From ab2866df5b0cb947f08559ec7f4dea274c14c703 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 26 Feb 2015 20:46:56 -0900 Subject: [PATCH] Refs #1: Simple initial take at progress bar. --- .jshintrc | 3 ++- Brocfile.js | 2 ++ app/routes/application.js | 15 ++++++++++++++- bower.json | 3 ++- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.jshintrc b/.jshintrc index 08096ef..b01ef77 100644 --- a/.jshintrc +++ b/.jshintrc @@ -2,7 +2,8 @@ "predef": [ "document", "window", - "-Promise" + "-Promise", + "/* global nprogress */" ], "browser": true, "boss": true, diff --git a/Brocfile.js b/Brocfile.js index 17d05fc..d0f5bbb 100644 --- a/Brocfile.js +++ b/Brocfile.js @@ -5,5 +5,7 @@ var EmberApp = require('ember-cli/lib/broccoli/ember-app'); var app = new EmberApp(); app.import('bower_components/flakes/css/all.css'); +app.import('bower_components/nprogress/nprogress.css'); +app.import('bower_components/nprogress/nprogress.js'); module.exports = app.toTree(); diff --git a/app/routes/application.js b/app/routes/application.js index 8a864b5..9556470 100644 --- a/app/routes/application.js +++ b/app/routes/application.js @@ -1,4 +1,17 @@ import Ember from 'ember'; import ApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin'; +/* global NProgress */ -export default Ember.Route.extend(ApplicationRouteMixin); +export default Ember.Route.extend(ApplicationRouteMixin, { + actions: { + loading: function() { + NProgress.start(); + this.router.one('didTransition', function() { + return setTimeout((function() { + return NProgress.done(); + }), 50); + }); + return true; + } + } +}); diff --git a/bower.json b/bower.json index 629d2ad..22b314f 100644 --- a/bower.json +++ b/bower.json @@ -14,6 +14,7 @@ "ember-qunit-notifications": "0.0.5", "qunit": "~1.17.1", "flakes": "~1.0.0", - "ember-simple-auth": "~0.7.2" + "ember-simple-auth": "~0.7.2", + "nprogress": "~0.1.6" } }