custom input live debounce

How to add debounce feature to custom filament field ->live(debounce:500) By default it does work..
8 Replies
toeknee
toeknee4w ago
->live(debounce: 500) should work fine, might be theres no space in your version
shabxs
shabxsOP4w ago
live() is working.. which sends too many requests... debounce is not in action.. If it should work, Let me try again.. anything wrong on my side Yes used.. then only the live part is working.. but not debounce
toeknee
toeknee4w ago
What about onBlur: true
shabxs
shabxsOP4w ago
onBlur also same. Below is the custom component, Basically a range slider along with the input field which can be edited and displayed formatted. <x-dynamic-component :component="$getFieldWrapperView()" :field="$field"> <div x-data="{ value: $wire.{{ $applyStateBindingModifiers("$entangle('{$getStatePath()}')") }}, get formattedValue() { return new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }).format(this.value); }, updateValue(event) { let rawValue = event.target.value.replace(/[^0-9]/g, ''); this.value = rawValue ? parseInt(rawValue) : 0; $refs.inputField.value = this.formattedValue; } }" x-init="$watch('value', val => $refs.inputField.value = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }).format(val))"> <x-filament::input.wrapper> <x-filament::input type="text" x-ref="inputField" @input.debounce.500ms="updateValue($event)" x-bind:value="formattedValue" /> </x-filament::input.wrapper> <div class="slider-container relative -mt-2"> <input type="range" :min="{{ $getMinValue() }}" :max="{{ $getMaxValue() }}" :step="{{ $getStep() }}" x-model="value" class="slider w-full"> </div> </div> </x-dynamic-component>
Dennis Koch
Dennis Koch4w ago
It's about a custom field, not Filament fields
shabxs
shabxsOP4w ago
Thanks.. So I have to customize livewire wire:model
Dennis Koch
Dennis Koch4w ago
I was answering to toeknee. I'm not sure about the solution

Did you find this page helpful?