Skip to content

Commit 70c005e

Browse files
committedMar 14, 2019
Implement preventCallFetch option
1 parent abb14de commit 70c005e

File tree

4 files changed

+41
-4
lines changed

4 files changed

+41
-4
lines changed
 

‎README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,21 @@ const { isLoading, data } = useFetch("https://swapi.co/api/people/1", {
5151
});
5252

5353
```
54-
54+
### Custom formatter
5555
You can pass *formatter* prop for using custom formatter function. Default is used *response => response.json()* formatter.
5656
```javascript
5757
const { isLoading, data } = useFetch("https://swapi.co/api/people/1", {
5858
formatter: (response) => response.text()
5959
});
6060

6161
```
62+
### Prevent call `fetch`
63+
For prevent call fetch you can pass *preventCallFetch* prop:
64+
65+
```javascript
66+
const {authToken} = useContext(authTokenContext);
67+
const { isLoading, data } = useFetch("https://swapi.co/api/people/1", {
68+
preventCallFetch: !authToken //don't call request, if haven't authToken
69+
});
70+
71+
```

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-fetch-hook",
3-
"version": "1.2.4",
3+
"version": "1.3.0",
44
"description": "React fetch hook",
55
"main": "./dist/index.js",
66
"scripts": {

‎src/__tests__/useFetch.test.js

+23
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,29 @@ describe("useFetch", () => {
8080
});
8181
});
8282

83+
it("call with url, options with preventCallFetch", async () => {
84+
fetch.mockResponse(JSON.stringify({ data: "12345" }));
85+
const options = {
86+
headers: {
87+
Accept: "application/json, application/xml, text/plain, text/html, *.*",
88+
"Content-Type": "application/json; charset=utf-8"
89+
}
90+
};
91+
92+
const Component = () => {
93+
const result = useFetch("https://google.com", { ...options, preventCallFetch: true });
94+
return <div>{result.data}</div>;
95+
};
96+
97+
const { container, rerender } = render(<Component />);
98+
99+
await wait(() => {
100+
rerender(<Component />);
101+
102+
expect(fetch.mock.calls.length).toEqual(0);
103+
});
104+
});
105+
83106
it("error on throw error", async () => {
84107
fetch.mockReject(new Error("fake error message"));
85108

‎src/useFetch.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type TUseFetchResult<T> = {
99

1010
export function useFetch<T>(
1111
path: RequestInfo,
12-
options?: { ...RequestOptions, formatter?: Response => Promise<T> }
12+
options?: { ...RequestOptions, formatter?: Response => Promise<T>, preventCallFetch?: boolean }
1313
): TUseFetchResult<T> {
1414
const defaultFormatter = response => {
1515
if (!response.ok) {
@@ -18,7 +18,11 @@ export function useFetch<T>(
1818
return response.json();
1919
};
2020
const fetchInstance = formatter => (path, options) => {
21-
return fetch(path, options).then((typeof formatter === "function" && formatter) || defaultFormatter);
21+
const { preventCallFetch, ...otherOptions } = options || {};
22+
if (preventCallFetch) {
23+
return Promise.resolve();
24+
}
25+
return fetch(path, otherOptions).then((typeof formatter === "function" && formatter) || defaultFormatter);
2226
};
2327
if (options) {
2428
const { formatter, ...fetchOptions } = options;

0 commit comments

Comments
 (0)