2018-09-25 16:28:26 +00:00
|
|
|
import Component from '@ember/component';
|
|
|
|
import { computed } from '@ember/object';
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
export default Component.extend({
|
2018-04-03 14:16:57 +00:00
|
|
|
threshold: null,
|
|
|
|
progress: null,
|
|
|
|
classNames: ['shamir-progress'],
|
2018-06-26 21:35:47 +00:00
|
|
|
progressDecimal: computed('threshold', 'progress', function() {
|
2018-04-03 14:16:57 +00:00
|
|
|
const { threshold, progress } = this.getProperties('threshold', 'progress');
|
|
|
|
if (threshold && progress) {
|
2018-06-26 21:35:47 +00:00
|
|
|
return progress / threshold;
|
2018-04-03 14:16:57 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}),
|
|
|
|
});
|