-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
hooks.ts
410 lines (357 loc) · 9.9 KB
/
hooks.ts
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import { isFunction, isArray, isObject } from '@tarojs/shared';
import { log, INJECTKEY } from '@taro-hooks/shared';
import {
ref,
onMounted,
onUpdated,
onUnmounted,
watchEffect,
watch,
nextTick,
reactive,
unref,
inject,
provide,
h,
toRefs,
} from 'vue';
import type {
Ref,
ToRefs,
UnwrapRef,
VNode,
RendererNode,
RendererElement,
ComponentOptions,
} from 'vue';
export type BasicStateAction<S> = ((state: S) => S) | S;
export type Dispatch<A> = (action: A) => void;
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description deal sideEffect when deps change, like mounted, updated, unmounted
* @param {() => (() => void) | void} create sideEffect function
* @param {Array<unknown> | void | null} deps sideEffect deps
* @returns {void}
*/
export function useEffect(
create: () => (() => void) | void,
deps?: Array<unknown> | void | null,
): void {
log(
'vue.ver useEffect is use watch to simulation.',
'if u want use watchEffect ver. use useWatchEffect instead.',
);
if (!isFunction(create)) {
throw new Error('useEffect only accept a function as the first argument.');
}
if (deps && !isArray(deps)) {
throw new Error('useEffect second argument must be a array.');
}
let sideEffectFn: Ref<unknown> = ref(null);
onMounted(() => {
sideEffectFn.value = create();
});
onUnmounted(() => {
isFunction(sideEffectFn.value) && sideEffectFn.value();
});
if (!deps) {
log('useEffect deps is null. create will run every render');
onUpdated(() => {
sideEffectFn.value = create();
});
return;
}
watch(
() => [...deps],
() => {
sideEffectFn.value = create();
},
// set deep true to watch all deps
{ deep: true },
);
}
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description deal sideEffect when deps(auto recieve) change, like mounted, updated, unmounted
* @param {() => (() => void) | void} create sideEffect function
* @returns {void}
*/
export function useWatchEffect(create: () => (() => void) | void): void {
log('useWatchEffect always clean sideEffect when deps change,');
if (!isFunction(create)) {
throw new Error(
'useWatchEffect only accept a function as the first argument. \n the flush option is default as post',
);
}
watchEffect(
(onInvalidate) => {
const sideEffectFn = create();
if (sideEffectFn) {
onInvalidate(() => {
sideEffectFn();
});
}
},
{
flush: 'post',
},
);
}
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description deal sideEffect when deps change, both dom update. like mounted, updated, unmounted
* @param {() => (() => void) | void} create sideEffect function
* @param {Array<unknown> | void | null} deps sideEffect deps
* @returns {void}
*/
export function useLayoutEffect(
create: () => (() => void) | void,
deps?: Array<unknown> | void | null,
): void {
log('vue.ver useLayoutEffect is use watch + nextTick to simulation.');
if (!isFunction(create)) {
throw new Error(
'useLayoutEffect only accept a function as the first argument.',
);
}
if (deps && !isArray(deps)) {
throw new Error('useLayoutEffect second argument must be a array.');
}
let sideEffectFn: Ref<unknown> = ref(null);
onMounted(() => {
sideEffectFn.value = create();
});
onUnmounted(() => {
isFunction(sideEffectFn.value) && sideEffectFn.value();
});
if (!deps) {
log('useLayoutEffect deps is null. create will run every render');
onUpdated(() => {
nextTick(() => {
sideEffectFn.value = create();
});
});
return;
}
watch(
() => [...deps],
() => {
nextTick(() => {
sideEffectFn.value = create();
});
},
// set deep true to watch all deps
{ deep: true },
);
}
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description memo function when deps change
* @param {function} callback function
* @param {Array<unknown> | void | null} deps sideEffect deps
* @returns {void}
*/
export function useCallback<T>(
callback: T,
deps?: Array<unknown> | void | null,
): T {
log('vue.ver useCallback is use watch to simulation.');
if (!isFunction(callback)) {
throw new TypeError(
'useCallback only accept a function as the first argument.',
);
}
const callbackRef = ref(callback);
if (deps) {
watch(
() => [...deps],
() => {
callbackRef.value = callback;
},
{ deep: true },
);
}
return callbackRef.value;
}
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description memo variable when deps change to recaculate it
* @param {() => (() => void) | void} create sideEffect function
* @param {Array<unknown> | void | null} deps sideEffect deps
* @returns {T} memo variable
*/
export function useMemo<T>(
create: () => T,
deps?: Array<unknown> | void | null,
): Ref<T> {
log('vue.ver useMemo is use watch to simulation.');
if (!isFunction(create)) {
throw new TypeError(
'useMemo only accept a function as the first argument.',
);
}
if (deps && !isArray(deps)) {
throw new TypeError('useMemo second argument must be a array.');
}
const memoRef = ref(create()) as Ref<T>;
if (deps) {
watch(
() => [...deps],
() => {
memoRef.value = create();
},
{ deep: true },
);
}
return reactive(memoRef);
}
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description a latest reactive value
* @param {T} initialValue initialValue
* @param {boolean} toRefTmpl need ref active
* @returns {T} ref of value
*/
export function useRef<T>(
initialValue: T,
toRefTmpl?: boolean,
): ToRefs<{
current: UnwrapRef<T>;
}> {
log('vue.ver useRef is use reactive to simulation.');
const reactiveRef = reactive({ current: initialValue });
// @ts-ignore
return toRefTmpl ? toRefs(reactiveRef) : reactiveRef;
}
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description lets you add a state variable to your component
* @param {unknown} initialState initialState
* @returns {[state, dispatch]} state and dispatch
*/
export function useState<S>(
initialState?: (() => S) | S,
): [Ref<S>, Dispatch<BasicStateAction<S>>] {
log('vue.ver useState is use customRef to simulation.');
let state = initialState;
if (isFunction(initialState)) {
state = initialState();
}
const reactiveState = ref(state) as Ref<S>;
const dispatchAction = (actionOrState: ((prevState: S) => S) | S) => {
if (isFunction(actionOrState)) {
reactiveState.value = actionOrState(reactiveState.value);
} else {
reactiveState.value = actionOrState;
}
};
return [reactiveState, dispatchAction];
}
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description lets you add a reducer to your component.
* @param {(initState, action) => S} reducer
* @param {unknown} initialArg initialArg
* @returns {[state, dispatch]} state and dispatch
*/
export function useReducer<S, A>(
reducer: (initState: S, action: A) => S,
initialArg: S,
init?: (initialArg: S) => S,
): [Ref<S>, Dispatch<A>] {
if (!isFunction(reducer)) {
throw new TypeError(
'useReducer only accept a function as the first argument.',
);
}
if (!isObject(initialArg)) {
log('recommand the initialArg is object');
}
let initialState = initialArg;
// tirgger init
if (isFunction(init)) {
initialState = init(initialState);
}
const state = ref(initialState) as Ref<S>;
const dispatch = (action: A) => {
state.value = reducer(unref(state), action);
};
return [reactive(state), dispatch];
}
export interface IProviderProps<T = Record<string, any>> {
value?: T;
}
export type VueContext<T> = {
$$inject: T;
Provider: VNode<RendererNode, RendererElement, IProviderProps<T>>;
Consumer: VNode;
};
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description vue.ver createContext
* @param {T} defaultValue init or defaultValue
* @returns {VueContext<T>} vue context
*/
export function createContext<T = Record<string, any>>(
defaultValue: T,
): VueContext<T> {
const ProviderElement: ComponentOptions<IProviderProps<T>> = {
name: '$$Provider',
props: {
value: Object,
},
setup(props, context) {
const provideValue = ref(
props?.value ?? context?.attrs?.value ?? defaultValue,
);
const prevProvider = inject(INJECTKEY, ref({}));
watchEffect(() => {
// fetch prev provide value
provideValue.value = {
...(prevProvider.value as object),
...((props?.value ??
context?.attrs?.value ??
defaultValue) as object),
};
});
// props.value => attrs.value => defaultValue
provide(INJECTKEY, provideValue);
},
render() {
return this.$slots.default();
},
};
return {
[INJECTKEY]: defaultValue,
Provider: h(ProviderElement),
Consumer: h({
render() {
return this.$slots.default();
},
}),
};
}
/**
* @see https://next-version-taro-hooks.vercel.app/docs/quick/vue-useage
* @version taro-hooks >= 2.0.0
* @description lets you read and subscribe to context from your component
* @param {VueContext<T>} Context
* @returns {T} context
*/
export function useContext<T>(Context: VueContext<T>): T {
if (!isObject(Context) || !Context[INJECTKEY]) {
throw new TypeError(
'useContext only accept a context as the first argument.',
);
}
return inject(INJECTKEY) as T;
}