-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
137 lines (111 loc) · 3.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* eslint-disable promise/always-return, promise/catch-or-return */
const { useRef, useReducer, useEffect } = require('react');
const promiseMap = new WeakMap();
const ERROR = 1;
const PENDING = 2;
const getStatus = (fpromise) => {
if (fpromise.cache) {
return [fpromise.cache(), null, false];
}
if (fpromise.failure) {
return [undefined, fpromise.failure(), false];
}
return [undefined, null, true];
};
const toggleState = state => !state;
const useCache = (effect) => {
const self = useRef({
state: [undefined, null, false],
promise: null,
}).current;
const [, forceUpdate] = useReducer(toggleState, true);
const thunk = effect.use.getCurrent();
const fpromise = promiseMap.get(thunk);
if (fpromise) {
self.state = getStatus(fpromise);
self.promise = fpromise;
}
useEffect(() => {
if (self.state[PENDING]) {
fpromise.anyway().then(() => {
if (self.promise === fpromise && self.state[PENDING]) {
forceUpdate();
}
});
}
return effect.watch((payload, p) => {
self.promise = p;
if (!self.state[PENDING]) {
forceUpdate();
}
return p.anyway().then(() => {
if (self.promise === p && self.state[PENDING]) {
forceUpdate();
}
});
});
}, []);
return self.state;
};
const useError = (...args) => useCache(...args)[ERROR];
const usePending = (...args) => useCache(...args)[PENDING];
const exec = (thunk, payload) => {
let promise;
let fpromise;
try {
promise = thunk(payload);
} catch (syncError) {
fpromise = Promise.reject(syncError);
fpromise.failure = () => syncError;
fpromise.anyway = () => Promise.resolve();
return fpromise;
}
if (typeof promise === 'object' && promise !== null && typeof promise.then === 'function') {
fpromise = promise.then(
(result) => {
fpromise.cache = () => result;
return result;
},
(error) => {
fpromise.failure = () => error;
throw error;
},
);
fpromise.anyway = () => fpromise.then(() => undefined, () => {});
return fpromise;
}
fpromise = Promise.resolve(promise);
fpromise.cache = () => promise; // result
fpromise.anyway = () => Promise.resolve();
return fpromise;
};
const createEffect = (handler) => {
const watchers = new Set();
let thunk = handler;
const instance = (payload, ...args) => instance.create(payload, args);
instance.use = (fn) => {
thunk = fn;
promiseMap.delete(thunk);
return instance;
};
instance.use.getCurrent = () => thunk;
instance.once = payload => promiseMap.get(thunk) || instance.create(payload);
instance.create = (payload) => {
if (thunk === undefined) throw new Error('no thunk used in effect');
const fpromise = exec(thunk, payload);
promiseMap.set(thunk, fpromise);
watchers.forEach(watcher => watcher(payload, fpromise));
return fpromise;
};
instance.watch = (watcher) => {
watchers.add(watcher);
return () => watchers.delete(watcher);
};
return instance;
};
module.exports = {
useCache,
useError,
usePending,
createEffect,
};