open-vault/ui/app/components/pgp-list.js

22 lines
578 B
JavaScript
Raw Normal View History

import { computed } from '@ember/object';
import Component from '@ember/component';
2018-04-03 14:16:57 +00:00
export default Component.extend({
2018-04-03 14:16:57 +00:00
onDataUpdate: () => {},
listData: computed('listLength', function() {
2018-04-03 14:16:57 +00:00
let num = this.get('listLength');
if (num) {
num = parseInt(num, 10);
}
return Array(num || 0).fill(null).map(() => ({ value: '' }));
}),
listLength: 0,
actions: {
setKey(index, key) {
let listData = this.get('listData');
listData.replace(index, 1, key);
this.get('onDataUpdate')(listData.compact().map(k => k.value));
},
},
});