ngrx-entity-crud 19.4.0-beta.13 → 19.4.0-beta.15
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 +24 -23
- package/devtools/nec-dashboard.component.d.ts +30 -21
- package/devtools/nec-dashboard.component.d.ts.map +1 -1
- package/devtools/probes/nec-store-probe.service.d.ts.map +1 -1
- package/fesm2022/ngrx-entity-crud-devtools.mjs +270 -213
- package/fesm2022/ngrx-entity-crud-devtools.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/dashboard/files/primeng/__clazz@dasherize__/__clazz@dasherize__-main/__clazz@dasherize__-main.component.html +6 -5
- package/schematics/lazy-report/index.js +29 -28
- package/schematics/lazy-report/index.js.map +1 -1
- package/schematics/lazy-report/index.ts +29 -28
- package/schematics/lazy-report/schema.d.ts +1 -1
- package/schematics/lazy-report/schema.json +2 -3
package/README.md
CHANGED
|
@@ -274,12 +274,12 @@ the sections that use it, then suggests which stores are good candidates to be r
|
|
|
274
274
|
generated report file: you decide what to convert.
|
|
275
275
|
|
|
276
276
|
How a store is classified:
|
|
277
|
-
- **
|
|
278
|
-
- **multi-
|
|
279
|
-
- **
|
|
280
|
-
- **
|
|
277
|
+
- **lazy candidate**: used by exactly one section, and that section is on a lazy route (`loadChildren`).
|
|
278
|
+
- **multi-section**: used by more than one section (evaluate a shared lazy module).
|
|
279
|
+
- **keep eager (used by the shell)**: referenced by the app shell (`core/`, `main/components`, `app.component`) — must stay eager.
|
|
280
|
+
- **section not lazy-routed**: its only section is loaded eagerly, so going lazy gives little benefit.
|
|
281
281
|
- **infra (eager)**: infrastructure store (e.g. `router-store`), excluded from candidates.
|
|
282
|
-
- **
|
|
282
|
+
- **orphan**: not referenced by any section.
|
|
283
283
|
|
|
284
284
|
The scan is static and relies on the naming convention (`XxxStoreActions/Selectors/State/Module`).
|
|
285
285
|
Paths are read from `ngrx-entity-crud.conf.json` when present, otherwise defaults are used
|
|
@@ -296,7 +296,7 @@ ng generate ngrx-entity-crud:lazy-report [options]
|
|
|
296
296
|
Report file to write (relative to the workspace root); empty string = console only.
|
|
297
297
|
- `--output`
|
|
298
298
|
- Type: `string`
|
|
299
|
-
- Default: `lazy-report.md`
|
|
299
|
+
- Default: `lazy-report.<format>` (`lazy-report.md` or `lazy-report.json`)
|
|
300
300
|
|
|
301
301
|
Format of the written report.
|
|
302
302
|
- `--format`
|
|
@@ -324,18 +324,18 @@ adds a `storage` object `{ providers, source }`. The `{ paths, stores }` shape i
|
|
|
324
324
|
|
|
325
325
|
```sh
|
|
326
326
|
ng generate ngrx-entity-crud:lazy-report
|
|
327
|
-
ng generate ngrx-entity-crud:lazy-report --format=json
|
|
327
|
+
ng generate ngrx-entity-crud:lazy-report --format=json # scrive lazy-report.json
|
|
328
328
|
ng generate ngrx-entity-crud:lazy-report --output= # solo console
|
|
329
329
|
```
|
|
330
330
|
|
|
331
331
|
Example output (excerpt):
|
|
332
332
|
|
|
333
333
|
```md
|
|
334
|
-
| store | clazz | type |
|
|
334
|
+
| store | clazz | type | sections | n | lazy route | shell | verdict |
|
|
335
335
|
|---|---|---|---|---|---|---|---|
|
|
336
|
-
| coin-store | Coin | CRUD-PLURAL | coin | 1 |
|
|
337
|
-
| currency-store | Currency | CRUD-PLURAL | coin, invoice | 2 |
|
|
338
|
-
| menu-store | Menu | CRUD-PLURAL | - | 0 | - |
|
|
336
|
+
| coin-store | Coin | CRUD-PLURAL | coin | 1 | yes | no | lazy candidate |
|
|
337
|
+
| currency-store | Currency | CRUD-PLURAL | coin, invoice | 2 | yes | no | multi-section (2) -> consider a shared module |
|
|
338
|
+
| menu-store | Menu | CRUD-PLURAL | - | 0 | - | yes | keep eager (used by the shell) |
|
|
339
339
|
```
|
|
340
340
|
|
|
341
341
|
## dashboard
|
|
@@ -363,9 +363,9 @@ which the dashboard reads at runtime to correlate the loaded/lazy state of each
|
|
|
363
363
|
The dashboard can run in **production**: by default it shows only keys, sizes and counts — never
|
|
364
364
|
raw values. Value reveal is opt-in (`[allowRevealValues]="true"`) and always masks sensitive
|
|
365
365
|
patterns (token/JWT/email/secret); keys that look sensitive are flagged. The only exception is
|
|
366
|
-
the **Python snippet**
|
|
367
|
-
listed keys to the clipboard — they are needed to call the APIs from a script —
|
|
368
|
-
|
|
366
|
+
the **Python snippet** panel (opt-in via `pythonSnippetKeys`): it copies the RAW values of the
|
|
367
|
+
listed keys to the clipboard — they are needed to call the APIs from a script — while the
|
|
368
|
+
on-screen previews always mask them.
|
|
369
369
|
|
|
370
370
|
### Command
|
|
371
371
|
|
|
@@ -437,22 +437,23 @@ Notes:
|
|
|
437
437
|
- The **Store NgRx** panel exposes per-row actions: **reset** dispatches the library's `Reset`
|
|
438
438
|
action (`[key] Reset`), restoring the slice to its `initialState` (empty entities, selection,
|
|
439
439
|
criteria and responses); **reset responses** dispatches the lighter `ResetResponses`
|
|
440
|
-
(`[key] Reset Response`). A toolbar **
|
|
440
|
+
(`[key] Reset Response`). A toolbar **Reset all** button resets every listed slice at once.
|
|
441
441
|
All three are destructive and require an inline two-step confirmation before dispatching.
|
|
442
442
|
Because the slice key in the root state matches the action name by convention (the `store`
|
|
443
443
|
schematic feeds the same `Names.NAME` to both `StoreModule.forFeature` and `createCrudActions`),
|
|
444
444
|
the dashboard can target the right action from the slice key alone — no per-domain wiring needed.
|
|
445
445
|
After a reset the dashboard refreshes its counts; if you persist the NgRx state (e.g. to
|
|
446
446
|
IndexedDB), your persistence layer will write back the emptied state, clearing the local data.
|
|
447
|
-
- The **
|
|
448
|
-
**
|
|
447
|
+
- The **NgRx store** panel has a toggle button: by default it lists every mounted slice, but
|
|
448
|
+
**Show only slices with data** filters down to slices that actually hold data (entities for
|
|
449
449
|
`plural`, an `item` for `singular`, or cached responses).
|
|
450
|
-
- With `pythonSnippetKeys` set,
|
|
451
|
-
|
|
452
|
-
`
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
script.
|
|
450
|
+
- With `pythonSnippetKeys` set, a dedicated **Python snippet** panel shows a masked preview of
|
|
451
|
+
both codes about to be copied, each with its copy button: **Copy Python snippet** copies a
|
|
452
|
+
ready-to-adapt `requests` script whose variables (`BASE_URL`, one `UPPER_SNAKE` variable per
|
|
453
|
+
listed key, e.g. `ACCESS_TOKEN`) are read from localStorage; **Copy variables only** copies
|
|
454
|
+
just the marker-delimited variables block, regenerated with the current values — when the token
|
|
455
|
+
rotates, paste it over the stale block without touching the rest of the script. The previews
|
|
456
|
+
always mask the values (`maskValue`); the RAW values go only to the clipboard.
|
|
456
457
|
- IndexedDB is introspected **agnostically** via native APIs (`indexedDB.databases()` + `count()`),
|
|
457
458
|
with an optional `NEC_IDB_ADAPTER` injection token for custom providers. Byte sizes per
|
|
458
459
|
record/store are not measurable; only record counts and the aggregate origin quota
|
|
@@ -8,21 +8,22 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Standalone, OnPush, costruita sui componenti **PrimeNG** (`p-card`, `p-table`, `p-tag`,
|
|
9
9
|
* `p-tree`, `p-divider`, `p-progressBar`, direttiva `pButton`): richiede quindi
|
|
10
10
|
* `primeng` + `primeicons` nell'app consumer (peerDependencies opzionali del solo entry-point
|
|
11
|
-
* `devtools`). Toolbar sticky con refresh, "
|
|
12
|
-
* per issue/supporto) e pausa/riprendi del polling.
|
|
11
|
+
* `devtools`). Toolbar sticky con refresh, "Copy report" (snapshot JSON dei soli metadati,
|
|
12
|
+
* per issue/supporto) e pausa/riprendi del polling. Pannelli: quota origine (progress
|
|
13
13
|
* bar + dettaglio `usageDetails` su Chromium) e localStorage affiancati in griglia responsive,
|
|
14
|
-
* IndexedDB (agnostico, con `p-tree` espandibile
|
|
15
|
-
* lazy (contatori, riepilogo errori e "
|
|
16
|
-
* sulle slice; tabelle ordinabili). Per privacy mostra
|
|
17
|
-
* conteggi; i valori (localStorage e record IndexedDB) sono
|
|
18
|
-
* `allowRevealValues` e comunque mascherati. Unica eccezione, con opt-in
|
|
19
|
-
* Python (`pythonSnippetKeys`) copia negli appunti i valori IN CHIARO
|
|
20
|
-
* elencate — servono per invocare le API da script —
|
|
21
|
-
* manuale di default; polling opt-in
|
|
14
|
+
* snippet Python (pannello dedicato, opt-in), IndexedDB (agnostico, con `p-tree` espandibile
|
|
15
|
+
* e lazy-load dei record), store NgRx + sezioni lazy (contatori, riepilogo errori e "Reset all"
|
|
16
|
+
* DENTRO il pannello, perché agisce solo sulle slice; tabelle ordinabili). Per privacy mostra
|
|
17
|
+
* di default SOLO chiavi/dimensioni/conteggi; i valori (localStorage e record IndexedDB) sono
|
|
18
|
+
* rivelabili solo con `allowRevealValues` e comunque mascherati. Unica eccezione, con opt-in
|
|
19
|
+
* dedicato: lo snippet Python (`pythonSnippetKeys`) copia negli appunti i valori IN CHIARO
|
|
20
|
+
* delle sole chiavi elencate — servono per invocare le API da script — mentre le anteprime a
|
|
21
|
+
* schermo restano SEMPRE mascherate (`maskValue`). Refresh manuale di default; polling opt-in
|
|
22
|
+
* via `pollingMs`. Usabile anche in produzione. Tutte le stringhe visibili sono in inglese.
|
|
22
23
|
*
|
|
23
24
|
* Tutta la UI è a componenti PrimeNG, con uno stile uniforme: pulsanti sempre `pButton` +
|
|
24
|
-
* `p-button-sm` con icona — pieni per l'azione primaria del contesto (
|
|
25
|
-
* conferma "
|
|
25
|
+
* `p-button-sm` con icona — pieni per l'azione primaria del contesto (Refresh, Reset all,
|
|
26
|
+
* conferma "Yes"), `p-button-outlined` per le azioni secondarie e di riga; severity `danger`
|
|
26
27
|
* per le distruttive, `secondary` per le neutre. Stati vuoti/non disponibili ed errori usano
|
|
27
28
|
* il box `.nec-message` (stilato con le variabili del tema), marcatori con `p-tag`,
|
|
28
29
|
* intestazioni di sezione con `p-divider`; i colori vengono dalle CSS variable del tema
|
|
@@ -58,10 +59,10 @@ export declare class NecDashboardComponent implements OnInit, OnDestroy {
|
|
|
58
59
|
/** Numero massimo di record letti per object store nella vista ad albero IndexedDB. Default: 50. */
|
|
59
60
|
idbEntryLimit: number;
|
|
60
61
|
/**
|
|
61
|
-
* Opt-in
|
|
62
|
-
* (es. `['access_token']`). Vuoto (default) =
|
|
62
|
+
* Opt-in del pannello "Python snippet": chiavi localStorage da esportare come variabili
|
|
63
|
+
* (es. `['access_token']`). Vuoto (default) = pannello nascosto. ATTENZIONE: la copia mette
|
|
63
64
|
* negli appunti i valori IN CHIARO di queste sole chiavi (servono per invocare le API da
|
|
64
|
-
* script); a schermo
|
|
65
|
+
* script); le anteprime a schermo restano sempre mascherate.
|
|
65
66
|
*/
|
|
66
67
|
pythonSnippetKeys: string[];
|
|
67
68
|
/** Base URL delle API usata nello snippet Python; default: `location.origin`. */
|
|
@@ -81,12 +82,16 @@ export declare class NecDashboardComponent implements OnInit, OnDestroy {
|
|
|
81
82
|
readonly pendingResponsesKey: import("@angular/core").WritableSignal<string>;
|
|
82
83
|
/** `true` quando è in attesa di conferma l'azzeramento globale di tutte le slice. */
|
|
83
84
|
readonly pendingResetAll: import("@angular/core").WritableSignal<boolean>;
|
|
84
|
-
/** `true` mentre l'auto-refresh è sospeso dal pulsante
|
|
85
|
+
/** `true` mentre l'auto-refresh è sospeso dal pulsante Pause (il timer resta attivo). */
|
|
85
86
|
readonly paused: import("@angular/core").WritableSignal<boolean>;
|
|
86
|
-
/** Feedback transitorio del pulsante "
|
|
87
|
+
/** Feedback transitorio del pulsante "Copy report" (label "Copied" per 2s). */
|
|
87
88
|
readonly copied: import("@angular/core").WritableSignal<boolean>;
|
|
88
89
|
/** Feedback transitorio dei pulsanti dello snippet Python (quale copia è appena riuscita). */
|
|
89
90
|
readonly copiedPython: import("@angular/core").WritableSignal<"snippet" | "vars">;
|
|
91
|
+
/** Anteprima MASCHERATA dello snippet Python completo (rigenerata a ogni refresh). */
|
|
92
|
+
readonly pythonSnippetPreview: import("@angular/core").WritableSignal<string>;
|
|
93
|
+
/** Anteprima MASCHERATA del solo blocco variabili (rigenerata a ogni refresh). */
|
|
94
|
+
readonly pythonVariablesPreview: import("@angular/core").WritableSignal<string>;
|
|
90
95
|
/** `true` per mostrare solo le slice che contengono dati (filtro del pannello Store NgRx). */
|
|
91
96
|
readonly onlyWithData: import("@angular/core").WritableSignal<boolean>;
|
|
92
97
|
/** Slice visibili in base al filtro `onlyWithData`. */
|
|
@@ -121,7 +126,7 @@ export declare class NecDashboardComponent implements OnInit, OnDestroy {
|
|
|
121
126
|
* conteggi): niente valori, quindi incollabile in una issue senza rischi di privacy.
|
|
122
127
|
*/
|
|
123
128
|
diagnosticReport(): string;
|
|
124
|
-
/** Copia il report diagnostico negli appunti e mostra "
|
|
129
|
+
/** Copia il report diagnostico negli appunti e mostra "Copied" per 2s. */
|
|
125
130
|
copyReport(): Promise<void>;
|
|
126
131
|
/** Nome variabile Python derivato dalla chiave localStorage (`access_token` → `ACCESS_TOKEN`). */
|
|
127
132
|
private toPythonName;
|
|
@@ -130,10 +135,14 @@ export declare class NecDashboardComponent implements OnInit, OnDestroy {
|
|
|
130
135
|
/**
|
|
131
136
|
* Blocco variabili Python delimitato dai marcatori, coi valori localStorage ATTUALI in
|
|
132
137
|
* chiaro: quando il token scade basta ricopiarlo e incollarlo sopra il blocco vecchio.
|
|
138
|
+
* Con `masked` i valori passano per `maskValue` (anteprima a schermo, mai in chiaro).
|
|
133
139
|
*/
|
|
134
|
-
pythonVariablesBlock(): string;
|
|
135
|
-
/**
|
|
136
|
-
|
|
140
|
+
pythonVariablesBlock(masked?: boolean): string;
|
|
141
|
+
/**
|
|
142
|
+
* Snippet Python completo: blocco variabili + esempio `requests` pronto da adattare.
|
|
143
|
+
* Con `masked` i valori delle variabili sono mascherati (anteprima a schermo).
|
|
144
|
+
*/
|
|
145
|
+
pythonSnippet(masked?: boolean): string;
|
|
137
146
|
/** Copia negli appunti lo snippet Python completo (variabili + esempio `requests`). */
|
|
138
147
|
copyPythonSnippet(): Promise<void>;
|
|
139
148
|
/** Copia negli appunti il solo blocco variabili, rigenerato coi valori correnti. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nec-dashboard.component.d.ts","sourceRoot":"","sources":["../../../libs/ngrx-entity-crud/devtools/nec-dashboard.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,YAAY,EAGZ,SAAS,EACT,MAAM,EAGP,MAAM,eAAe,CAAC;AASvB,OAAO,EAAC,QAAQ,EAAC,MAAM,aAAa,CAAC;AACrC,OAAO,EAAC,YAAY,EAAsB,gBAAgB,EAAE,gBAAgB,EAAE,cAAc,EAAC,MAAM,UAAU,CAAC;;AAa9G
|
|
1
|
+
{"version":3,"file":"nec-dashboard.component.d.ts","sourceRoot":"","sources":["../../../libs/ngrx-entity-crud/devtools/nec-dashboard.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nec-store-probe.service.d.ts","sourceRoot":"","sources":["../../../../libs/ngrx-entity-crud/devtools/probes/nec-store-probe.service.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6B,cAAc,EAAgB,MAAM,WAAW,CAAC;;AAEpF,UAAU,YAAY;IACpB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB;AAED;;;;;;GAMG;AACH,qBACa,oBAAoB;IAC/B,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAiB;IAEvC,yFAAyF;IACzF,IAAI,CAAC,IAAI,GAAE,YAAiB,GAAG,cAAc;IAkE7C;;;;;;OAMG;IACH,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAIzC,uGAAuG;IACvG,wBAAwB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAIlD;;;;OAIG;IACH,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAI7B,wGAAwG;IACxG,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAItC,mGAAmG;IAC7F,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,GAAE,YAAiB,GAAG,OAAO,CAAC,cAAc,CAAC;YASzE,eAAe;
|
|
1
|
+
{"version":3,"file":"nec-store-probe.service.d.ts","sourceRoot":"","sources":["../../../../libs/ngrx-entity-crud/devtools/probes/nec-store-probe.service.ts"],"names":[],"mappings":"AAGA,OAAO,EAA6B,cAAc,EAAgB,MAAM,WAAW,CAAC;;AAEpF,UAAU,YAAY;IACpB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB;AAED;;;;;;GAMG;AACH,qBACa,oBAAoB;IAC/B,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAiB;IAEvC,yFAAyF;IACzF,IAAI,CAAC,IAAI,GAAE,YAAiB,GAAG,cAAc;IAkE7C;;;;;;OAMG;IACH,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAIzC,uGAAuG;IACvG,wBAAwB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAIlD;;;;OAIG;IACH,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAI7B,wGAAwG;IACxG,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAItC,mGAAmG;IAC7F,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,GAAE,YAAiB,GAAG,OAAO,CAAC,cAAc,CAAC;YASzE,eAAe;IA+C7B;;;OAGG;IACH,OAAO,CAAC,UAAU;yCAjKP,oBAAoB;6CAApB,oBAAoB;CAoKhC"}
|