CJ Cenizal
CJ Cenizal
Hey Robert, I just saw your old post on server-side react rendering grab the spotlight on [HN](https://news.ycombinator.com/item?id=21890370). You are a really fantastic writer. Please keep it up! I plan on...
If a local cluster connected to a remote cluster, and the remote cluster goes down and is then recovered, the local cluster's [Remote cluster info API](https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-remote-info.html) shows the remote cluster...
You might do a search and then close the modal but then want to open it back up to see the results again. It would be convenient if you could...
To repro: * Issue a search and get back search results * Reduce browser window height until scroll bar appears in search results * Attempt to use mouse scroll to...
Per @mrderyk, `react-icons` accounts for close to 75% of our bundle size. We can find a way to selectively include specific icons or find a different library.
The component needs to handle errors and surface them to the user. Looks like right now the code doesn't anticipate them: https://github.com/vectara/react-search/blob/d6bac29c1843f62770a35e0df0a4a14dd1621f30/src/index.tsx#L76-L97
By using relative links we can ensure they stay up-to-date if the images change. By specifying widths, we can ensure the images don't look too large. Currently, links look like...
This will be useful for any device that lacks an “Escape” button, e.g. a touchscreen. This also will fix a critical bug on smaller touchscreens, because on those devices the...
We should consider the user journey from using this component in prototypes (API keys) to using it in production (OAuth).
This hook currently returns `{ fetchSearchResults, isLoading }`. I noticed two things: * We're using two different verbs to describe the same action: "fetch" and "load" * The action is...