rails8-memoapp/app/javascript/controllers/search_controller.js

12 lines
268 B
JavaScript

import { Controller } from "@hotwired/stimulus";
export default class extends Controller {
search() {
if (this.element) {
clearTimeout(this.timeout);
this.timeout = setTimeout(() => {
this.element.requestSubmit();
}, 300);
}
}
}