@alterior/annotations 3.0.0-rc.4 → 3.0.0-rc.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -6
- package/dist/annotations.d.ts +96 -15
- package/dist/annotations.d.ts.map +1 -1
- package/dist/annotations.js +335 -347
- package/dist/annotations.js.map +1 -1
- package/dist/annotations.test.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/sealed.js +3 -3
- package/dist/sealed.js.map +1 -1
- package/dist/test.js.map +1 -1
- package/dist.esm/annotations.d.ts +96 -15
- package/dist.esm/annotations.d.ts.map +1 -1
- package/dist.esm/annotations.js +94 -21
- package/dist.esm/annotations.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -89,9 +89,3 @@ Sometimes you have multiple decorators that are storing the same type of metadat
|
|
|
89
89
|
export const Red = () => Color('red');
|
|
90
90
|
export const Blue = () => Color('red');
|
|
91
91
|
```
|
|
92
|
-
|
|
93
|
-
## Angular
|
|
94
|
-
|
|
95
|
-
(This is probably only useful inside Alterior; it is used to provide Angular compatibility for `@alterior/di`)
|
|
96
|
-
|
|
97
|
-
This library stores annotations the same way that Angular does, and does it in a compatible manner. However, all Alterior annotations will be ignored by Angular unless an Angular-specific metadata name is applied to the annotation. This can be done using the `@NgMetadataName()` decorator. The decorator causes the annotation instances to have their `ngMetadataName` property set to the string passed to the decorator.
|
package/dist/annotations.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ import { NotSupportedError } from '@alterior/common';
|
|
|
12
12
|
*/
|
|
13
13
|
export interface IAnnotation {
|
|
14
14
|
$metadataName?: string;
|
|
15
|
-
ngMetadataName?: string;
|
|
16
15
|
}
|
|
17
16
|
export declare const ANNOTATIONS_KEY = "__annotations__";
|
|
18
17
|
export declare const CONSTRUCTOR_PARAMETERS_ANNOTATIONS_KEY = "__parameters__";
|
|
@@ -168,7 +167,6 @@ class ABC {
|
|
|
168
167
|
export declare class Annotation implements IAnnotation {
|
|
169
168
|
constructor(props?: any);
|
|
170
169
|
readonly $metadataName: string;
|
|
171
|
-
readonly ngMetadataName: string;
|
|
172
170
|
toString(): string;
|
|
173
171
|
static getMetadataName(): string;
|
|
174
172
|
/**
|
|
@@ -217,20 +215,101 @@ export declare class Annotation implements IAnnotation {
|
|
|
217
215
|
* @param index
|
|
218
216
|
*/
|
|
219
217
|
applyToConstructorParameter(target: any, index: number): this;
|
|
218
|
+
/**
|
|
219
|
+
* Filter the given list of annotations for the ones which match this annotation class
|
|
220
|
+
* based on matching $metadataName.
|
|
221
|
+
*
|
|
222
|
+
* @param this
|
|
223
|
+
* @param annotations
|
|
224
|
+
*/
|
|
220
225
|
static filter<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, annotations: IAnnotation[]): T[];
|
|
226
|
+
/**
|
|
227
|
+
* Get all instances of this annotation class attached to the given class.
|
|
228
|
+
* If called on a subclass of Annotation, it returns only annotations that match
|
|
229
|
+
* that subclass.
|
|
230
|
+
* @param this
|
|
231
|
+
* @param type The class to check
|
|
232
|
+
*/
|
|
221
233
|
static getAllForClass<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, type: any): T[];
|
|
234
|
+
/**
|
|
235
|
+
* Get a single instance of this annotation class attached to the given class.
|
|
236
|
+
* If called on a subclass of Annotation, it returns only annotations that match
|
|
237
|
+
* that subclass.
|
|
238
|
+
*
|
|
239
|
+
* @param this
|
|
240
|
+
* @param type
|
|
241
|
+
*/
|
|
222
242
|
static getForClass<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, type: any): T;
|
|
243
|
+
/**
|
|
244
|
+
* Get all instances of this annotation class attached to the given method.
|
|
245
|
+
* If called on a subclass of Annotation, it returns only annotations that match
|
|
246
|
+
* that subclass.
|
|
247
|
+
*
|
|
248
|
+
* @param this
|
|
249
|
+
* @param type The class where the method is defined
|
|
250
|
+
* @param methodName The name of the method to check
|
|
251
|
+
*/
|
|
223
252
|
static getAllForMethod<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, type: any, methodName: string): T[];
|
|
253
|
+
/**
|
|
254
|
+
* Get one instance of this annotation class attached to the given method.
|
|
255
|
+
* If called on a subclass of Annotation, it returns only annotations that match
|
|
256
|
+
* that subclass.
|
|
257
|
+
*
|
|
258
|
+
* @param this
|
|
259
|
+
* @param type The class where the method is defined
|
|
260
|
+
* @param methodName The name of the method to check
|
|
261
|
+
*/
|
|
224
262
|
static getForMethod<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, type: any, methodName: string): T;
|
|
263
|
+
/**
|
|
264
|
+
* Get all instances of this annotation class attached to the given property.
|
|
265
|
+
* If called on a subclass of Annotation, it returns only annotations that match
|
|
266
|
+
* that subclass.
|
|
267
|
+
*
|
|
268
|
+
* @param this
|
|
269
|
+
* @param type The class where the property is defined
|
|
270
|
+
* @param propertyName The name of the property to check
|
|
271
|
+
*/
|
|
225
272
|
static getAllForProperty<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, type: any, propertyName: string): T[];
|
|
273
|
+
/**
|
|
274
|
+
* Get one instance of this annotation class attached to the given property.
|
|
275
|
+
* If called on a subclass of Annotation, it returns only annotations that match
|
|
276
|
+
* that subclass.
|
|
277
|
+
*
|
|
278
|
+
* @param this
|
|
279
|
+
* @param type The class where the property is defined
|
|
280
|
+
* @param propertyName The name of the property to check
|
|
281
|
+
*/
|
|
226
282
|
static getForProperty<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, type: any, propertyName: string): T;
|
|
283
|
+
/**
|
|
284
|
+
* Get all instances of this annotation class attached to the parameters of the given method.
|
|
285
|
+
* If called on a subclass of Annotation, it returns only annotations that match
|
|
286
|
+
* that subclass.
|
|
287
|
+
*
|
|
288
|
+
* @param this
|
|
289
|
+
* @param type The class where the method is defined
|
|
290
|
+
* @param methodName The name of the method where parameter annotations should be checked for
|
|
291
|
+
*/
|
|
227
292
|
static getAllForParameters<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, type: any, methodName: string): T[][];
|
|
293
|
+
/**
|
|
294
|
+
* Get all instances of this annotation class attached to the parameters of the constructor
|
|
295
|
+
* for the given class.
|
|
296
|
+
* If called on a subclass of Annotation, it returns only annotations that match
|
|
297
|
+
* that subclass.
|
|
298
|
+
*
|
|
299
|
+
* @param this
|
|
300
|
+
* @param type The class where constructor parameter annotations should be checked for
|
|
301
|
+
*/
|
|
228
302
|
static getAllForConstructorParameters<T extends Annotation, TS extends any[]>(this: AnnotationConstructor<T, TS>, type: any): T[][];
|
|
229
303
|
}
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
304
|
+
/**
|
|
305
|
+
* A helper class for managing annotations
|
|
306
|
+
*/
|
|
233
307
|
export declare class Annotations {
|
|
308
|
+
/**
|
|
309
|
+
* Copy the annotations defined for one class onto another.
|
|
310
|
+
* @param from The class to copy annotations from
|
|
311
|
+
* @param to The class to copy annotations to
|
|
312
|
+
*/
|
|
234
313
|
static copyClassAnnotations(from: Function, to: Function): void;
|
|
235
314
|
/**
|
|
236
315
|
* Apply this annotation to a given target.
|
|
@@ -309,13 +388,21 @@ export declare class Annotations {
|
|
|
309
388
|
* @param methodName
|
|
310
389
|
*/
|
|
311
390
|
static getConstructorParameterAnnotations(type: any): IAnnotation[][];
|
|
391
|
+
/**
|
|
392
|
+
* Get a list of annotations for the given class.
|
|
393
|
+
* @param target
|
|
394
|
+
*/
|
|
312
395
|
private static getListForClass;
|
|
396
|
+
/**
|
|
397
|
+
* Get a list of own annotations for the given class, or create that list.
|
|
398
|
+
* @param target
|
|
399
|
+
*/
|
|
313
400
|
private static getOrCreateListForClass;
|
|
314
401
|
/**
|
|
315
402
|
* Gets a map of the annotations defined on all properties of the given class/function. To get the annotations of instance fields,
|
|
316
403
|
* make sure to use `Class.prototype`, otherwise static annotations are returned.
|
|
317
404
|
*/
|
|
318
|
-
static getMapForClassProperties(target: Object, mapToPopulate?:
|
|
405
|
+
static getMapForClassProperties(target: Object, mapToPopulate?: Record<string, IAnnotation[]>): Record<string, IAnnotation[]>;
|
|
319
406
|
private static getOrCreateMapForClassProperties;
|
|
320
407
|
private static getListForProperty;
|
|
321
408
|
private static getOrCreateListForProperty;
|
|
@@ -325,7 +412,7 @@ export declare class Annotations {
|
|
|
325
412
|
* Get a map of the annotations defined on all parameters of all methods of the given class/function.
|
|
326
413
|
* To get instance methods, make sure to pass `Class.prototype`, otherwise the results are for static fields.
|
|
327
414
|
*/
|
|
328
|
-
static getMapForMethodParameters(target: Object, mapToPopulate?:
|
|
415
|
+
static getMapForMethodParameters(target: Object, mapToPopulate?: Record<string, IAnnotation[][]>): Record<string, IAnnotation[][]>;
|
|
329
416
|
private static getOrCreateMapForMethodParameters;
|
|
330
417
|
private static getListForMethodParameters;
|
|
331
418
|
private static getOrCreateListForMethodParameters;
|
|
@@ -333,15 +420,9 @@ export declare class Annotations {
|
|
|
333
420
|
private static getListForConstructorParameters;
|
|
334
421
|
}
|
|
335
422
|
/**
|
|
336
|
-
*
|
|
423
|
+
* An annotation for attaching a label to a programmatic element.
|
|
424
|
+
* Can be queried with LabelAnnotation.getForClass() for example.
|
|
337
425
|
*/
|
|
338
|
-
export declare class AngularAnnotations {
|
|
339
|
-
static getClassAnnotations(target: any): IAnnotation[];
|
|
340
|
-
static getMethodAnnotations(target: any, methodName: string): IAnnotation[];
|
|
341
|
-
static getPropertyAnnotations(target: any, name: string): IAnnotation[];
|
|
342
|
-
static getParameterAnnotations(target: any, methodName: string): IAnnotation[][];
|
|
343
|
-
}
|
|
344
|
-
export declare function NgMetadataName(name: string): (target: any) => any;
|
|
345
426
|
export declare class LabelAnnotation extends Annotation {
|
|
346
427
|
readonly text: string;
|
|
347
428
|
constructor(text: string);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"annotations.d.ts","sourceRoot":"","sources":["../src/annotations.ts"],"names":[],"mappings":"AAEA;;;;;;GAMG;AAEH,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAErD;;;GAGG;AACH,MAAM,WAAW,WAAW;IACxB,aAAa,CAAC,EAAG,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"annotations.d.ts","sourceRoot":"","sources":["../src/annotations.ts"],"names":[],"mappings":"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"}
|