BookStack/resources/js/components/submit-on-change.js
Dan Brown e711290d8b
Ran eslint fix on existing codebase
Had to do some manual fixing of the app.js file due to misplaced
comments
2023-04-18 22:20:02 +01:00

25 lines
537 B
JavaScript

import {Component} from './component';
/**
* Submit on change
* Simply submits a parent form when this input is changed.
*/
export class SubmitOnChange extends Component {
setup() {
this.filter = this.$opts.filter;
this.$el.addEventListener('change', event => {
if (this.filter && !event.target.matches(this.filter)) {
return;
}
const form = this.$el.closest('form');
if (form) {
form.submit();
}
});
}
}