feat(autosubmit): data-no-autosubmit can disable only some event types
this is useful on inputs with datalist for example where we want to only autosubmit on change
This commit is contained in:
parent
e4eb54e87a
commit
2f17793900
1 changed files with 48 additions and 7 deletions
|
@ -4,10 +4,13 @@ import {
|
||||||
isTextInputElement,
|
isTextInputElement,
|
||||||
isDateInputElement
|
isDateInputElement
|
||||||
} from '@utils';
|
} from '@utils';
|
||||||
|
import { isFormInputElement } from '@coldwired/utils';
|
||||||
|
|
||||||
import { ApplicationController } from './application_controller';
|
import { ApplicationController } from './application_controller';
|
||||||
|
|
||||||
const AUTOSUBMIT_DEBOUNCE_DELAY = 500;
|
const AUTOSUBMIT_DEBOUNCE_DELAY = 500;
|
||||||
const AUTOSUBMIT_DATE_DEBOUNCE_DELAY = 5000;
|
const AUTOSUBMIT_DATE_DEBOUNCE_DELAY = 5000;
|
||||||
|
const AUTOSUBMIT_EVENTS = ['input', 'change', 'blur'];
|
||||||
|
|
||||||
export class AutosubmitController extends ApplicationController {
|
export class AutosubmitController extends ApplicationController {
|
||||||
static targets = ['submitter'];
|
static targets = ['submitter'];
|
||||||
|
@ -15,7 +18,7 @@ export class AutosubmitController extends ApplicationController {
|
||||||
declare readonly submitterTarget: HTMLButtonElement | HTMLInputElement;
|
declare readonly submitterTarget: HTMLButtonElement | HTMLInputElement;
|
||||||
declare readonly hasSubmitterTarget: boolean;
|
declare readonly hasSubmitterTarget: boolean;
|
||||||
|
|
||||||
#dateTimeChangedInputs = new WeakSet<HTMLInputElement>();
|
#dateTimeChangedInputs = new WeakSet<HTMLElement>();
|
||||||
|
|
||||||
connect() {
|
connect() {
|
||||||
this.on('input', (event) => this.onInput(event));
|
this.on('input', (event) => this.onInput(event));
|
||||||
|
@ -24,8 +27,8 @@ export class AutosubmitController extends ApplicationController {
|
||||||
}
|
}
|
||||||
|
|
||||||
private onChange(event: Event) {
|
private onChange(event: Event) {
|
||||||
const target = event.target as HTMLInputElement;
|
const target = this.findTargetElement(event);
|
||||||
if (target.disabled || target.hasAttribute('data-no-autosubmit')) return;
|
if (!target) return;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
isSelectElement(target) ||
|
isSelectElement(target) ||
|
||||||
|
@ -48,8 +51,8 @@ export class AutosubmitController extends ApplicationController {
|
||||||
}
|
}
|
||||||
|
|
||||||
private onInput(event: Event) {
|
private onInput(event: Event) {
|
||||||
const target = event.target as HTMLInputElement;
|
const target = this.findTargetElement(event);
|
||||||
if (target.disabled || target.hasAttribute('data-no-autosubmit')) return;
|
if (!target) return;
|
||||||
|
|
||||||
if (!isDateInputElement(target) && isTextInputElement(target)) {
|
if (!isDateInputElement(target) && isTextInputElement(target)) {
|
||||||
this.debounce(this.submit, AUTOSUBMIT_DEBOUNCE_DELAY);
|
this.debounce(this.submit, AUTOSUBMIT_DEBOUNCE_DELAY);
|
||||||
|
@ -57,8 +60,8 @@ export class AutosubmitController extends ApplicationController {
|
||||||
}
|
}
|
||||||
|
|
||||||
private onBlur(event: Event) {
|
private onBlur(event: Event) {
|
||||||
const target = event.target as HTMLInputElement;
|
const target = this.findTargetElement(event);
|
||||||
if (target.disabled || target.hasAttribute('data-no-autosubmit')) return;
|
if (!target) return;
|
||||||
|
|
||||||
if (isDateInputElement(target)) {
|
if (isDateInputElement(target)) {
|
||||||
Promise.resolve().then(() => {
|
Promise.resolve().then(() => {
|
||||||
|
@ -70,6 +73,44 @@ export class AutosubmitController extends ApplicationController {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private findTargetElement(event: Event) {
|
||||||
|
const target = event.target;
|
||||||
|
if (
|
||||||
|
!isFormInputElement(target) ||
|
||||||
|
this.preventAutosubmit(target, event.type)
|
||||||
|
) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return target;
|
||||||
|
}
|
||||||
|
|
||||||
|
private preventAutosubmit(
|
||||||
|
target: HTMLElement & { disabled?: boolean },
|
||||||
|
type: string
|
||||||
|
) {
|
||||||
|
if (target.disabled) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
const noAutosubmit = this.parseNoAutosubmit(
|
||||||
|
target.getAttribute('data-no-autosubmit')
|
||||||
|
);
|
||||||
|
if (Array.isArray(noAutosubmit)) {
|
||||||
|
return noAutosubmit.includes(type);
|
||||||
|
}
|
||||||
|
return noAutosubmit;
|
||||||
|
}
|
||||||
|
|
||||||
|
private parseNoAutosubmit(value?: string | null): boolean | string[] {
|
||||||
|
if (value == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const eventTypes = value
|
||||||
|
.split(' ')
|
||||||
|
.map((token) => token.trim())
|
||||||
|
.filter((eventType) => AUTOSUBMIT_EVENTS.includes(eventType));
|
||||||
|
return eventTypes.length == 0 ? true : eventTypes;
|
||||||
|
}
|
||||||
|
|
||||||
private submit() {
|
private submit() {
|
||||||
const submitter = this.hasSubmitterTarget ? this.submitterTarget : null;
|
const submitter = this.hasSubmitterTarget ? this.submitterTarget : null;
|
||||||
const form =
|
const form =
|
||||||
|
|
Loading…
Reference in a new issue