open-vault/ui/app/components/shamir-progress.js
Matthew Irish d93c92e4f5
UI - guard page redesign (#4779)
* add NavHeader component
* use NavHeader in SplashPage component and application.hbs
* let download button take a block
* add RadialProgress component
* use RadialProgress in ShamirFlow component
* style up the RadialProgress component
* update ember-basic-dropdown, ember-basic-dropdown-hover
* rework operation token generation workflow
* directly depend on ember-maybe-in-element
2018-06-26 16:35:47 -05:00

16 lines
413 B
JavaScript

import Ember from 'ember';
const { computed } = Ember;
export default Ember.Component.extend({
threshold: null,
progress: null,
classNames: ['shamir-progress'],
progressDecimal: computed('threshold', 'progress', function() {
const { threshold, progress } = this.getProperties('threshold', 'progress');
if (threshold && progress) {
return progress / threshold;
}
return 0;
}),
});