@@ -5,147 +5,17 @@ import { IfInitial, IfPending, IfFulfilled, IfRejected, IfSettled } from "./help
5
5
// @ts -ignore
6
6
import propTypes from "./propTypes"
7
7
import { actionTypes , init , dispatchMiddleware , reducer as asyncReducer } from "./reducer"
8
-
9
- export declare type AsyncChildren < T > = ( ( state : AsyncState < T > ) => React . ReactNode ) | React . ReactNode
10
- export declare type InitialChildren < T > =
11
- | ( ( state : AsyncInitial < T > ) => React . ReactNode )
12
- | React . ReactNode
13
- export declare type PendingChildren < T > =
14
- | ( ( state : AsyncPending < T > ) => React . ReactNode )
15
- | React . ReactNode
16
- export declare type FulfilledChildren < T > =
17
- | ( ( data : T , state : AsyncFulfilled < T > ) => React . ReactNode )
18
- | React . ReactNode
19
- export declare type RejectedChildren < T > =
20
- | ( ( error : Error , state : AsyncRejected < T > ) => React . ReactNode )
21
- | React . ReactNode
22
- export declare type SettledChildren < T > =
23
- | ( ( state : AsyncFulfilled < T > | AsyncRejected < T > ) => React . ReactNode )
24
- | React . ReactNode
25
-
26
- export declare type PromiseFn < T > = ( props : AsyncProps < T > , controller : AbortController ) => Promise < T >
27
- export declare type DeferFn < T > = (
28
- args : any [ ] ,
29
- props : AsyncProps < T > ,
30
- controller : AbortController
31
- ) => Promise < T >
32
-
33
- export interface AbstractAction {
34
- type : string
35
- meta : { counter : number ; [ meta : string ] : any }
36
- }
37
- export type Meta = AbstractAction [ "meta" ]
38
-
39
- export declare type Start = AbstractAction & { type : "start" ; payload : ( ) => Promise < void > }
40
- export declare type Cancel = AbstractAction & { type : "cancel" }
41
- export declare type Fulfill < T > = AbstractAction & { type : "fulfill" ; payload : T }
42
- export declare type Reject = AbstractAction & { type : "reject" ; payload : Error ; error : true }
43
- export declare type AsyncAction < T > = Start | Cancel | Fulfill < T > | Reject
44
-
45
- export declare interface AsyncOptions < T > {
46
- promise ?: Promise < T >
47
- promiseFn ?: PromiseFn < T >
48
- deferFn ?: DeferFn < T >
49
- watch ?: any
50
- watchFn ?: ( props : AsyncProps < T > , prevProps : AsyncProps < T > ) => any
51
- initialValue ?: T
52
- onResolve ?: ( data : T ) => void
53
- onReject ?: ( error : Error ) => void
54
- reducer ?: (
55
- state : AsyncState < T > ,
56
- action : AsyncAction < T > ,
57
- internalReducer : ( state : AsyncState < T > , action : AsyncAction < T > ) => AsyncState < T >
58
- ) => AsyncState < T >
59
- dispatcher ?: (
60
- action : AsyncAction < T > ,
61
- internalDispatch : ( action : AsyncAction < T > ) => void ,
62
- props : AsyncProps < T >
63
- ) => void
64
- debugLabel ?: string
65
- [ prop : string ] : any
66
- }
67
-
68
- export declare interface AsyncProps < T > extends AsyncOptions < T > {
69
- children ?: AsyncChildren < T >
70
- }
71
-
72
- export interface AbstractState < T > {
73
- initialValue ?: T | Error
74
- counter : number
75
- promise : Promise < T >
76
- run : ( ...args : any [ ] ) => void
77
- reload : ( ) => void
78
- cancel : ( ) => void
79
- setData : ( data : T , callback ?: ( ) => void ) => T
80
- setError : ( error : Error , callback ?: ( ) => void ) => Error
81
- }
82
-
83
- export declare type AsyncInitial < T , S = AbstractState < T > > = S & {
84
- initialValue ?: undefined
85
- data : undefined
86
- error : undefined
87
- value : undefined
88
- startedAt : undefined
89
- finishedAt : undefined
90
- status : "initial"
91
- isInitial : false
92
- isPending : false
93
- isLoading : false
94
- isFulfilled : false
95
- isResolved : false
96
- isRejected : false
97
- isSettled : false
98
- }
99
- export declare type AsyncPending < T , S = AbstractState < T > > = S & {
100
- data : T | undefined
101
- error : Error | undefined
102
- value : T | Error | undefined
103
- startedAt : Date
104
- finishedAt : undefined
105
- status : "pending"
106
- isInitial : false
107
- isPending : true
108
- isLoading : true
109
- isFulfilled : false
110
- isResolved : false
111
- isRejected : false
112
- isSettled : false
113
- }
114
- export declare type AsyncFulfilled < T , S = AbstractState < T > > = S & {
115
- data : T
116
- error : undefined
117
- value : T
118
- startedAt : Date
119
- finishedAt : Date
120
- status : "fulfilled"
121
- isInitial : false
122
- isPending : false
123
- isLoading : false
124
- isFulfilled : true
125
- isResolved : true
126
- isRejected : false
127
- isSettled : true
128
- }
129
- export declare type AsyncRejected < T , S = AbstractState < T > > = S & {
130
- data : T | undefined
131
- error : Error
132
- value : Error
133
- startedAt : Date
134
- finishedAt : Date
135
- status : "rejected"
136
- isInitial : false
137
- isPending : false
138
- isLoading : false
139
- isFulfilled : false
140
- isResolved : false
141
- isRejected : true
142
- isSettled : true
143
- }
144
- export declare type AsyncState < T , S extends AbstractState < T > = AbstractState < T > > =
145
- | AsyncInitial < T , S >
146
- | AsyncPending < T , S >
147
- | AsyncFulfilled < T , S >
148
- | AsyncRejected < T , S >
8
+ import {
9
+ AsyncProps ,
10
+ AsyncState ,
11
+ InitialChildren ,
12
+ PendingChildren ,
13
+ FulfilledChildren ,
14
+ SettledChildren ,
15
+ RejectedChildren ,
16
+ AbstractState ,
17
+ AsyncAction ,
18
+ } from "./types"
149
19
150
20
export declare class Async < T > extends React . Component < AsyncProps < T > , AsyncState < T > > { }
151
21
0 commit comments