-
Notifications
You must be signed in to change notification settings - Fork 17
Description
I'm using the remote input in a SelectMenu. The menu's SelectMenu-list is controlled by the remote input. When the page is rendered server-side, a few commonly used items are rendered in the SelectMenu-list to save the user time. The problem I have is these items are instantly cleared when the SelectMenu opens and the remote input receives focus due to the remote input doing the initial fetch.
Would the team be open to a PR that makes it possible to skip/cancel the initial fetch? I'd like to avoid the unnecessary round-trip to the server to get suggestions for the empty string query and preserve by server-side rendered default SelectMenu items. If yes, should it be done via html attribute or by preventing default on one of the custom events?
Two other questions:
- Should load fire before the fetch starts?
remote-input-element/src/index.ts
Lines 132 to 134 in 4ec740a
const response = await fetch(url, options) el.dispatchEvent(new CustomEvent('load')) el.dispatchEvent(new CustomEvent('loadend')) - Most github elements store state in a weakmap and use module functions (as opposed to class properties and methods). This makes it difficult to monkey patch component behavior. Is that the intent?
Thank you for sharing the github elements. They're super useful and I love the decoupling of the styles from the behavior.