Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

v1.1.0

Compare
Choose a tag to compare
@quisido quisido released this 12 Apr 17:37
· 34 commits to master since this release
fbb4e4b

New Feature

  • createUseFetch allows you to create a useFetch hook based on your own Fetch API implementation. #7 #8 #9 (Thanks @tomchentw!)
import { createUseFetch } from 'fetch-suspense';
import myFetchApi from 'my-fetch-package';
import React, { Suspense } from 'react';

// Create a useFetch hook using one's own Fetch API.
// NOTE: useFetch hereafter refers to this constant, not the default export of
//   the fetch-suspense package.
const useFetch = createUseFetch(myFetchApi);

// This fetching component will be delayed by Suspense until the fetch request
//   resolves.
// The return value of useFetch will be the response of the server.
const MyFetchingComponent = () => {
  const data = useFetch('/path/to/api', { method: 'POST' });
  return 'The server responded with: ' + data;
};

// The App component wraps the asynchronous fetching component in Suspense.
// The fallback component (loading text) is displayed until the fetch request
//   resolves.
const App = () => {
  return (
    <Suspense fallback="Loading...">
      <MyFetchingComponent />
    </Suspense>
  );
};

Bug Fix