@ssv/ngx.command 3.0.0-dev.1 → 3.0.0-dev.1-dev.11

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/src/command.ts CHANGED
@@ -1,170 +1,170 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { Observable, combineLatest, Subscription, Subject, BehaviorSubject, of, EMPTY } from "rxjs";
3
- import { tap, map, filter, switchMap, catchError, finalize, take } from "rxjs/operators";
4
- import { ICommand } from "./command.model";
5
-
6
- /**
7
- * Command object used to encapsulate information which is needed to perform an action.
8
- */
9
- export class Command implements ICommand {
10
-
11
- /** Determines whether the command is currently executing, as a snapshot value. */
12
- get isExecuting(): boolean {
13
- return this._isExecuting;
14
- }
15
-
16
- /** Determines whether the command can execute or not, as a snapshot value. */
17
- get canExecute(): boolean {
18
- return this._canExecute;
19
- }
20
-
21
- /** Determines whether the command is currently executing, as an observable. */
22
- get isExecuting$(): Observable<boolean> {
23
- return this._isExecuting$.asObservable();
24
- }
25
-
26
- /** Determines whether to auto destroy when having 0 subscribers. */
27
- autoDestroy = true;
28
-
29
- /** Determines whether the command can execute or not, as an observable. */
30
- readonly canExecute$: Observable<boolean>;
31
-
32
- private _isExecuting$ = new BehaviorSubject<boolean>(false);
33
- private _isExecuting = false;
34
- private _canExecute = true;
35
- private executionPipe$ = new Subject<unknown[] | undefined>();
36
- private isExecuting$$ = Subscription.EMPTY;
37
- private canExecute$$ = Subscription.EMPTY;
38
- private executionPipe$$ = Subscription.EMPTY;
39
- private subscribersCount = 0;
40
-
41
- /**
42
- * Creates an instance of Command.
43
- *
44
- * @param execute Execute function to invoke - use `isAsync: true` when `Observable<any>`.
45
- * @param canExecute Observable which determines whether it can execute or not.
46
- * @param isAsync Indicates that the execute function is async e.g. Observable.
47
- */
48
- constructor(
49
- execute: (...args: unknown[]) => unknown,
50
- canExecute$?: Observable<boolean>,
51
- isAsync?: boolean,
52
- ) {
53
- if (canExecute$) {
54
- this.canExecute$ = combineLatest([
55
- this._isExecuting$,
56
- canExecute$
57
- ]).pipe(
58
- map(([isExecuting, canExecuteResult]) => {
59
- // console.log("[command::combineLatest$] update!", { isExecuting, canExecuteResult });
60
- this._isExecuting = isExecuting;
61
- this._canExecute = !isExecuting && !!canExecuteResult;
62
- return this._canExecute;
63
- }),
64
- );
65
- this.canExecute$$ = this.canExecute$.subscribe();
66
- } else {
67
- this.canExecute$ = this._isExecuting$.pipe(
68
- map(x => {
69
- const canExecute = !x;
70
- this._canExecute = canExecute;
71
- return canExecute;
72
- })
73
- );
74
- this.isExecuting$$ = this._isExecuting$
75
- .pipe(tap(x => this._isExecuting = x))
76
- .subscribe();
77
- }
78
- this.executionPipe$$ = this.buildExecutionPipe(execute, isAsync).subscribe();
79
- }
80
-
81
- /** Execute function to invoke. */
82
- execute(...args: unknown[]): void {
83
- // console.warn("[command::execute]", args);
84
- this.executionPipe$.next(args);
85
- }
86
-
87
- /** Disposes all resources held by subscriptions. */
88
- destroy(): void {
89
- // console.warn("[command::destroy]");
90
- this.executionPipe$$.unsubscribe();
91
- this.canExecute$$.unsubscribe();
92
- this.isExecuting$$.unsubscribe();
93
- }
94
-
95
- subscribe(): void {
96
- this.subscribersCount++;
97
- }
98
-
99
- unsubscribe(): void {
100
- this.subscribersCount--;
101
- // console.log("[command::unsubscribe]", { autoDestroy: this.autoDestroy, subscribersCount: this.subscribersCount });
102
- if (this.autoDestroy && this.subscribersCount <= 0) {
103
- this.destroy();
104
- }
105
- }
106
-
107
- private buildExecutionPipe(execute: (...args: unknown[]) => any, isAsync?: boolean): Observable<unknown> {
108
- let pipe$ = this.executionPipe$.pipe(
109
- // tap(x => console.warn(">>>> executionPipe", this._canExecute)),
110
- filter(() => this._canExecute),
111
- tap(() => {
112
- // console.log("[command::executionPipe$] do#1 - set execute", { args: x });
113
- this._isExecuting$.next(true);
114
- })
115
- );
116
-
117
- const execFn = isAsync
118
- ? switchMap<unknown[] | undefined, any[]>(args => {
119
- if (args) {
120
- return execute(...args);
121
- }
122
- return execute();
123
- })
124
- : tap((args: unknown[] | undefined) => {
125
- if (args) {
126
- execute(...args);
127
- return;
128
- }
129
- execute();
130
- });
131
-
132
- pipe$ = pipe$.pipe(
133
- switchMap(args => of(args).pipe(
134
- execFn,
135
- finalize(() => {
136
- // console.log("[command::executionPipe$] finalize inner#1 - set idle");
137
- this._isExecuting$.next(false);
138
- }),
139
- take(1),
140
- catchError(error => {
141
- console.error("Unhandled execute error", error);
142
- return EMPTY;
143
- }),
144
- )),
145
- tap(
146
- () => {
147
- // console.log("[command::executionPipe$] tap#2 - set idle");
148
- this._isExecuting$.next(false);
149
- },
150
- )
151
- );
152
- return pipe$;
153
- }
154
-
155
- }
156
-
157
- /**
158
- * Async Command object used to encapsulate information which is needed to perform an action,
159
- * which takes an execute function as Observable/Promise.
160
- */
161
- export class CommandAsync extends Command {
162
-
163
- constructor(
164
- execute: (...args: any[]) => Observable<unknown> | Promise<unknown>,
165
- canExecute$?: Observable<boolean>,
166
- ) {
167
- super(execute, canExecute$, true);
168
- }
169
-
170
- }
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
+ import { Observable, combineLatest, Subscription, Subject, BehaviorSubject, of, EMPTY } from "rxjs";
3
+ import { tap, map, filter, switchMap, catchError, finalize, take } from "rxjs/operators";
4
+ import { ICommand } from "./command.model";
5
+
6
+ /**
7
+ * Command object used to encapsulate information which is needed to perform an action.
8
+ */
9
+ export class Command implements ICommand {
10
+
11
+ /** Determines whether the command is currently executing, as a snapshot value. */
12
+ get isExecuting(): boolean {
13
+ return this._isExecuting;
14
+ }
15
+
16
+ /** Determines whether the command can execute or not, as a snapshot value. */
17
+ get canExecute(): boolean {
18
+ return this._canExecute;
19
+ }
20
+
21
+ /** Determines whether the command is currently executing, as an observable. */
22
+ get isExecuting$(): Observable<boolean> {
23
+ return this._isExecuting$.asObservable();
24
+ }
25
+
26
+ /** Determines whether to auto destroy when having 0 subscribers. */
27
+ autoDestroy = true;
28
+
29
+ /** Determines whether the command can execute or not, as an observable. */
30
+ readonly canExecute$: Observable<boolean>;
31
+
32
+ private _isExecuting$ = new BehaviorSubject<boolean>(false);
33
+ private _isExecuting = false;
34
+ private _canExecute = true;
35
+ private executionPipe$ = new Subject<unknown[] | undefined>();
36
+ private isExecuting$$ = Subscription.EMPTY;
37
+ private canExecute$$ = Subscription.EMPTY;
38
+ private executionPipe$$ = Subscription.EMPTY;
39
+ private subscribersCount = 0;
40
+
41
+ /**
42
+ * Creates an instance of Command.
43
+ *
44
+ * @param execute Execute function to invoke - use `isAsync: true` when `Observable<any>`.
45
+ * @param canExecute Observable which determines whether it can execute or not.
46
+ * @param isAsync Indicates that the execute function is async e.g. Observable.
47
+ */
48
+ constructor(
49
+ execute: (...args: unknown[]) => unknown,
50
+ canExecute$?: Observable<boolean>,
51
+ isAsync?: boolean,
52
+ ) {
53
+ if (canExecute$) {
54
+ this.canExecute$ = combineLatest([
55
+ this._isExecuting$,
56
+ canExecute$
57
+ ]).pipe(
58
+ map(([isExecuting, canExecuteResult]) => {
59
+ // console.log("[command::combineLatest$] update!", { isExecuting, canExecuteResult });
60
+ this._isExecuting = isExecuting;
61
+ this._canExecute = !isExecuting && !!canExecuteResult;
62
+ return this._canExecute;
63
+ }),
64
+ );
65
+ this.canExecute$$ = this.canExecute$.subscribe();
66
+ } else {
67
+ this.canExecute$ = this._isExecuting$.pipe(
68
+ map(x => {
69
+ const canExecute = !x;
70
+ this._canExecute = canExecute;
71
+ return canExecute;
72
+ })
73
+ );
74
+ this.isExecuting$$ = this._isExecuting$
75
+ .pipe(tap(x => this._isExecuting = x))
76
+ .subscribe();
77
+ }
78
+ this.executionPipe$$ = this.buildExecutionPipe(execute, isAsync).subscribe();
79
+ }
80
+
81
+ /** Execute function to invoke. */
82
+ execute(...args: unknown[]): void {
83
+ // console.warn("[command::execute]", args);
84
+ this.executionPipe$.next(args);
85
+ }
86
+
87
+ /** Disposes all resources held by subscriptions. */
88
+ destroy(): void {
89
+ // console.warn("[command::destroy]");
90
+ this.executionPipe$$.unsubscribe();
91
+ this.canExecute$$.unsubscribe();
92
+ this.isExecuting$$.unsubscribe();
93
+ }
94
+
95
+ subscribe(): void {
96
+ this.subscribersCount++;
97
+ }
98
+
99
+ unsubscribe(): void {
100
+ this.subscribersCount--;
101
+ // console.log("[command::unsubscribe]", { autoDestroy: this.autoDestroy, subscribersCount: this.subscribersCount });
102
+ if (this.autoDestroy && this.subscribersCount <= 0) {
103
+ this.destroy();
104
+ }
105
+ }
106
+
107
+ private buildExecutionPipe(execute: (...args: unknown[]) => any, isAsync?: boolean): Observable<unknown> {
108
+ let pipe$ = this.executionPipe$.pipe(
109
+ // tap(x => console.warn(">>>> executionPipe", this._canExecute)),
110
+ filter(() => this._canExecute),
111
+ tap(() => {
112
+ // console.log("[command::executionPipe$] do#1 - set execute", { args: x });
113
+ this._isExecuting$.next(true);
114
+ })
115
+ );
116
+
117
+ const execFn = isAsync
118
+ ? switchMap<unknown[] | undefined, any[]>(args => {
119
+ if (args) {
120
+ return execute(...args);
121
+ }
122
+ return execute();
123
+ })
124
+ : tap((args: unknown[] | undefined) => {
125
+ if (args) {
126
+ execute(...args);
127
+ return;
128
+ }
129
+ execute();
130
+ });
131
+
132
+ pipe$ = pipe$.pipe(
133
+ switchMap(args => of(args).pipe(
134
+ execFn,
135
+ finalize(() => {
136
+ // console.log("[command::executionPipe$] finalize inner#1 - set idle");
137
+ this._isExecuting$.next(false);
138
+ }),
139
+ take(1),
140
+ catchError(error => {
141
+ console.error("Unhandled execute error", error);
142
+ return EMPTY;
143
+ }),
144
+ )),
145
+ tap(
146
+ () => {
147
+ // console.log("[command::executionPipe$] tap#2 - set idle");
148
+ this._isExecuting$.next(false);
149
+ },
150
+ )
151
+ );
152
+ return pipe$;
153
+ }
154
+
155
+ }
156
+
157
+ /**
158
+ * Async Command object used to encapsulate information which is needed to perform an action,
159
+ * which takes an execute function as Observable/Promise.
160
+ */
161
+ export class CommandAsync extends Command {
162
+
163
+ constructor(
164
+ execute: (...args: any[]) => Observable<unknown> | Promise<unknown>,
165
+ canExecute$?: Observable<boolean>,
166
+ ) {
167
+ super(execute, canExecute$, true);
168
+ }
169
+
170
+ }
@@ -1,50 +1,50 @@
1
- import { AbstractControl, AbstractControlDirective, FormControlStatus } from "@angular/forms";
2
- import { Observable, of } from "rxjs";
3
- import { map, distinctUntilChanged, startWith, delay } from "rxjs/operators";
4
-
5
- import { CommandCreator, ICommand } from "./command.model";
6
- import { Command } from "./command";
7
-
8
- /** Determines whether the arg object is of type `Command`. */
9
- export function isCommand(arg: unknown): arg is ICommand {
10
- return arg instanceof Command;
11
- }
12
-
13
- /** Determines whether the arg object is of type `CommandCreator`. */
14
- export function isCommandCreator(arg: unknown): arg is CommandCreator {
15
- if (arg instanceof Command) {
16
- return false;
17
- } else if (isAssumedType<CommandCreator>(arg) && arg.execute && arg.host) {
18
- return true;
19
- }
20
- return false;
21
- }
22
-
23
- export interface CanExecuteFormOptions {
24
- /** Determines whether to check for validity. (defaults: true) */
25
- validity?: boolean;
26
-
27
- /** Determines whether to check whether UI has been touched. (defaults: true) */
28
- dirty?: boolean;
29
- }
30
-
31
- /** Get form is valid as an observable. */
32
- export function canExecuteFromNgForm(
33
- form: AbstractControl | AbstractControlDirective,
34
- options?: CanExecuteFormOptions
35
- ): Observable<boolean> {
36
- const opts: CanExecuteFormOptions = { validity: true, dirty: true, ...options };
37
-
38
- return form.statusChanges
39
- ? (form.statusChanges as Observable<FormControlStatus>).pipe( // todo: remove cast when working correctly
40
- delay(0),
41
- startWith(form.valid),
42
- map(() => !!(!opts.validity || form.valid) && !!(!opts.dirty || form.dirty)),
43
- distinctUntilChanged(),
44
- )
45
- : of(true);
46
- }
47
-
48
- function isAssumedType<T = Record<string, unknown>>(x: unknown): x is Partial<T> {
49
- return x !== null && typeof x === "object";
50
- }
1
+ import { AbstractControl, AbstractControlDirective, FormControlStatus } from "@angular/forms";
2
+ import { Observable, of } from "rxjs";
3
+ import { map, distinctUntilChanged, startWith, delay } from "rxjs/operators";
4
+
5
+ import { CommandCreator, ICommand } from "./command.model";
6
+ import { Command } from "./command";
7
+
8
+ /** Determines whether the arg object is of type `Command`. */
9
+ export function isCommand(arg: unknown): arg is ICommand {
10
+ return arg instanceof Command;
11
+ }
12
+
13
+ /** Determines whether the arg object is of type `CommandCreator`. */
14
+ export function isCommandCreator(arg: unknown): arg is CommandCreator {
15
+ if (arg instanceof Command) {
16
+ return false;
17
+ } else if (isAssumedType<CommandCreator>(arg) && arg.execute && arg.host) {
18
+ return true;
19
+ }
20
+ return false;
21
+ }
22
+
23
+ export interface CanExecuteFormOptions {
24
+ /** Determines whether to check for validity. (defaults: true) */
25
+ validity?: boolean;
26
+
27
+ /** Determines whether to check whether UI has been touched. (defaults: true) */
28
+ dirty?: boolean;
29
+ }
30
+
31
+ /** Get form is valid as an observable. */
32
+ export function canExecuteFromNgForm(
33
+ form: AbstractControl | AbstractControlDirective,
34
+ options?: CanExecuteFormOptions
35
+ ): Observable<boolean> {
36
+ const opts: CanExecuteFormOptions = { validity: true, dirty: true, ...options };
37
+
38
+ return form.statusChanges
39
+ ? (form.statusChanges as Observable<FormControlStatus>).pipe( // todo: remove cast when working correctly
40
+ delay(0),
41
+ startWith(form.valid),
42
+ map(() => !!(!opts.validity || form.valid) && !!(!opts.dirty || form.dirty)),
43
+ distinctUntilChanged(),
44
+ )
45
+ : of(true);
46
+ }
47
+
48
+ function isAssumedType<T = Record<string, unknown>>(x: unknown): x is Partial<T> {
49
+ return x !== null && typeof x === "object";
50
+ }
package/src/index.ts CHANGED
@@ -1,8 +1,8 @@
1
- export * from "./command";
2
- export * from "./command.directive";
3
- export * from "./command-ref.directive";
4
- export * from "./command.util";
5
- export { CommandCreator, ICommand } from "./command.model";
6
- export * from "./command.options";
7
- export * from "./module";
8
- export * from "./version";
1
+ export * from "./command";
2
+ export * from "./command.directive";
3
+ export * from "./command-ref.directive";
4
+ export * from "./command.util";
5
+ export { CommandCreator, ICommand } from "./command.model";
6
+ export * from "./command.options";
7
+ export * from "./module";
8
+ export * from "./version";
package/src/module.ts CHANGED
@@ -1,17 +1,17 @@
1
- import { NgModule } from "@angular/core";
2
-
3
- import { CommandDirective } from "./command.directive";
4
- import { CommandRefDirective } from "./command-ref.directive";
5
-
6
- const EXPORTED_IMPORTS = [
7
- CommandDirective,
8
- CommandRefDirective
9
- ];
10
-
11
- @NgModule({
12
- imports: [EXPORTED_IMPORTS],
13
- exports: [EXPORTED_IMPORTS]
14
- })
15
- export class SsvCommandModule {
16
-
17
- }
1
+ import { NgModule } from "@angular/core";
2
+
3
+ import { CommandDirective } from "./command.directive";
4
+ import { CommandRefDirective } from "./command-ref.directive";
5
+
6
+ const EXPORTED_IMPORTS = [
7
+ CommandDirective,
8
+ CommandRefDirective
9
+ ];
10
+
11
+ @NgModule({
12
+ imports: [EXPORTED_IMPORTS],
13
+ exports: [EXPORTED_IMPORTS]
14
+ })
15
+ export class SsvCommandModule {
16
+
17
+ }
package/src/test-setup.ts CHANGED
@@ -1,8 +1,8 @@
1
- // @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment
2
- globalThis.ngJest = {
3
- testEnvironmentOptions: {
4
- errorOnUnknownElements: true,
5
- errorOnUnknownProperties: true,
6
- },
7
- };
8
- import 'jest-preset-angular/setup-jest';
1
+ // @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment
2
+ globalThis.ngJest = {
3
+ testEnvironmentOptions: {
4
+ errorOnUnknownElements: true,
5
+ errorOnUnknownProperties: true,
6
+ },
7
+ };
8
+ import 'jest-preset-angular/setup-jest';
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = "0.0.0-PLACEHOLDER";
1
+ export const VERSION = "3.0.0-dev.1-dev.11";
package/tsconfig.json CHANGED
@@ -1,28 +1,28 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2022",
4
- "forceConsistentCasingInFileNames": true,
5
- "strict": true,
6
- "noImplicitOverride": true,
7
- "noPropertyAccessFromIndexSignature": true,
8
- "noImplicitReturns": true,
9
- "noFallthroughCasesInSwitch": true
10
- },
11
- "files": [],
12
- "include": [],
13
- "references": [
14
- {
15
- "path": "./tsconfig.lib.json"
16
- },
17
- {
18
- "path": "./tsconfig.spec.json"
19
- }
20
- ],
21
- "extends": "../../tsconfig.base.json",
22
- "angularCompilerOptions": {
23
- "enableI18nLegacyMessageIdFormat": false,
24
- "strictInjectionParameters": true,
25
- "strictInputAccessModifiers": true,
26
- "strictTemplates": true
27
- }
28
- }
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2022",
4
+ "forceConsistentCasingInFileNames": true,
5
+ "strict": true,
6
+ "noImplicitOverride": true,
7
+ "noPropertyAccessFromIndexSignature": true,
8
+ "noImplicitReturns": true,
9
+ "noFallthroughCasesInSwitch": true
10
+ },
11
+ "files": [],
12
+ "include": [],
13
+ "references": [
14
+ {
15
+ "path": "./tsconfig.lib.json"
16
+ },
17
+ {
18
+ "path": "./tsconfig.spec.json"
19
+ }
20
+ ],
21
+ "extends": "../../tsconfig.base.json",
22
+ "angularCompilerOptions": {
23
+ "enableI18nLegacyMessageIdFormat": false,
24
+ "strictInjectionParameters": true,
25
+ "strictInputAccessModifiers": true,
26
+ "strictTemplates": true
27
+ }
28
+ }
package/tsconfig.lib.json CHANGED
@@ -1,17 +1,17 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../dist/out-tsc",
5
- "declaration": true,
6
- "declarationMap": true,
7
- "inlineSources": true,
8
- "types": []
9
- },
10
- "exclude": [
11
- "src/**/*.spec.ts",
12
- "src/test-setup.ts",
13
- "jest.config.ts",
14
- "src/**/*.test.ts"
15
- ],
16
- "include": ["src/**/*.ts"]
17
- }
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../dist/out-tsc",
5
+ "declaration": true,
6
+ "declarationMap": true,
7
+ "inlineSources": true,
8
+ "types": []
9
+ },
10
+ "exclude": [
11
+ "src/**/*.spec.ts",
12
+ "src/test-setup.ts",
13
+ "jest.config.ts",
14
+ "src/**/*.test.ts"
15
+ ],
16
+ "include": ["src/**/*.ts"]
17
+ }
@@ -1,9 +1,9 @@
1
- {
2
- "extends": "./tsconfig.lib.json",
3
- "compilerOptions": {
4
- "declarationMap": false
5
- },
6
- "angularCompilerOptions": {
7
- "compilationMode": "partial"
8
- }
9
- }
1
+ {
2
+ "extends": "./tsconfig.lib.json",
3
+ "compilerOptions": {
4
+ "declarationMap": false
5
+ },
6
+ "angularCompilerOptions": {
7
+ "compilationMode": "partial"
8
+ }
9
+ }
@@ -1,16 +1,16 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../dist/out-tsc",
5
- "module": "commonjs",
6
- "target": "es2016",
7
- "types": ["jest", "node"]
8
- },
9
- "files": ["src/test-setup.ts"],
10
- "include": [
11
- "jest.config.ts",
12
- "src/**/*.test.ts",
13
- "src/**/*.spec.ts",
14
- "src/**/*.d.ts"
15
- ]
16
- }
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../dist/out-tsc",
5
+ "module": "commonjs",
6
+ "target": "es2016",
7
+ "types": ["jest", "node"]
8
+ },
9
+ "files": ["src/test-setup.ts"],
10
+ "include": [
11
+ "jest.config.ts",
12
+ "src/**/*.test.ts",
13
+ "src/**/*.spec.ts",
14
+ "src/**/*.d.ts"
15
+ ]
16
+ }