@adaas/a-concept 0.1.23 → 0.1.25
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/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.mts +3952 -0
- package/dist/index.d.ts +3952 -50
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +5 -6
- package/src/global/A-Abstraction/A-Abstraction-Extend.decorator.ts +18 -13
- package/src/global/A-Component/A-Component.meta.ts +3 -2
- package/src/global/A-Container/A-Container.meta.ts +5 -8
- package/src/global/A-Context/A-Context.class.ts +81 -7
- package/src/global/A-Context/A-Context.error.ts +4 -0
- package/src/global/A-Dependency/A-Dependency-Default.decorator.ts +75 -0
- package/src/global/A-Dependency/A-Dependency-Load.decorator.ts +80 -0
- package/src/global/A-Dependency/A-Dependency-Require.decorator.ts +68 -0
- package/src/global/A-Dependency/A-Dependency.class.ts +33 -0
- package/src/global/A-Dependency/A-Dependency.error.ts +13 -0
- package/src/global/A-Dependency/A-Dependency.types.ts +28 -0
- package/src/global/A-Entity/A-Entity.class.ts +2 -1
- package/src/global/A-Feature/A-Feature-Define.decorator.ts +7 -4
- package/src/global/A-Feature/A-Feature-Extend.decorator.ts +23 -17
- package/src/global/A-Feature/A-Feature.class.ts +12 -1
- package/src/global/A-Feature/A-Feature.types.ts +33 -8
- package/src/global/A-Inject/A-Inject.decorator.ts +4 -2
- package/src/global/A-Inject/A-Inject.types.ts +5 -3
- package/src/global/A-Scope/A-Scope.class.ts +85 -57
- package/src/global/A-Stage/A-Stage.class.ts +22 -2
- package/src/global/A-Stage/A-Stage.error.ts +2 -0
- package/src/global/A-Stage/A-Stage.types.ts +7 -2
- package/src/global/A-StepManager/A-StepManager.class.ts +19 -13
- package/src/helpers/A_Common.helper.ts +101 -0
- package/src/helpers/A_TypeGuards.helper.ts +8 -0
- package/src/index.ts +88 -0
- package/tests/A-Component.test.ts +1 -1
- package/tests/A-Concept.test.ts +58 -10
- package/tests/A-Dependency.test.ts +93 -0
- package/tests/A-Feature.test.ts +11 -11
- package/tests/A-Scope.test.ts +10 -10
- package/tests/A-StepManager.test.ts +60 -11
- package/tsconfig.json +2 -2
- package/tsup.config.ts +32 -0
- package/dist/index.js +0 -112
- package/dist/index.js.map +0 -1
- package/dist/src/constants/env.constants.d.ts +0 -33
- package/dist/src/constants/env.constants.js +0 -47
- package/dist/src/constants/env.constants.js.map +0 -1
- package/dist/src/global/A-Abstraction/A-Abstraction-Extend.decorator.d.ts +0 -23
- package/dist/src/global/A-Abstraction/A-Abstraction-Extend.decorator.js +0 -89
- package/dist/src/global/A-Abstraction/A-Abstraction-Extend.decorator.js.map +0 -1
- package/dist/src/global/A-Abstraction/A-Abstraction.class.d.ts +0 -74
- package/dist/src/global/A-Abstraction/A-Abstraction.class.js +0 -130
- package/dist/src/global/A-Abstraction/A-Abstraction.class.js.map +0 -1
- package/dist/src/global/A-Abstraction/A-Abstraction.error.d.ts +0 -7
- package/dist/src/global/A-Abstraction/A-Abstraction.error.js +0 -12
- package/dist/src/global/A-Abstraction/A-Abstraction.error.js.map +0 -1
- package/dist/src/global/A-Abstraction/A-Abstraction.types.d.ts +0 -38
- package/dist/src/global/A-Abstraction/A-Abstraction.types.js +0 -3
- package/dist/src/global/A-Abstraction/A-Abstraction.types.js.map +0 -1
- package/dist/src/global/A-Caller/A_Caller.class.d.ts +0 -33
- package/dist/src/global/A-Caller/A_Caller.class.js +0 -44
- package/dist/src/global/A-Caller/A_Caller.class.js.map +0 -1
- package/dist/src/global/A-Caller/A_Caller.error.d.ts +0 -7
- package/dist/src/global/A-Caller/A_Caller.error.js +0 -12
- package/dist/src/global/A-Caller/A_Caller.error.js.map +0 -1
- package/dist/src/global/A-Caller/A_Caller.types.d.ts +0 -18
- package/dist/src/global/A-Caller/A_Caller.types.js +0 -3
- package/dist/src/global/A-Caller/A_Caller.types.js.map +0 -1
- package/dist/src/global/A-Component/A-Component.class.d.ts +0 -34
- package/dist/src/global/A-Component/A-Component.class.js +0 -56
- package/dist/src/global/A-Component/A-Component.class.js.map +0 -1
- package/dist/src/global/A-Component/A-Component.constants.d.ts +0 -6
- package/dist/src/global/A-Component/A-Component.constants.js +0 -11
- package/dist/src/global/A-Component/A-Component.constants.js.map +0 -1
- package/dist/src/global/A-Component/A-Component.meta.d.ts +0 -34
- package/dist/src/global/A-Component/A-Component.meta.js +0 -77
- package/dist/src/global/A-Component/A-Component.meta.js.map +0 -1
- package/dist/src/global/A-Component/A-Component.types.d.ts +0 -76
- package/dist/src/global/A-Component/A-Component.types.js +0 -4
- package/dist/src/global/A-Component/A-Component.types.js.map +0 -1
- package/dist/src/global/A-Concept/A-Concept.class.d.ts +0 -153
- package/dist/src/global/A-Concept/A-Concept.class.js +0 -260
- package/dist/src/global/A-Concept/A-Concept.class.js.map +0 -1
- package/dist/src/global/A-Concept/A-Concept.constants.d.ts +0 -33
- package/dist/src/global/A-Concept/A-Concept.constants.js +0 -39
- package/dist/src/global/A-Concept/A-Concept.constants.js.map +0 -1
- package/dist/src/global/A-Concept/A-Concept.meta.d.ts +0 -6
- package/dist/src/global/A-Concept/A-Concept.meta.js +0 -12
- package/dist/src/global/A-Concept/A-Concept.meta.js.map +0 -1
- package/dist/src/global/A-Concept/A-Concept.types.d.ts +0 -66
- package/dist/src/global/A-Concept/A-Concept.types.js +0 -3
- package/dist/src/global/A-Concept/A-Concept.types.js.map +0 -1
- package/dist/src/global/A-Container/A-Container.class.d.ts +0 -52
- package/dist/src/global/A-Container/A-Container.class.js +0 -78
- package/dist/src/global/A-Container/A-Container.class.js.map +0 -1
- package/dist/src/global/A-Container/A-Container.constants.d.ts +0 -6
- package/dist/src/global/A-Container/A-Container.constants.js +0 -11
- package/dist/src/global/A-Container/A-Container.constants.js.map +0 -1
- package/dist/src/global/A-Container/A-Container.meta.d.ts +0 -35
- package/dist/src/global/A-Container/A-Container.meta.js +0 -83
- package/dist/src/global/A-Container/A-Container.meta.js.map +0 -1
- package/dist/src/global/A-Container/A-Container.types.d.ts +0 -75
- package/dist/src/global/A-Container/A-Container.types.js +0 -4
- package/dist/src/global/A-Container/A-Container.types.js.map +0 -1
- package/dist/src/global/A-Context/A-Context.class.d.ts +0 -361
- package/dist/src/global/A-Context/A-Context.class.js +0 -603
- package/dist/src/global/A-Context/A-Context.class.js.map +0 -1
- package/dist/src/global/A-Context/A-Context.error.d.ts +0 -20
- package/dist/src/global/A-Context/A-Context.error.js +0 -25
- package/dist/src/global/A-Context/A-Context.error.js.map +0 -1
- package/dist/src/global/A-Context/A-Context.types.d.ts +0 -5
- package/dist/src/global/A-Context/A-Context.types.js +0 -3
- package/dist/src/global/A-Context/A-Context.types.js.map +0 -1
- package/dist/src/global/A-Dependency/A-DependencyReference.class.d.ts +0 -0
- package/dist/src/global/A-Dependency/A-DependencyReference.class.js +0 -49
- package/dist/src/global/A-Dependency/A-DependencyReference.class.js.map +0 -1
- package/dist/src/global/A-Dependency/A-DependencyReference.types.d.ts +0 -0
- package/dist/src/global/A-Dependency/A-DependencyReference.types.js +0 -58
- package/dist/src/global/A-Dependency/A-DependencyReference.types.js.map +0 -1
- package/dist/src/global/A-Entity/A-Entity.class.d.ts +0 -214
- package/dist/src/global/A-Entity/A-Entity.class.js +0 -281
- package/dist/src/global/A-Entity/A-Entity.class.js.map +0 -1
- package/dist/src/global/A-Entity/A-Entity.constants.d.ts +0 -11
- package/dist/src/global/A-Entity/A-Entity.constants.js +0 -17
- package/dist/src/global/A-Entity/A-Entity.constants.js.map +0 -1
- package/dist/src/global/A-Entity/A-Entity.error.d.ts +0 -7
- package/dist/src/global/A-Entity/A-Entity.error.js +0 -12
- package/dist/src/global/A-Entity/A-Entity.error.js.map +0 -1
- package/dist/src/global/A-Entity/A-Entity.meta.d.ts +0 -11
- package/dist/src/global/A-Entity/A-Entity.meta.js +0 -18
- package/dist/src/global/A-Entity/A-Entity.meta.js.map +0 -1
- package/dist/src/global/A-Entity/A-Entity.types.d.ts +0 -56
- package/dist/src/global/A-Entity/A-Entity.types.js +0 -5
- package/dist/src/global/A-Entity/A-Entity.types.js.map +0 -1
- package/dist/src/global/A-Error/A_Error.class.d.ts +0 -229
- package/dist/src/global/A-Error/A_Error.class.js +0 -296
- package/dist/src/global/A-Error/A_Error.class.js.map +0 -1
- package/dist/src/global/A-Error/A_Error.constants.d.ts +0 -5
- package/dist/src/global/A-Error/A_Error.constants.js +0 -9
- package/dist/src/global/A-Error/A_Error.constants.js.map +0 -1
- package/dist/src/global/A-Error/A_Error.types.d.ts +0 -93
- package/dist/src/global/A-Error/A_Error.types.js +0 -3
- package/dist/src/global/A-Error/A_Error.types.js.map +0 -1
- package/dist/src/global/A-Feature/A-Feature-Define.decorator.d.ts +0 -15
- package/dist/src/global/A-Feature/A-Feature-Define.decorator.js +0 -76
- package/dist/src/global/A-Feature/A-Feature-Define.decorator.js.map +0 -1
- package/dist/src/global/A-Feature/A-Feature-Extend.decorator.d.ts +0 -56
- package/dist/src/global/A-Feature/A-Feature-Extend.decorator.js +0 -119
- package/dist/src/global/A-Feature/A-Feature-Extend.decorator.js.map +0 -1
- package/dist/src/global/A-Feature/A-Feature.class.d.ts +0 -175
- package/dist/src/global/A-Feature/A-Feature.class.js +0 -318
- package/dist/src/global/A-Feature/A-Feature.class.js.map +0 -1
- package/dist/src/global/A-Feature/A-Feature.error.d.ts +0 -25
- package/dist/src/global/A-Feature/A-Feature.error.js +0 -33
- package/dist/src/global/A-Feature/A-Feature.error.js.map +0 -1
- package/dist/src/global/A-Feature/A-Feature.types.d.ts +0 -310
- package/dist/src/global/A-Feature/A-Feature.types.js +0 -26
- package/dist/src/global/A-Feature/A-Feature.types.js.map +0 -1
- package/dist/src/global/A-Fragment/A-Fragment.class.d.ts +0 -36
- package/dist/src/global/A-Fragment/A-Fragment.class.js +0 -46
- package/dist/src/global/A-Fragment/A-Fragment.class.js.map +0 -1
- package/dist/src/global/A-Fragment/A-Fragment.types.d.ts +0 -21
- package/dist/src/global/A-Fragment/A-Fragment.types.js +0 -6
- package/dist/src/global/A-Fragment/A-Fragment.types.js.map +0 -1
- package/dist/src/global/A-Inject/A-Inject.decorator.d.ts +0 -80
- package/dist/src/global/A-Inject/A-Inject.decorator.js +0 -49
- package/dist/src/global/A-Inject/A-Inject.decorator.js.map +0 -1
- package/dist/src/global/A-Inject/A-Inject.error.d.ts +0 -5
- package/dist/src/global/A-Inject/A-Inject.error.js +0 -10
- package/dist/src/global/A-Inject/A-Inject.error.js.map +0 -1
- package/dist/src/global/A-Inject/A-Inject.types.d.ts +0 -42
- package/dist/src/global/A-Inject/A-Inject.types.js +0 -3
- package/dist/src/global/A-Inject/A-Inject.types.js.map +0 -1
- package/dist/src/global/A-Meta/A-Meta.class.d.ts +0 -97
- package/dist/src/global/A-Meta/A-Meta.class.js +0 -164
- package/dist/src/global/A-Meta/A-Meta.class.js.map +0 -1
- package/dist/src/global/A-Meta/A-Meta.types.d.ts +0 -14
- package/dist/src/global/A-Meta/A-Meta.types.js +0 -3
- package/dist/src/global/A-Meta/A-Meta.types.js.map +0 -1
- package/dist/src/global/A-Scope/A-Scope.class.d.ts +0 -466
- package/dist/src/global/A-Scope/A-Scope.class.js +0 -791
- package/dist/src/global/A-Scope/A-Scope.class.js.map +0 -1
- package/dist/src/global/A-Scope/A-Scope.error.d.ts +0 -8
- package/dist/src/global/A-Scope/A-Scope.error.js +0 -13
- package/dist/src/global/A-Scope/A-Scope.error.js.map +0 -1
- package/dist/src/global/A-Scope/A-Scope.types.d.ts +0 -81
- package/dist/src/global/A-Scope/A-Scope.types.js +0 -3
- package/dist/src/global/A-Scope/A-Scope.types.js.map +0 -1
- package/dist/src/global/A-Stage/A-Stage.class.d.ts +0 -112
- package/dist/src/global/A-Stage/A-Stage.class.js +0 -240
- package/dist/src/global/A-Stage/A-Stage.class.js.map +0 -1
- package/dist/src/global/A-Stage/A-Stage.error.d.ts +0 -4
- package/dist/src/global/A-Stage/A-Stage.error.js +0 -11
- package/dist/src/global/A-Stage/A-Stage.error.js.map +0 -1
- package/dist/src/global/A-Stage/A-Stage.types.d.ts +0 -97
- package/dist/src/global/A-Stage/A-Stage.types.js +0 -43
- package/dist/src/global/A-Stage/A-Stage.types.js.map +0 -1
- package/dist/src/global/A-StepManager/A-StepManager.class.d.ts +0 -20
- package/dist/src/global/A-StepManager/A-StepManager.class.js +0 -111
- package/dist/src/global/A-StepManager/A-StepManager.class.js.map +0 -1
- package/dist/src/global/A-StepManager/A-StepManager.error.d.ts +0 -4
- package/dist/src/global/A-StepManager/A-StepManager.error.js +0 -9
- package/dist/src/global/A-StepManager/A-StepManager.error.js.map +0 -1
- package/dist/src/global/ASEID/ASEID.class.d.ts +0 -130
- package/dist/src/global/ASEID/ASEID.class.js +0 -167
- package/dist/src/global/ASEID/ASEID.class.js.map +0 -1
- package/dist/src/global/ASEID/ASEID.constants.d.ts +0 -0
- package/dist/src/global/ASEID/ASEID.constants.js +0 -2
- package/dist/src/global/ASEID/ASEID.constants.js.map +0 -1
- package/dist/src/global/ASEID/ASEID.error.d.ts +0 -5
- package/dist/src/global/ASEID/ASEID.error.js +0 -10
- package/dist/src/global/ASEID/ASEID.error.js.map +0 -1
- package/dist/src/global/ASEID/ASEID.types.d.ts +0 -65
- package/dist/src/global/ASEID/ASEID.types.js +0 -5
- package/dist/src/global/ASEID/ASEID.types.js.map +0 -1
- package/dist/src/helpers/A_Common.helper.d.ts +0 -28
- package/dist/src/helpers/A_Common.helper.js +0 -170
- package/dist/src/helpers/A_Common.helper.js.map +0 -1
- package/dist/src/helpers/A_Formatter.helper.d.ts +0 -35
- package/dist/src/helpers/A_Formatter.helper.js +0 -62
- package/dist/src/helpers/A_Formatter.helper.js.map +0 -1
- package/dist/src/helpers/A_Identity.helper.d.ts +0 -29
- package/dist/src/helpers/A_Identity.helper.js +0 -43
- package/dist/src/helpers/A_Identity.helper.js.map +0 -1
- package/dist/src/helpers/A_TypeGuards.helper.d.ts +0 -207
- package/dist/src/helpers/A_TypeGuards.helper.js +0 -296
- package/dist/src/helpers/A_TypeGuards.helper.js.map +0 -1
- package/dist/src/types/A_Common.types.d.ts +0 -36
- package/dist/src/types/A_Common.types.js +0 -3
- package/dist/src/types/A_Common.types.js.map +0 -1
- package/index.ts +0 -81
- package/src/global/A-Dependency/A-DependencyReference.class.ts +0 -61
- package/src/global/A-Dependency/A-DependencyReference.types.ts +0 -61
- package/trace-require.js +0 -46
- package/tsconfig.build.json +0 -58
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { A_TYPES__Component_Constructor } from "../A-Component/A-Component.types";
|
|
2
|
-
import { A_TYPES__Container_Constructor } from "../A-Container/A-Container.types";
|
|
3
|
-
import { A_Entity } from "../A-Entity/A-Entity.class";
|
|
4
|
-
import { A_TYPES__Entity_Constructor } from "../A-Entity/A-Entity.types";
|
|
5
|
-
import { A_TYPES__Feature_Constructor } from "../A-Feature/A-Feature.types";
|
|
6
|
-
import { A_TYPES__Fragment_Constructor } from "../A-Fragment/A-Fragment.types";
|
|
7
|
-
import { A_TYPES__Caller_Constructor } from "../A-Caller/A_Caller.types";
|
|
8
|
-
/**
|
|
9
|
-
* A-Inject decorator descriptor type
|
|
10
|
-
* Indicates the type of the decorator function
|
|
11
|
-
*/
|
|
12
|
-
export type A_TYPES__A_InjectDecoratorDescriptor = TypedPropertyDescriptor<(...args: any[]) => Promise<void>>;
|
|
13
|
-
/**
|
|
14
|
-
* A-Inject decorator return type
|
|
15
|
-
* Indicates what the decorator function returns
|
|
16
|
-
*/
|
|
17
|
-
export type A_TYPES__A_InjectDecoratorReturn<T = any> = (target: T, propertyKey: string | symbol | undefined, parameterIndex: number) => void;
|
|
18
|
-
export type A_TYPES__A_InjectDecorator_Meta = Array<{
|
|
19
|
-
target: A_TYPES__InjectableConstructors;
|
|
20
|
-
} | {
|
|
21
|
-
target: A_TYPES__Entity_Constructor;
|
|
22
|
-
instructions: Partial<A_TYPES__A_InjectDecorator_EntityInjectionInstructions>;
|
|
23
|
-
}>;
|
|
24
|
-
/**
|
|
25
|
-
* Targets that can be injected into Extended functions or constructors
|
|
26
|
-
*
|
|
27
|
-
*/
|
|
28
|
-
export type A_TYPES__InjectableTargets = A_TYPES__Component_Constructor | InstanceType<A_TYPES__Component_Constructor> | InstanceType<A_TYPES__Container_Constructor>;
|
|
29
|
-
export type A_TYPES__InjectableConstructors = A_TYPES__Component_Constructor | A_TYPES__Container_Constructor | A_TYPES__Entity_Constructor | A_TYPES__Feature_Constructor | A_TYPES__Caller_Constructor | A_TYPES__Fragment_Constructor | string;
|
|
30
|
-
export type A_TYPES__A_InjectDecorator_EntityInjectionInstructions<T extends A_Entity = A_Entity> = {
|
|
31
|
-
query: Partial<A_TYPES__A_InjectDecorator_EntityInjectionQuery<T>>;
|
|
32
|
-
pagination: Partial<A_TYPES__A_InjectDecorator_EntityInjectionPagination>;
|
|
33
|
-
};
|
|
34
|
-
export type A_TYPES__A_InjectDecorator_EntityInjectionQuery<T extends A_Entity = A_Entity> = {
|
|
35
|
-
aseid: string;
|
|
36
|
-
} & {
|
|
37
|
-
[key in keyof T]?: any;
|
|
38
|
-
};
|
|
39
|
-
export type A_TYPES__A_InjectDecorator_EntityInjectionPagination = {
|
|
40
|
-
count: number;
|
|
41
|
-
from: 'start' | 'end';
|
|
42
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"A-Inject.types.js","sourceRoot":"","sources":["../../../../src/global/A-Inject/A-Inject.types.ts"],"names":[],"mappings":""}
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* A Meta is an entity that stores all the metadata for the specific entity like container, component, feature, etc.
|
|
3
|
-
*
|
|
4
|
-
* [!] Meta can be different depending on the type of input data
|
|
5
|
-
*/
|
|
6
|
-
export declare class A_Meta<_StorageItems extends Record<string, any> = any> implements Iterable<[keyof _StorageItems, _StorageItems[keyof _StorageItems]]> {
|
|
7
|
-
protected meta: Map<keyof _StorageItems, _StorageItems[keyof _StorageItems]>;
|
|
8
|
-
/**
|
|
9
|
-
* Method to get the iterator for the meta object
|
|
10
|
-
*
|
|
11
|
-
* @returns
|
|
12
|
-
*/
|
|
13
|
-
[Symbol.iterator](): Iterator<[keyof _StorageItems, _StorageItems[keyof _StorageItems]]>;
|
|
14
|
-
/**
|
|
15
|
-
* Allows to replicate received meta object by replacing internal meta to the received one
|
|
16
|
-
*
|
|
17
|
-
* @param meta
|
|
18
|
-
* @returns
|
|
19
|
-
*/
|
|
20
|
-
from(meta: A_Meta<_StorageItems>): A_Meta<_StorageItems>;
|
|
21
|
-
/**
|
|
22
|
-
* Method to set values in the map
|
|
23
|
-
*
|
|
24
|
-
* @param key
|
|
25
|
-
* @param value
|
|
26
|
-
*/
|
|
27
|
-
set<K extends keyof _StorageItems>(key: K, value: _StorageItems[K]): void;
|
|
28
|
-
/**
|
|
29
|
-
* Method to get values from the map
|
|
30
|
-
*
|
|
31
|
-
* @param key
|
|
32
|
-
* @returns
|
|
33
|
-
*/
|
|
34
|
-
get<K extends keyof _StorageItems>(key: K): _StorageItems[K] | undefined;
|
|
35
|
-
/**
|
|
36
|
-
* Method to delete values from the map
|
|
37
|
-
*
|
|
38
|
-
* @param key
|
|
39
|
-
* @returns
|
|
40
|
-
*/
|
|
41
|
-
delete(key: keyof _StorageItems): boolean;
|
|
42
|
-
/**
|
|
43
|
-
* Method to get the size of the map
|
|
44
|
-
*
|
|
45
|
-
* @returns
|
|
46
|
-
*/
|
|
47
|
-
size(): number;
|
|
48
|
-
/**
|
|
49
|
-
* This method is needed to convert the key to a regular expression and cover cases like:
|
|
50
|
-
*
|
|
51
|
-
* simple * e.g. "a*" instead of "a.*"
|
|
52
|
-
*
|
|
53
|
-
* simple ? e.g. "a?" instead of "a."
|
|
54
|
-
*
|
|
55
|
-
* etc.
|
|
56
|
-
*
|
|
57
|
-
* @param key
|
|
58
|
-
* @returns
|
|
59
|
-
*/
|
|
60
|
-
private convertToRegExp;
|
|
61
|
-
/**
|
|
62
|
-
* Method to find values in the map by name.
|
|
63
|
-
*
|
|
64
|
-
* Converts the Key in Map to a regular expression and then compares to the name
|
|
65
|
-
*
|
|
66
|
-
* @param name
|
|
67
|
-
* @returns
|
|
68
|
-
*/
|
|
69
|
-
find(name: string): [keyof _StorageItems, _StorageItems[keyof _StorageItems]][];
|
|
70
|
-
/**
|
|
71
|
-
* Method to find values in the map by regular expression
|
|
72
|
-
*
|
|
73
|
-
* Compares Map Key to the input regular expression
|
|
74
|
-
*
|
|
75
|
-
* @param regex
|
|
76
|
-
* @returns
|
|
77
|
-
*/
|
|
78
|
-
findByRegex(regex: RegExp): Array<[keyof _StorageItems, _StorageItems[keyof _StorageItems]]>;
|
|
79
|
-
/**
|
|
80
|
-
* Method to check if the map has a specific key
|
|
81
|
-
*
|
|
82
|
-
* @param key
|
|
83
|
-
* @returns
|
|
84
|
-
*/
|
|
85
|
-
has(key: keyof _StorageItems): boolean;
|
|
86
|
-
/**
|
|
87
|
-
* Method to get the size of the map
|
|
88
|
-
*
|
|
89
|
-
* @returns
|
|
90
|
-
*/
|
|
91
|
-
entries(): IterableIterator<[keyof _StorageItems, _StorageItems[keyof _StorageItems]]>;
|
|
92
|
-
/**
|
|
93
|
-
* Method to clear the map
|
|
94
|
-
*/
|
|
95
|
-
clear(): void;
|
|
96
|
-
toArray(): Array<[keyof _StorageItems, _StorageItems[keyof _StorageItems]]>;
|
|
97
|
-
}
|
|
@@ -1,164 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.A_Meta = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* A Meta is an entity that stores all the metadata for the specific entity like container, component, feature, etc.
|
|
6
|
-
*
|
|
7
|
-
* [!] Meta can be different depending on the type of input data
|
|
8
|
-
*/
|
|
9
|
-
class A_Meta {
|
|
10
|
-
constructor() {
|
|
11
|
-
this.meta = new Map();
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* Method to get the iterator for the meta object
|
|
15
|
-
*
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
[Symbol.iterator]() {
|
|
19
|
-
const iterator = this.meta.entries();
|
|
20
|
-
return {
|
|
21
|
-
next: () => iterator.next()
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
// ===================================================================================================
|
|
25
|
-
// ================================ META OPERATIONS ==================================================
|
|
26
|
-
// ===================================================================================================
|
|
27
|
-
/**
|
|
28
|
-
* Allows to replicate received meta object by replacing internal meta to the received one
|
|
29
|
-
*
|
|
30
|
-
* @param meta
|
|
31
|
-
* @returns
|
|
32
|
-
*/
|
|
33
|
-
from(meta) {
|
|
34
|
-
this.meta = new Map(meta.meta);
|
|
35
|
-
return this;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Method to set values in the map
|
|
39
|
-
*
|
|
40
|
-
* @param key
|
|
41
|
-
* @param value
|
|
42
|
-
*/
|
|
43
|
-
set(key, value) {
|
|
44
|
-
const inheritedValue = this.meta.get(key)
|
|
45
|
-
|| Array.isArray(value)
|
|
46
|
-
? []
|
|
47
|
-
: value instanceof Map
|
|
48
|
-
? new Map()
|
|
49
|
-
: {};
|
|
50
|
-
const targetValue = this.meta.get(key)
|
|
51
|
-
|| Array.isArray(value)
|
|
52
|
-
? [
|
|
53
|
-
...inheritedValue
|
|
54
|
-
] : value instanceof Map
|
|
55
|
-
? new Map(inheritedValue)
|
|
56
|
-
: Object.assign({}, inheritedValue);
|
|
57
|
-
this.meta.set(key, value);
|
|
58
|
-
}
|
|
59
|
-
/**
|
|
60
|
-
* Method to get values from the map
|
|
61
|
-
*
|
|
62
|
-
* @param key
|
|
63
|
-
* @returns
|
|
64
|
-
*/
|
|
65
|
-
get(key) {
|
|
66
|
-
return this.meta.get(key);
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* Method to delete values from the map
|
|
70
|
-
*
|
|
71
|
-
* @param key
|
|
72
|
-
* @returns
|
|
73
|
-
*/
|
|
74
|
-
delete(key) {
|
|
75
|
-
return this.meta.delete(key);
|
|
76
|
-
}
|
|
77
|
-
/**
|
|
78
|
-
* Method to get the size of the map
|
|
79
|
-
*
|
|
80
|
-
* @returns
|
|
81
|
-
*/
|
|
82
|
-
size() {
|
|
83
|
-
return this.meta.size;
|
|
84
|
-
}
|
|
85
|
-
/**
|
|
86
|
-
* This method is needed to convert the key to a regular expression and cover cases like:
|
|
87
|
-
*
|
|
88
|
-
* simple * e.g. "a*" instead of "a.*"
|
|
89
|
-
*
|
|
90
|
-
* simple ? e.g. "a?" instead of "a."
|
|
91
|
-
*
|
|
92
|
-
* etc.
|
|
93
|
-
*
|
|
94
|
-
* @param key
|
|
95
|
-
* @returns
|
|
96
|
-
*/
|
|
97
|
-
convertToRegExp(key) {
|
|
98
|
-
return key instanceof RegExp
|
|
99
|
-
? key
|
|
100
|
-
: new RegExp(key);
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* Method to find values in the map by name.
|
|
104
|
-
*
|
|
105
|
-
* Converts the Key in Map to a regular expression and then compares to the name
|
|
106
|
-
*
|
|
107
|
-
* @param name
|
|
108
|
-
* @returns
|
|
109
|
-
*/
|
|
110
|
-
find(name) {
|
|
111
|
-
const results = [];
|
|
112
|
-
for (const [key, value] of this.meta.entries()) {
|
|
113
|
-
if (this.convertToRegExp(String(key)).test(name)) {
|
|
114
|
-
results.push([key, value]);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
return results;
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
* Method to find values in the map by regular expression
|
|
121
|
-
*
|
|
122
|
-
* Compares Map Key to the input regular expression
|
|
123
|
-
*
|
|
124
|
-
* @param regex
|
|
125
|
-
* @returns
|
|
126
|
-
*/
|
|
127
|
-
findByRegex(regex) {
|
|
128
|
-
const results = [];
|
|
129
|
-
for (const [key, value] of this.meta.entries()) {
|
|
130
|
-
if (regex.test(String(key))) {
|
|
131
|
-
results.push([key, value]);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
return results;
|
|
135
|
-
}
|
|
136
|
-
/**
|
|
137
|
-
* Method to check if the map has a specific key
|
|
138
|
-
*
|
|
139
|
-
* @param key
|
|
140
|
-
* @returns
|
|
141
|
-
*/
|
|
142
|
-
has(key) {
|
|
143
|
-
return this.meta.has(key);
|
|
144
|
-
}
|
|
145
|
-
/**
|
|
146
|
-
* Method to get the size of the map
|
|
147
|
-
*
|
|
148
|
-
* @returns
|
|
149
|
-
*/
|
|
150
|
-
entries() {
|
|
151
|
-
return this.meta.entries();
|
|
152
|
-
}
|
|
153
|
-
/**
|
|
154
|
-
* Method to clear the map
|
|
155
|
-
*/
|
|
156
|
-
clear() {
|
|
157
|
-
this.meta.clear();
|
|
158
|
-
}
|
|
159
|
-
toArray() {
|
|
160
|
-
return Array.from(this.meta.entries());
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
exports.A_Meta = A_Meta;
|
|
164
|
-
//# sourceMappingURL=A-Meta.class.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"A-Meta.class.js","sourceRoot":"","sources":["../../../../src/global/A-Meta/A-Meta.class.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { A_Component } from "../A-Component/A-Component.class";
|
|
2
|
-
import { A_TYPES__Component_Constructor } from "../A-Component/A-Component.types";
|
|
3
|
-
import { A_Container } from "../A-Container/A-Container.class";
|
|
4
|
-
import { A_TYPES__Container_Constructor } from "../A-Container/A-Container.types";
|
|
5
|
-
import { A_Entity } from "../A-Entity/A-Entity.class";
|
|
6
|
-
import { A_TYPES__Entity_Constructor } from "../A-Entity/A-Entity.types";
|
|
7
|
-
/**
|
|
8
|
-
* Components that can have Meta associated with them
|
|
9
|
-
*/
|
|
10
|
-
export type A_TYPES__MetaLinkedComponents = A_Container | A_Component | A_Entity;
|
|
11
|
-
/**
|
|
12
|
-
* Constructors of components that can have Meta associated with them
|
|
13
|
-
*/
|
|
14
|
-
export type A_TYPES__MetaLinkedComponentConstructors = A_TYPES__Container_Constructor | A_TYPES__Component_Constructor | A_TYPES__Entity_Constructor;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"A-Meta.types.js","sourceRoot":"","sources":["../../../../src/global/A-Meta/A-Meta.types.ts"],"names":[],"mappings":""}
|