|
1 |
| -import { getEnv, ENV_TYPE } from '@tarojs/taro'; |
2 |
| -import { useEffect, useState } from 'react'; |
| 1 | +/* eslint-disable react-hooks/rules-of-hooks */ |
| 2 | +import { useRef } from 'react'; |
| 3 | +import { request } from '@tarojs/taro'; |
| 4 | +import { |
| 5 | + BaseOptions, |
| 6 | + BasePaginatedOptions, |
| 7 | + BaseResult, |
| 8 | + CombineService, |
| 9 | + LoadMoreFormatReturn, |
| 10 | + LoadMoreOptions, |
| 11 | + LoadMoreOptionsWithFormat, |
| 12 | + LoadMoreParams, |
| 13 | + LoadMoreResult, |
| 14 | + OptionsWithFormat, |
| 15 | + PaginatedFormatReturn, |
| 16 | + PaginatedOptionsWithFormat, |
| 17 | + PaginatedParams, |
| 18 | + PaginatedResult, |
| 19 | +} from './types'; |
| 20 | +import useAsync from './useAsync'; |
| 21 | +import useLoadMore from './useLoadMore'; |
| 22 | +import usePaginated from './usePaginated'; |
3 | 23 |
|
4 |
| -export type Result = ENV_TYPE | ''; |
| 24 | +function useRequest< |
| 25 | + R = any, |
| 26 | + P extends any[] = any, |
| 27 | + U = any, |
| 28 | + UU extends U = any, |
| 29 | +>( |
| 30 | + service: CombineService<R, P>, |
| 31 | + options: OptionsWithFormat<R, P, U, UU>, |
| 32 | +): BaseResult<U, P>; |
| 33 | +function useRequest<R = any, P extends any[] = any>( |
| 34 | + service: CombineService<R, P>, |
| 35 | + options?: BaseOptions<R, P>, |
| 36 | +): BaseResult<R, P>; |
5 | 37 |
|
6 |
| -function useRequest(service: any, options: any = {}) {} |
| 38 | +function useRequest<R extends LoadMoreFormatReturn, RR>( |
| 39 | + service: CombineService<RR, LoadMoreParams<R>>, |
| 40 | + options: LoadMoreOptionsWithFormat<R, RR>, |
| 41 | +): LoadMoreResult<R>; |
| 42 | +function useRequest<R extends LoadMoreFormatReturn, RR extends R>( |
| 43 | + service: CombineService<R, LoadMoreParams<R>>, |
| 44 | + options: LoadMoreOptions<RR>, |
| 45 | +): LoadMoreResult<R>; |
| 46 | + |
| 47 | +function useRequest<R = any, Item = any, U extends Item = any>( |
| 48 | + service: CombineService<R, PaginatedParams>, |
| 49 | + options: PaginatedOptionsWithFormat<R, Item, U>, |
| 50 | +): PaginatedResult<Item>; |
| 51 | +function useRequest<R = any, Item = any, U extends Item = any>( |
| 52 | + service: CombineService<PaginatedFormatReturn<Item>, PaginatedParams>, |
| 53 | + options: BasePaginatedOptions<U>, |
| 54 | +): PaginatedResult<Item>; |
| 55 | + |
| 56 | +function useRequest(service: any, options: any = {}) { |
| 57 | + const finalOptions = { ...options }; |
| 58 | + |
| 59 | + const { paginated, loadMore, requestMethod } = finalOptions; |
| 60 | + |
| 61 | + const paginatedRef = useRef(paginated); |
| 62 | + const loadMoreRef = useRef(loadMore); |
| 63 | + |
| 64 | + if (paginatedRef.current !== paginated) { |
| 65 | + throw Error('You should not modify the paginated of options'); |
| 66 | + } |
| 67 | + |
| 68 | + if (loadMoreRef.current !== loadMore) { |
| 69 | + throw Error('You should not modify the loadMore of options'); |
| 70 | + } |
| 71 | + |
| 72 | + paginatedRef.current = paginated; |
| 73 | + loadMoreRef.current = loadMore; |
| 74 | + |
| 75 | + // @ts-ignore |
| 76 | + const fetchProxy = (url, config = {}) => |
| 77 | + // @ts-ignore |
| 78 | + request({ url, ...config }).then((res: request.SuccessCallbackResult) => { |
| 79 | + return res; |
| 80 | + }); |
| 81 | + |
| 82 | + const finalRequestMethod = requestMethod || fetchProxy; |
| 83 | + |
| 84 | + let promiseService: () => Promise<any>; |
| 85 | + switch (typeof service) { |
| 86 | + case 'string': |
| 87 | + promiseService = () => finalRequestMethod(service); |
| 88 | + break; |
| 89 | + case 'object': |
| 90 | + const { url, ...rest } = service; |
| 91 | + promiseService = () => |
| 92 | + requestMethod ? requestMethod(service) : fetchProxy(url, rest); |
| 93 | + break; |
| 94 | + default: |
| 95 | + promiseService = (...args: any[]) => |
| 96 | + new Promise((resolve, reject) => { |
| 97 | + const s = service(...args); |
| 98 | + let fn = s; |
| 99 | + if (!s.then) { |
| 100 | + switch (typeof s) { |
| 101 | + case 'string': |
| 102 | + fn = finalRequestMethod(s); |
| 103 | + break; |
| 104 | + case 'object': |
| 105 | + const { url, ...rest } = s; |
| 106 | + fn = requestMethod ? requestMethod(s) : fetchProxy(url, rest); |
| 107 | + break; |
| 108 | + } |
| 109 | + } |
| 110 | + fn.then(resolve).catch(reject); |
| 111 | + }); |
| 112 | + } |
| 113 | + |
| 114 | + if (loadMore) { |
| 115 | + return useLoadMore(promiseService, finalOptions); |
| 116 | + } |
| 117 | + if (paginated) { |
| 118 | + return usePaginated(promiseService, finalOptions); |
| 119 | + } |
| 120 | + return useAsync(promiseService, finalOptions); |
| 121 | +} |
| 122 | + |
| 123 | +export { useAsync, usePaginated, useLoadMore }; |
7 | 124 |
|
8 | 125 | export default useRequest;
|
0 commit comments