Last active
February 15, 2016 23:42
-
-
Save davidlormor/dc1f94eb55ee76ca8638 to your computer and use it in GitHub Desktop.
Countdown timer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle', | |
countdown: Ember.inject.service(), | |
actions: { | |
startTimer: function() { | |
this.get('countdown').start(); | |
} | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Service.extend({ | |
times: [1], | |
currentTime: Ember.computed.alias('times.lastObject'), | |
previousTime: Ember.computed('times.length', function() { | |
var length = this.get('times.length'); | |
return this.get('times').objectAt(length - 2) || 1; | |
}), | |
timeLeft: null, | |
running: Ember.computed.gt('timeLeft', 0), | |
run: function(){ | |
var countdown = this; | |
if(this.get('running')) { | |
Ember.Logger.debug('Setting timer run'); | |
Ember.run.later(countdown, function() { | |
this.decrementProperty('timeLeft'); | |
this.run(); | |
}, 1000); | |
} | |
}, | |
start() { | |
var newTime = this.get('currentTime') + this.get('previousTime'); | |
this.set('timeLeft', this.get('currentTime')); | |
this.get('times').pushObject(newTime); | |
this.run(); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.5.3", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.3.1/ember.debug.js", | |
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.3.3/ember-data.js", | |
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember-template-compiler.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment