2020-03-21 18:30:11 +01:00
|
|
|
import { getOwner } from 'discourse-common/lib/get-owner';
|
|
|
|
import { on } from 'discourse-common/utils/decorators';
|
|
|
|
import { newInput } from '../lib/custom-wizard';
|
|
|
|
|
2018-05-24 07:34:58 +02:00
|
|
|
export default Ember.Component.extend({
|
2019-07-02 06:49:14 +02:00
|
|
|
classNames: 'custom-inputs',
|
2019-04-18 01:47:41 +02:00
|
|
|
|
2018-05-24 07:34:58 +02:00
|
|
|
actions: {
|
|
|
|
add() {
|
2020-03-21 18:30:11 +01:00
|
|
|
if (!this.get('inputs')) this.set('inputs', Ember.A());
|
|
|
|
this.get('inputs').pushObject(newInput(this.options));
|
2018-05-24 07:34:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
remove(input) {
|
|
|
|
this.get('inputs').removeObject(input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|