2023-04-18 17:20:02 -04:00
|
|
|
import {Component} from './component';
|
2018-09-20 10:27:30 -04:00
|
|
|
|
2022-11-15 07:44:57 -05:00
|
|
|
export class SettingHomepageControl extends Component {
|
2018-09-20 10:27:30 -04:00
|
|
|
|
2022-11-15 07:44:57 -05:00
|
|
|
setup() {
|
|
|
|
this.typeControl = this.$refs.typeControl;
|
|
|
|
this.pagePickerContainer = this.$refs.pagePickerContainer;
|
2018-09-20 10:27:30 -04:00
|
|
|
|
|
|
|
this.typeControl.addEventListener('change', this.controlPagePickerVisibility.bind(this));
|
|
|
|
this.controlPagePickerVisibility();
|
|
|
|
}
|
|
|
|
|
|
|
|
controlPagePickerVisibility() {
|
|
|
|
const showPagePicker = this.typeControl.value === 'page';
|
|
|
|
this.pagePickerContainer.style.display = (showPagePicker ? 'block' : 'none');
|
|
|
|
}
|
2023-04-18 17:20:02 -04:00
|
|
|
|
|
|
|
}
|