Giter VIP home page Giter VIP logo

Comments (3)

shuding avatar shuding commented on May 22, 2024 3

Hi @Fronix !

I've created an example for this use case: https://codesandbox.io/s/swr-playground-3843q

Still triggers the fetch when the value is null

The entire key needs to be null, e.g.:

  useSWR(value ? `/api/search/autocomplete/${entity}/?query=${value}` : null, ...)

the result is sometimes undefined when deleting a character

That's because the key has changed, so the data for that new key will be undefined until we get the data.

from swr.

sergiodxa avatar sergiodxa commented on May 22, 2024

You could fetch data based on a dynamic value, check dependant fetching in the README.

If you have a state with your typed value you could:

const [value, setValue] = useState(null) // the null here will prevent SWR to fetch until the user typed something
const { data: results } = useSWR(() => `/api/search?query=${value}`, fetcher)

Now every time the value state change SWR will fetch the /api/search with a new query, if the user delete a character of the value (e.g. from movies to movie) since SWR already fetched that it will show the stale results immediately.

And you could use your results to fill the autocomplete suggestions.

from swr.

Fronix avatar Fronix commented on May 22, 2024

Interesting!

I tried this just now

  const [value, setValue] = useState<null | string>(null);
  const { data: results } = useSWR(
    () => `/api/search/autocomplete/${entity}/?query=${value}`,
    (url: string) => fetch(url).then(_ => _.json())
  );

Still triggers the fetch when the value is null also the result is sometimes undefined when deleting a character which also is a bit weird? Might be some missing options?

from swr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.