2023-04-18 23:20:02 +02:00
|
|
|
import {onSelect} from '../services/dom';
|
|
|
|
import {Component} from './component';
|
2020-06-27 14:29:00 +02:00
|
|
|
|
2022-11-15 17:04:46 +01:00
|
|
|
export class OptionalInput extends Component {
|
2023-04-18 23:20:02 +02:00
|
|
|
|
2020-06-27 14:29:00 +02:00
|
|
|
setup() {
|
|
|
|
this.removeButton = this.$refs.remove;
|
|
|
|
this.showButton = this.$refs.show;
|
|
|
|
this.input = this.$refs.input;
|
|
|
|
this.setupListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
setupListeners() {
|
|
|
|
onSelect(this.removeButton, () => {
|
|
|
|
this.input.value = '';
|
|
|
|
this.input.classList.add('hidden');
|
|
|
|
this.removeButton.classList.add('hidden');
|
|
|
|
this.showButton.classList.remove('hidden');
|
|
|
|
});
|
|
|
|
|
|
|
|
onSelect(this.showButton, () => {
|
|
|
|
this.input.classList.remove('hidden');
|
|
|
|
this.removeButton.classList.remove('hidden');
|
|
|
|
this.showButton.classList.add('hidden');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-18 23:20:02 +02:00
|
|
|
}
|