File tree 3 files changed +43
-31
lines changed
extension/method/provider
3 files changed +43
-31
lines changed Original file line number Diff line number Diff line change
1
+ import { applyIdentityProperty } from '../../../utils/applyIdentityProperty' ;
1
2
import { functionMethod } from './functionMethod' ;
2
3
// eslint-disable-next-line @typescript-eslint/no-explicit-any
3
4
type Method = ( name : string , value : any ) => ( ) => any ;
@@ -45,6 +46,10 @@ export class Provider {
45
46
return this . _method ( name , value ( ) ) ;
46
47
}
47
48
48
- return this . _method ( name , value ) ;
49
+ // FIXME: Do this smarter, it's a bit counter intuitive to return a new
50
+ // proxy every single time this function is called. It should probably mock
51
+ // based on name if that ends up being a string representing the type
52
+ // signature.
53
+ return applyIdentityProperty ( this . _method , name ) ( name , value ) ;
49
54
}
50
55
}
Original file line number Diff line number Diff line change
1
+ import { applyIdentityProperty } from '../utils/applyIdentityProperty' ;
2
+
1
3
// eslint-disable-next-line
2
4
type Factory = ( ...args : any [ ] ) => any ;
3
5
@@ -16,36 +18,7 @@ export class Repository {
16
18
}
17
19
18
20
public registerFactory ( key : string , factory : Factory ) : void {
19
- const proxy : Factory = new Proxy (
20
- factory ,
21
- {
22
- apply ( target : Factory , _this : unknown , args : Parameters < Factory > ) : ReturnType < Factory > {
23
- const mock : ReturnType < Factory > = target ( ...args ) ;
24
-
25
- if ( typeof mock === 'undefined' ) {
26
- return ;
27
- }
28
-
29
- if ( ! ( mock instanceof Object ) ) {
30
- return mock ;
31
- }
32
-
33
- if ( typeof mock . __factory !== 'undefined' ) {
34
- return mock ;
35
- }
36
-
37
- Object . defineProperty ( mock , '__factory' , {
38
- enumerable : false ,
39
- writable : false ,
40
- value : key ,
41
- } ) ;
42
-
43
- return mock ;
44
- } ,
45
- } ,
46
- ) ;
47
-
48
- this . _repository [ key ] = proxy ;
21
+ this . _repository [ key ] = applyIdentityProperty ( factory , key ) ;
49
22
}
50
23
51
24
public getFactory ( key : string ) : Factory {
Original file line number Diff line number Diff line change
1
+ // eslint-disable-next-line
2
+ type Function < K > = ( ...args : any [ ] ) => K ;
3
+ type IdentityFlavored < K > = K & { __ident ?: string } ;
4
+
5
+ export function applyIdentityProperty < K extends object , T extends Function < K > > ( target : T , identity : string ) : T {
6
+ return new Proxy (
7
+ target ,
8
+ {
9
+ apply ( func : T , _this : unknown , args : Parameters < T > ) : IdentityFlavored < K > | undefined {
10
+ const t : IdentityFlavored < K > = func ( ...args ) ;
11
+
12
+ if ( typeof t === 'undefined' ) {
13
+ return ;
14
+ }
15
+
16
+ if ( ! ( t instanceof Object ) ) {
17
+ return t ;
18
+ }
19
+
20
+ if ( typeof t . __ident !== 'undefined' ) {
21
+ return t ;
22
+ }
23
+
24
+ Object . defineProperty ( t , '__ident' , {
25
+ enumerable : false ,
26
+ writable : false ,
27
+ value : identity ,
28
+ } ) ;
29
+
30
+ return t ;
31
+ } ,
32
+ } ,
33
+ ) ;
34
+ }
You can’t perform that action at this time.
0 commit comments