pict-section-recordset 1.9.6 → 1.11.0
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 +38 -0
- package/package.json +2 -2
- package/source/Pict-Section-RecordSet.js +1 -0
- package/source/providers/Column-Data-Provider.js +219 -0
- package/source/providers/RecordSet-RecordProvider-Base.js +64 -1
- package/source/providers/RecordSet-RecordProvider-MeadowEndpoints.js +92 -16
- package/source/services/RecordsSet-MetaController.js +23 -1
- package/source/templates/Pict-Template-FilterInstanceViews.js +4 -0
- package/source/views/RecordSet-Filters.js +140 -3
- package/source/views/filters/RecordSet-Filter-DistinctSelectedValueList.js +233 -0
- package/source/views/filters/index.js +2 -0
- package/source/views/list/RecordSet-List-ColumnChooser.js +345 -0
- package/source/views/list/RecordSet-List-RecordListEntry.js +4 -1
- package/source/views/list/RecordSet-List.js +390 -15
- package/source/views/read/RecordSet-Read.js +65 -6
- package/types/Pict-Section-RecordSet.d.ts +1 -0
- package/types/providers/Column-Data-Provider.d.ts +115 -0
- package/types/providers/Column-Data-Provider.d.ts.map +1 -0
- package/types/providers/RecordSet-DynamicRecordsetSolver.d.ts +3 -0
- package/types/providers/RecordSet-DynamicRecordsetSolver.d.ts.map +1 -1
- package/types/providers/RecordSet-RecordProvider-Base.d.ts +110 -0
- package/types/providers/RecordSet-RecordProvider-Base.d.ts.map +1 -1
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts +51 -1
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -1
- package/types/providers/RecordSet-Router.d.ts +1 -0
- package/types/providers/RecordSet-Router.d.ts.map +1 -1
- package/types/services/RecordsSet-MetaController.d.ts.map +1 -1
- package/types/templates/Pict-Template-FilterInstanceViews.d.ts.map +1 -1
- package/types/views/RecordSet-Filters.d.ts +61 -0
- package/types/views/RecordSet-Filters.d.ts.map +1 -1
- package/types/views/RecordSet-RecordBaseView.d.ts +1 -0
- package/types/views/RecordSet-RecordBaseView.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-EntityReference-Base.d.ts.map +1 -1
- package/types/views/list/RecordSet-List-ColumnChooser.d.ts +68 -0
- package/types/views/list/RecordSet-List-ColumnChooser.d.ts.map +1 -0
- package/types/views/list/RecordSet-List-RecordListEntry.d.ts.map +1 -1
- package/types/views/list/RecordSet-List.d.ts +167 -2
- package/types/views/list/RecordSet-List.d.ts.map +1 -1
- package/types/views/read/RecordSet-Read.d.ts +8 -0
- package/types/views/read/RecordSet-Read.d.ts.map +1 -1
|
@@ -6,6 +6,7 @@ declare const _exports: {
|
|
|
6
6
|
PictRecordSetApplication: typeof import("./application/Pict-Application-RecordSet.js");
|
|
7
7
|
RecordSetProviderBase: typeof import("./providers/RecordSet-RecordProvider-Base.js");
|
|
8
8
|
RecordSetProviderMeadowEndpoints: typeof import("./providers/RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
9
|
+
ColumnDataProvider: typeof import("./providers/Column-Data-Provider.js");
|
|
9
10
|
};
|
|
10
11
|
export = _exports;
|
|
11
12
|
//# sourceMappingURL=Pict-Section-RecordSet.d.ts.map
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
export = ColumnDataProvider;
|
|
2
|
+
/** Terminology for Column Data Provider (to avoid confusion):
|
|
3
|
+
* A "Record Set" is a collection of records rendered as a list with columns.
|
|
4
|
+
* A "Column Visibility Override" is a per-column user choice (true = show, false = hide)
|
|
5
|
+
* that overrides the column's default visibility (visible unless DefaultHidden).
|
|
6
|
+
* Columns with no override entry render at their default visibility.
|
|
7
|
+
|
|
8
|
+
* Behavior Summary:
|
|
9
|
+
* - Save the per-recordset override map to LocalStorage under a key derived from
|
|
10
|
+
* Record Set and View Context.
|
|
11
|
+
* - Mirror the override map into pict.Bundle._ActiveColumnState[RecordSet] so reads
|
|
12
|
+
* are synchronous and consistent within a session (the Meadow record provider reads
|
|
13
|
+
* this at fetch time to widen Lite projections before the list view composes columns).
|
|
14
|
+
* - Clear both on "Reset to defaults".
|
|
15
|
+
|
|
16
|
+
* Storage Key Structure:
|
|
17
|
+
* - Column_Meta_{RecordSet}_{ViewContext} : stores the Column Meta JSON.
|
|
18
|
+
|
|
19
|
+
* Object Shape for Column Meta:
|
|
20
|
+
* {
|
|
21
|
+
* RecordSet: string, (auto-filled on save)
|
|
22
|
+
* ViewContext: string, (auto-filled on save; 'List' for the list view)
|
|
23
|
+
* Overrides: { [ColumnKey: string]: boolean },
|
|
24
|
+
* LastModifiedDate: string (ISO date) (auto-filled on save)
|
|
25
|
+
* }
|
|
26
|
+
|
|
27
|
+
* Host override contract:
|
|
28
|
+
* - To persist column choices somewhere other than LocalStorage (e.g. a per-user
|
|
29
|
+
* server-side preference), register your own provider AS 'ColumnDataProvider'
|
|
30
|
+
* BEFORE PictSectionRecordSet.initialize() runs — the section only registers this
|
|
31
|
+
* one when no provider with that hash exists yet. Load remote prefs at app start
|
|
32
|
+
* and seed them through setColumnVisibilityOverride (or write the Bundle mirror
|
|
33
|
+
* directly); the read methods here must stay synchronous.
|
|
34
|
+
*/
|
|
35
|
+
declare class ColumnDataProvider extends libPictProvider {
|
|
36
|
+
/**
|
|
37
|
+
* @param {import('pict')} pFable - The Fable instance
|
|
38
|
+
* @param {Record<string, any>} [pOptions] - The options for the provider
|
|
39
|
+
* @param {string} [pServiceHash] - The service hash for the provider
|
|
40
|
+
*/
|
|
41
|
+
constructor(pFable: import("pict"), pOptions?: Record<string, any>, pServiceHash?: string);
|
|
42
|
+
storageProvider: any;
|
|
43
|
+
keyCache: {};
|
|
44
|
+
/**
|
|
45
|
+
* Resolve the LocalStorage key for a record set's column visibility overrides.
|
|
46
|
+
*
|
|
47
|
+
* @param {string} pRecordSet - The record set the overrides belong to
|
|
48
|
+
* @param {string} [pViewContext] - The view context (defaults to 'List')
|
|
49
|
+
* @return {string} The storage key for the column meta record.
|
|
50
|
+
*/
|
|
51
|
+
getColumnStorageKey(pRecordSet: string, pViewContext?: string): string;
|
|
52
|
+
/**
|
|
53
|
+
* Get the column visibility override map for a record set.
|
|
54
|
+
*
|
|
55
|
+
* Bundle-first: the session mirror in pict.Bundle._ActiveColumnState wins; on a
|
|
56
|
+
* miss the stored meta is read and seeded into the Bundle so every later read
|
|
57
|
+
* (including the Meadow provider's fetch-time read) is synchronous and consistent.
|
|
58
|
+
*
|
|
59
|
+
* @param {string} pRecordSet - The record set to get overrides for
|
|
60
|
+
* @param {string} [pViewContext] - The view context (defaults to 'List')
|
|
61
|
+
* @return {Record<string, boolean>} The override map (empty object when none).
|
|
62
|
+
*/
|
|
63
|
+
getColumnVisibilityOverrides(pRecordSet: string, pViewContext?: string): Record<string, boolean>;
|
|
64
|
+
/**
|
|
65
|
+
* Set (and persist) a single column visibility override for a record set.
|
|
66
|
+
*
|
|
67
|
+
* @param {string} pRecordSet - The record set the column belongs to
|
|
68
|
+
* @param {string} pViewContext - The view context ('List' for the list view; falsy defaults to 'List')
|
|
69
|
+
* @param {string} pKey - The column key
|
|
70
|
+
* @param {boolean} pVisible - Whether the column should be visible
|
|
71
|
+
* @return {Record<string, boolean>} The updated override map.
|
|
72
|
+
*/
|
|
73
|
+
setColumnVisibilityOverride(pRecordSet: string, pViewContext: string, pKey: string, pVisible: boolean): Record<string, boolean>;
|
|
74
|
+
/**
|
|
75
|
+
* Clear all column visibility overrides for a record set (Reset to defaults).
|
|
76
|
+
*
|
|
77
|
+
* @param {string} pRecordSet - The record set to clear overrides for
|
|
78
|
+
* @param {string} [pViewContext] - The view context (defaults to 'List')
|
|
79
|
+
* @return {boolean} True when the overrides have been cleared.
|
|
80
|
+
*/
|
|
81
|
+
clearColumnVisibilityOverrides(pRecordSet: string, pViewContext?: string): boolean;
|
|
82
|
+
/**
|
|
83
|
+
* Write the session mirror of a record set's override map into the Bundle.
|
|
84
|
+
*
|
|
85
|
+
* @param {string} pRecordSet - The record set the overrides belong to
|
|
86
|
+
* @param {Record<string, boolean>} pOverrides - The override map to mirror
|
|
87
|
+
*/
|
|
88
|
+
_seedBundleColumnState(pRecordSet: string, pOverrides: Record<string, boolean>): void;
|
|
89
|
+
/** ===== SIMPLE KEY-VALUE CACHE ============= */
|
|
90
|
+
/**
|
|
91
|
+
* @param {string} pKey - The key to get from the cache
|
|
92
|
+
* @return {any} - The value associated with the key, or null if not found
|
|
93
|
+
*/
|
|
94
|
+
getItem(pKey: string): any;
|
|
95
|
+
/**
|
|
96
|
+
* @param {string} pKey - The key to set in the cache
|
|
97
|
+
* @param {any} pValue - The value to associate with the key
|
|
98
|
+
*/
|
|
99
|
+
setItem(pKey: string, pValue: any): boolean;
|
|
100
|
+
/**
|
|
101
|
+
* @param {string} pKey - The key to remove from the cache
|
|
102
|
+
* @return {boolean} - True if the item was removed, false if it was not found
|
|
103
|
+
*/
|
|
104
|
+
removeItem(pKey: string): boolean;
|
|
105
|
+
}
|
|
106
|
+
declare namespace ColumnDataProvider {
|
|
107
|
+
export { _DEFAULT_PROVIDER_CONFIGURATION as default_configuration };
|
|
108
|
+
}
|
|
109
|
+
import libPictProvider = require("pict-provider");
|
|
110
|
+
declare namespace _DEFAULT_PROVIDER_CONFIGURATION {
|
|
111
|
+
let ProviderIdentifier: string;
|
|
112
|
+
let AutoInitialize: boolean;
|
|
113
|
+
let AutoInitializeOrdinal: number;
|
|
114
|
+
}
|
|
115
|
+
//# sourceMappingURL=Column-Data-Provider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Column-Data-Provider.d.ts","sourceRoot":"","sources":["../../source/providers/Column-Data-Provider.js"],"names":[],"mappings":";AASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCE;AAEF;IAEC;;;;OAIG;IACH,oBAJW,OAAO,MAAM,CAAC,aACd,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,EAchB;IANA,qBAA2B;IAC3B,aAAkB;IAOnB;;;;;;OAMG;IACH,gCAJW,MAAM,iBACN,MAAM,GACL,MAAM,CAKjB;IAED;;;;;;;;;;OAUG;IACH,yCAJW,MAAM,iBACN,MAAM,GACL,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAiClC;IAED;;;;;;;;OAQG;IACH,wCANW,MAAM,gBACN,MAAM,QACN,MAAM,YACN,OAAO,GACN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAgBlC;IAED;;;;;;OAMG;IACH,2CAJW,MAAM,iBACN,MAAM,GACL,OAAO,CAUlB;IAED;;;;;OAKG;IACH,mCAHW,MAAM,cACN,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,QASjC;IAED,iDAAiD;IAEjD;;;OAGG;IACH,cAHW,MAAM,GACL,GAAG,CASd;IAED;;;OAGG;IACH,cAHW,MAAM,UACN,GAAG,WAMb;IAED;;;OAGG;IACH,iBAHW,MAAM,GACL,OAAO,CAUlB;CACD"}
|
|
@@ -27,6 +27,7 @@ declare class RecordSetDynamicRecordsetSolver extends libPictProvider {
|
|
|
27
27
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
28
28
|
RecordSetProviderBase: typeof import("./RecordSet-RecordProvider-Base.js");
|
|
29
29
|
RecordSetProviderMeadowEndpoints: typeof import("./RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
30
|
+
ColumnDataProvider: typeof import("./Column-Data-Provider.js");
|
|
30
31
|
}>;
|
|
31
32
|
};
|
|
32
33
|
/** @type {import('pict') & { instantiateServiceProviderIfNotExists: (hash: string) => any, ExpressionParser: any }} */
|
|
@@ -73,6 +74,7 @@ declare class RecordSetDynamicRecordsetSolver extends libPictProvider {
|
|
|
73
74
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
74
75
|
RecordSetProviderBase: typeof import("./RecordSet-RecordProvider-Base.js");
|
|
75
76
|
RecordSetProviderMeadowEndpoints: typeof import("./RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
77
|
+
ColumnDataProvider: typeof import("./Column-Data-Provider.js");
|
|
76
78
|
}>;
|
|
77
79
|
};
|
|
78
80
|
AppData: Record<string, any>;
|
|
@@ -96,6 +98,7 @@ declare class RecordSetDynamicRecordsetSolver extends libPictProvider {
|
|
|
96
98
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
97
99
|
RecordSetProviderBase: typeof import("./RecordSet-RecordProvider-Base.js");
|
|
98
100
|
RecordSetProviderMeadowEndpoints: typeof import("./RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
101
|
+
ColumnDataProvider: typeof import("./Column-Data-Provider.js");
|
|
99
102
|
}>;
|
|
100
103
|
};
|
|
101
104
|
AppData: Record<string, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-DynamicRecordsetSolver.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-DynamicRecordsetSolver.js"],"names":[],"mappings":";AAaA;;GAEG;AACH;IAEC;;;;;;OAMG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAwBhB;IAjBA;;;;YAIQ;IACR,MALW,OAAO,MAAM,CAAC,GAAG;QACxB,qCAAqC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG,CAAC;QAC7D,gBAAgB,EAAE,GAAG,CAAC;QACtB,oBAAoB,EAAE,YAAY,CAAC
|
|
1
|
+
{"version":3,"file":"RecordSet-DynamicRecordsetSolver.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-DynamicRecordsetSolver.js"],"names":[],"mappings":";AAaA;;GAEG;AACH;IAEC;;;;;;OAMG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAwBhB;IAjBA;;;;YAIQ;IACR,MALW,OAAO,MAAM,CAAC,GAAG;QACxB,qCAAqC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG,CAAC;QAC7D,gBAAgB,EAAE,GAAG,CAAC;QACtB,oBAAoB,EAAE,YAAY,CAAC;;;;;;;;;SAAsC,CAAC,CAAA;KAC1E,CACK;IACT,uHAAuH;IACvH,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,qCAAqC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG,CAAC;QAAC,gBAAgB,EAAE,GAAG,CAAA;KAAE,CACzG;IAYX;;;;;;;;;OASG;IACH,qBALW,MAAM,GAAC,MAAM,cACb,OAAO,aACP,MAAM,GACJ,MAAM,GAAC,SAAS,CA8B5B;IAED;;;;;;;;;OASG;IACH,8BALW,OAAO,UAAU,CAAC,qCAElB,MAAM,YACN,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,QAuCpC;IAED;;;;OAIG;IACH,gCAJW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,YACnB,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,aAC1B,OAAO,UAAU,CAAC;;mDA9Ge,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG;8BAC1C,GAAG;kCACC,YAAY,CAAC;;;;;;;;;aAAsC,CAAC;;;;;;MAiH9E;IAED;;;OAGG;IACH,mCAHW,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,aAC1B,OAAO,UAAU,CAAC;;mDAvHe,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG;8BAC1C,GAAG;kCACC,YAAY,CAAC;;;;;;;;;aAAsC,CAAC;;;;;;MAgI9E;IAED;;;;;;;OAOG;IACH,mCALW,OAAO,UAAU,CAAC,uCAElB,MAAM,YACN,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,QA+BpC;IAED;;;;;;;;OAQG;IACH,gCAJW,MAAM,yBAWhB;IAED;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,oCAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,YACnB,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,QA4DpC;IADA;;;;MAAuC;CAExC;;;;;AA5SD,kCAAkC;AAClC,6CADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAS3B"}
|
|
@@ -183,6 +183,116 @@ declare class RecordSetProviderBase extends libPictProvider {
|
|
|
183
183
|
* @return {Array<Record<string, any>>} The filter clauses.
|
|
184
184
|
*/
|
|
185
185
|
getFilterClauses(): Array<Record<string, any>>;
|
|
186
|
+
/**
|
|
187
|
+
* Resolve the quick-filter definitions for this record set. Precedence: a `QuickFilters` array config
|
|
188
|
+
* (curated) → those; `QuickFilters: false` → none (explicit per-record-set opt-out); otherwise clever
|
|
189
|
+
* defaults derived from the schema — UNLESS `pAllowCleverDefaults` is false (the host put quick filters
|
|
190
|
+
* in opt-in-only mode, so a record set shows the bar only when it sets an explicit `QuickFilters`
|
|
191
|
+
* array). Each definition resolves to a concrete clause descriptor from the field's `AvailableClauses`.
|
|
192
|
+
*
|
|
193
|
+
* @param {boolean} [pAllowCleverDefaults] - false → no clever defaults (opt-in only). Default true.
|
|
194
|
+
* @return {Array<{Field:string, Label:string, Control:string, ClauseKey:string}>}
|
|
195
|
+
*/
|
|
196
|
+
getQuickFilterDefinitions(pAllowCleverDefaults?: boolean): Array<{
|
|
197
|
+
Field: string;
|
|
198
|
+
Label: string;
|
|
199
|
+
Control: string;
|
|
200
|
+
ClauseKey: string;
|
|
201
|
+
}>;
|
|
202
|
+
/**
|
|
203
|
+
* Clever defaults (zero config): the common things people filter on, detected by canonical Meadow
|
|
204
|
+
* column names on the fetched schema. Primary text (Title→Name), the audit date ranges, the audit
|
|
205
|
+
* user references. Absent `_Schema` (non-Meadow provider) → no defaults.
|
|
206
|
+
*
|
|
207
|
+
* @return {Array<{Field:string, Label?:string}>}
|
|
208
|
+
*/
|
|
209
|
+
_deriveDefaultQuickFilters(): Array<{
|
|
210
|
+
Field: string;
|
|
211
|
+
Label?: string;
|
|
212
|
+
}>;
|
|
213
|
+
/**
|
|
214
|
+
* Resolve one quick-filter config entry to a renderable definition: pick the clause (explicit
|
|
215
|
+
* `ClauseKey`, else the best for a quick filter) from the field's AvailableClauses + classify it to a
|
|
216
|
+
* control type. Returns null when the field has no usable clause.
|
|
217
|
+
*
|
|
218
|
+
* @param {Record<string, any>} pEntry @return {{Field:string, Label:string, Control:string, ClauseKey:string}|null}
|
|
219
|
+
*/
|
|
220
|
+
_resolveQuickFilterDefinition(pEntry: Record<string, any>): {
|
|
221
|
+
Field: string;
|
|
222
|
+
Label: string;
|
|
223
|
+
Control: string;
|
|
224
|
+
ClauseKey: string;
|
|
225
|
+
} | null;
|
|
226
|
+
/**
|
|
227
|
+
* Choose the clause a quick filter should drive for a field: an entity selected-value, else a fuzzy
|
|
228
|
+
* string match, else a range — i.e. the simplest one-interaction clause the field offers.
|
|
229
|
+
*
|
|
230
|
+
* @param {Array<Record<string, any>>} pAvailableClauses @return {Record<string, any>|undefined}
|
|
231
|
+
*/
|
|
232
|
+
_pickQuickClause(pAvailableClauses: Array<Record<string, any>>): Record<string, any> | undefined;
|
|
233
|
+
/**
|
|
234
|
+
* Map a clause Type to the quick-bar control that drives it.
|
|
235
|
+
* @param {string} pType @return {string|null}
|
|
236
|
+
*/
|
|
237
|
+
_controlForClauseType(pType: string): string | null;
|
|
238
|
+
/**
|
|
239
|
+
* The entity's soft-delete column name. Subclasses with schema access override this
|
|
240
|
+
* (the Meadow provider resolves the column whose Type is 'Deleted').
|
|
241
|
+
* @return {string}
|
|
242
|
+
*/
|
|
243
|
+
getDeletedField(): string;
|
|
244
|
+
/** @return {boolean} Whether the show-deleted clause is currently active for this record set. */
|
|
245
|
+
getShowDeletedFilterValue(): boolean;
|
|
246
|
+
/**
|
|
247
|
+
* Toggle the show-deleted clause: a RawFilter stanza that references the Deleted column
|
|
248
|
+
* explicitly, which suppresses the automatic `Deleted = 0` delete tracking so soft-deleted
|
|
249
|
+
* rows enumerate. It is a real clause in the active filter state, so it serializes into the
|
|
250
|
+
* filter experience (and the route URL) and clears with Clear like any other clause. The
|
|
251
|
+
* clause list UI skips it (no filter view for RawFilter) — the drawer checkbox is its face.
|
|
252
|
+
*
|
|
253
|
+
* @param {boolean} pOn - Whether deleted records should be included.
|
|
254
|
+
* @return {boolean} The resulting state.
|
|
255
|
+
*/
|
|
256
|
+
setShowDeletedFilterValue(pOn: boolean): boolean;
|
|
257
|
+
/** @param {string} pField @return {any} The current value of a field's quick-filter clause, or ''. */
|
|
258
|
+
getQuickFilterClauseValue(pField: string): any;
|
|
259
|
+
/**
|
|
260
|
+
* Upsert (or, when the value is empty, remove) a field's quick-filter clause with a scalar value.
|
|
261
|
+
* Creates the clause from the field's descriptor on first use, tagged so it renders in the quick bar
|
|
262
|
+
* and serializes/applies like any clause.
|
|
263
|
+
*
|
|
264
|
+
* @param {string} pField @param {string} pClauseKey @param {any} pValue
|
|
265
|
+
*/
|
|
266
|
+
upsertQuickFilterClauseValue(pField: string, pClauseKey: string, pValue: any): void;
|
|
267
|
+
/** @param {string} pField @return {{Start:any, End:any}} The current DateRange quick-filter bounds. */
|
|
268
|
+
getQuickFilterDateRangeValue(pField: string): {
|
|
269
|
+
Start: any;
|
|
270
|
+
End: any;
|
|
271
|
+
};
|
|
272
|
+
/**
|
|
273
|
+
* Set one bound of a field's DateRange quick-filter clause (create on first use, remove when BOTH
|
|
274
|
+
* bounds are empty). Bounds live at `clause.Values.Start` / `.End` (the DateRange contract).
|
|
275
|
+
*
|
|
276
|
+
* @param {string} pField @param {string} pClauseKey @param {'start'|'end'} pWhich @param {any} pValue
|
|
277
|
+
*/
|
|
278
|
+
upsertQuickFilterDateRange(pField: string, pClauseKey: string, pWhich: "start" | "end", pValue: any): void;
|
|
279
|
+
/** @param {string} pField @return {Array<any>} The current entity quick-filter selected value(s). */
|
|
280
|
+
getQuickFilterEntityValue(pField: string): Array<any>;
|
|
281
|
+
/**
|
|
282
|
+
* Set a field's entity quick-filter clause to the picked value(s) (create on first use, remove when
|
|
283
|
+
* empty). Selected ids live at `clause.Values` (the entity-reference contract).
|
|
284
|
+
*
|
|
285
|
+
* @param {string} pField @param {string} pClauseKey @param {any} pValue scalar or array
|
|
286
|
+
*/
|
|
287
|
+
upsertQuickFilterEntity(pField: string, pClauseKey: string, pValue: any): void;
|
|
288
|
+
/**
|
|
289
|
+
* Clone a field's clause descriptor into a fresh, tagged quick-filter clause (no value set yet), or
|
|
290
|
+
* null when the descriptor is missing. Shared by the text / date / entity upserts.
|
|
291
|
+
*
|
|
292
|
+
* @param {string} pField @param {string} pClauseKey @param {string} pQuickFilterKey
|
|
293
|
+
* @return {Record<string, any>|null}
|
|
294
|
+
*/
|
|
295
|
+
_createQuickFilterClause(pField: string, pClauseKey: string, pQuickFilterKey: string): Record<string, any> | null;
|
|
186
296
|
/**
|
|
187
297
|
* @param {string} pSpecificFilterClauseHash - The hash of the specific filter clause to move.
|
|
188
298
|
* @param {number} pOrdinal - The ordinal position to move the filter clause to.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-RecordProvider-Base.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-Base.js"],"names":[],"mappings":";AAcA;;;;;;;GAOG;AAEH;;;;;;GAMG;AAEH;;;;GAIG;AAEH;;;;;;;GAOG;AAEH;;;GAGG;AACH;IAEC;;;;;OAKG;IACH,oBAJW,OAAO,MAAM,CAAC,aACd,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,EAiBhB;IAPA,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IACV,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAET,kCAAkC;IAClC,eADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CACN;IAGzB;;;;OAIG;IACH,qBAFW,MAAM,GAAC,MAAM,eAMvB;IAED;;;;OAIG;IACH,uBAFW,MAAM,GAAC,MAAM,eAMvB;IASD,uBAGC;IAED,qBAGC;IAED;;;;;OAKG;IACH,qBAHW,eAAe,GACd,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;;;OAMG;IACH,8BAJW,eAAe,GAEd,OAAO,CAAC,eAAe,CAAC,CAOnC;IAED;;;;;;;OAOG;IACH,iCALW,MAAM,YACN,MAAM,cACN,MAAM,GACL,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;OAIG;IACH,4BAFW,eAAe;;OAMzB;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAMvC;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAMvC;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,IAAI,CAAC,CAKxB;IAED;;;;OAIG;IACH,sBAFW,MAAM,GAAC,MAAM,eAMvB;IAED;;;;;OAKG;IACH,sBAHW,eAAe,GACd,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;;OAKG;IACH,qBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAKvC;IAED;;;;OAIG;IACH,qBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,uBAK7B;IAED;;OAEG;IACH,oBAFY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;;;;OAKG;IACH,8BAHW,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GACzB,OAAO,CAAC,IAAI,CAAC,CAIxB;IAED;;OAEG;IACH,mBAFY,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAKvC;IAED;;OAEG;IACH,uBAFY,KAAK,CAAC,MAAM,CAAC,CAKxB;IAED;;;;OAIG;IACH,wCAJW,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;OAEG;IACH,mBAFY,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAY9C;IAED;;;OAGG;IACH,4BAHW,MAAM,cACN,MAAM,QAehB;IAED;OACG;IACH,2BAQC;IAED;;OAEG;IACH,8CAFW,MAAM,QAiBhB;IAED;;OAEG;IACH,oBAFY,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAarC;IAED;;;OAGG;IACH,8CAHW,MAAM,YACN,MAAM,QAuBhB;IAED;;;OAGG;IACH,8CAHW,MAAM,kBACN,MAAM,QAwBhB;CACD;;;;;
|
|
1
|
+
{"version":3,"file":"RecordSet-RecordProvider-Base.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-Base.js"],"names":[],"mappings":"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"}
|
|
@@ -29,6 +29,7 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
|
|
|
29
29
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
30
30
|
RecordSetProviderBase: typeof libRecordSetProviderBase;
|
|
31
31
|
RecordSetProviderMeadowEndpoints: typeof MeadowEndpointsRecordSetProvider;
|
|
32
|
+
ColumnDataProvider: typeof import("./Column-Data-Provider.js");
|
|
32
33
|
}>;
|
|
33
34
|
[key: string]: any;
|
|
34
35
|
};
|
|
@@ -41,6 +42,7 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
|
|
|
41
42
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
42
43
|
RecordSetProviderBase: typeof libRecordSetProviderBase;
|
|
43
44
|
RecordSetProviderMeadowEndpoints: typeof MeadowEndpointsRecordSetProvider;
|
|
45
|
+
ColumnDataProvider: typeof import("./Column-Data-Provider.js");
|
|
44
46
|
}>;
|
|
45
47
|
};
|
|
46
48
|
fable: import("pict") & {
|
|
@@ -54,6 +56,7 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
|
|
|
54
56
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
55
57
|
RecordSetProviderBase: typeof libRecordSetProviderBase;
|
|
56
58
|
RecordSetProviderMeadowEndpoints: typeof MeadowEndpointsRecordSetProvider;
|
|
59
|
+
ColumnDataProvider: typeof import("./Column-Data-Provider.js");
|
|
57
60
|
}>;
|
|
58
61
|
[key: string]: any;
|
|
59
62
|
};
|
|
@@ -66,6 +69,7 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
|
|
|
66
69
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
67
70
|
RecordSetProviderBase: typeof libRecordSetProviderBase;
|
|
68
71
|
RecordSetProviderMeadowEndpoints: typeof MeadowEndpointsRecordSetProvider;
|
|
72
|
+
ColumnDataProvider: typeof import("./Column-Data-Provider.js");
|
|
69
73
|
}>;
|
|
70
74
|
};
|
|
71
75
|
/** @type {Record<string, any>} */
|
|
@@ -78,6 +82,16 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
|
|
|
78
82
|
get entityProvider(): import("pict/types/source/Pict-Meadow-EntityProvider.js");
|
|
79
83
|
/** @type {import('pict/types/source/Pict-Meadow-EntityProvider.js')} */
|
|
80
84
|
_EntityProvider: import("pict/types/source/Pict-Meadow-EntityProvider.js");
|
|
85
|
+
/**
|
|
86
|
+
* Fetch (and cache) the DISTINCT values of a column present in this recordset's data, via
|
|
87
|
+
* Meadow's `<Entity>s/Distinct/<Column>` endpoint. Drives the `ScopeToRecordSet` filter knob:
|
|
88
|
+
* an entity picker can be limited to `FBL~<Column>~INN~<these values>` so it only lists the
|
|
89
|
+
* entities the data actually references, not the whole remote table. Cached per column.
|
|
90
|
+
*
|
|
91
|
+
* @param {string} pColumn @param {(pError: Error|null, pValues: Array<any>) => void} fCallback
|
|
92
|
+
*/
|
|
93
|
+
getRecordSetColumnDistinct(pColumn: string, fCallback: (pError: Error | null, pValues: Array<any>) => void): void;
|
|
94
|
+
_scopeDistinctCache: any;
|
|
81
95
|
/**
|
|
82
96
|
* @return {Array<string>} - The fields to ignore for filter availability.
|
|
83
97
|
*/
|
|
@@ -90,19 +104,41 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
|
|
|
90
104
|
getRecord(pIDOrGuid: string | number): Promise<any>;
|
|
91
105
|
getGUIDField(): any;
|
|
92
106
|
getIDField(): any;
|
|
107
|
+
getDeletedField(): any;
|
|
93
108
|
/**
|
|
94
109
|
* Get a record by its ID or GUID.
|
|
95
110
|
*
|
|
96
111
|
* @param {string|number} pGuid - The ID or GUID of the record.
|
|
112
|
+
* @param {boolean} [pIncludeDeleted] - When true, also match soft-deleted records (the explicit
|
|
113
|
+
* Deleted filter suppresses the automatic `Deleted = 0`).
|
|
97
114
|
*/
|
|
98
|
-
getRecordByGUID(pGuid: string | number): Promise<any>;
|
|
115
|
+
getRecordByGUID(pGuid: string | number, pIncludeDeleted?: boolean): Promise<any>;
|
|
99
116
|
_prepareFilterState(pEntity: any, pOptions: any, pFilterExperienceResultAddress?: string): any[];
|
|
117
|
+
/**
|
|
118
|
+
* Derive the Lite `ExtraColumns` for a list fetch from the manifest's displayed
|
|
119
|
+
* columns. Lite already returns the ID-prefixed, GUID-prefixed, CreatingIDUser and
|
|
120
|
+
* UpdateDate fields plus a computed Value, so we only request the remaining scalar
|
|
121
|
+
* display columns — and only ones that are real, non-blob schema columns. Returns
|
|
122
|
+
* [] (caller then does a safe full fetch) if the manifest columns or schema are
|
|
123
|
+
* unavailable.
|
|
124
|
+
* @param {string} pEntity - The entity being listed.
|
|
125
|
+
* @param {Record<string, any>} pOptions - The list options (carries RecordSetConfiguration).
|
|
126
|
+
* @return {Array<string>} The ExtraColumns to request.
|
|
127
|
+
*/
|
|
128
|
+
_deriveLiteExtraColumns(pEntity: string, pOptions: Record<string, any>): Array<string>;
|
|
100
129
|
/**
|
|
101
130
|
* Read records from the provider.
|
|
102
131
|
*
|
|
103
132
|
* @param {RecordSetFilter} pOptions - Options for the read operation.
|
|
104
133
|
*/
|
|
105
134
|
getRecordSetCount(pOptions: RecordSetFilter): Promise<any>;
|
|
135
|
+
_RecordSetCountCache: {
|
|
136
|
+
Key: string;
|
|
137
|
+
Count: any;
|
|
138
|
+
} | {
|
|
139
|
+
Key: string;
|
|
140
|
+
Count: any;
|
|
141
|
+
};
|
|
106
142
|
/**
|
|
107
143
|
* Create a new record.
|
|
108
144
|
*
|
|
@@ -133,6 +169,20 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
|
|
|
133
169
|
* @param {Record<string, any>} pRecord - The record to clone.
|
|
134
170
|
*/
|
|
135
171
|
cloneRecord(pRecord: Record<string, any>): Promise<any>;
|
|
172
|
+
/**
|
|
173
|
+
* The "list entry" display template for an entity — how one of its records should read as a single line
|
|
174
|
+
* in a picker option / selected chip. Returns a pict template string (rendered against the raw record by
|
|
175
|
+
* the picker's TextTemplate), or null to fall back to a single display field.
|
|
176
|
+
*
|
|
177
|
+
* This is deliberately a small, overridable seam: today it hard-knows `User` (whose name lives across
|
|
178
|
+
* NameFull / NameFirst+NameLast and needs an Email/LoginID disambiguator), but the intent is that this
|
|
179
|
+
* eventually reads a per-entity template off the Stricture schema instead of branching here.
|
|
180
|
+
*
|
|
181
|
+
* @param {string} pEntityName - The entity (e.g. 'User').
|
|
182
|
+
* @return {string|null}
|
|
183
|
+
*/
|
|
184
|
+
getEntityListEntryTemplate(pEntityName: string): string | null;
|
|
185
|
+
_entityListEntryTemplatesRegistered: boolean;
|
|
136
186
|
/**
|
|
137
187
|
* @param {string} pSchemaField - The schema field name.
|
|
138
188
|
* @param {Record<string, any>} pColumn - The full column definition from the schema.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-RecordProvider-MeadowEndpoints.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-MeadowEndpoints.js"],"names":[],"mappings":";AAGA;;;GAGG;AAEH;;;GAGG;AACH;IAcE;;;;;;;;;aASS;IACT,MAVW,OAAO,MAAM,CAAC,GAAG;QACpB,GAAG,EAAE,GAAG,CAAC;QACT,QAAQ,EACf;YACI,oBAAoB,EAAE,YAAY,CAAC
|
|
1
|
+
{"version":3,"file":"RecordSet-RecordProvider-MeadowEndpoints.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-MeadowEndpoints.js"],"names":[],"mappings":"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"}
|
|
@@ -11,6 +11,7 @@ declare class PictRecordSetRouter extends libPictProvider {
|
|
|
11
11
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
12
12
|
RecordSetProviderBase: typeof import("./RecordSet-RecordProvider-Base.js");
|
|
13
13
|
RecordSetProviderMeadowEndpoints: typeof import("./RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
14
|
+
ColumnDataProvider: typeof import("./Column-Data-Provider.js");
|
|
14
15
|
}>;
|
|
15
16
|
};
|
|
16
17
|
pictRouter: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Router.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-Router.js"],"names":[],"mappings":";AAYA;IAEC,2DAWC;IAJA,8GAA8G;IAC9G,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,oBAAoB,EAAE,YAAY,CAAC
|
|
1
|
+
{"version":3,"file":"RecordSet-Router.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-Router.js"],"names":[],"mappings":";AAYA;IAEC,2DAWC;IAJA,8GAA8G;IAC9G,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,oBAAoB,EAAE,YAAY,CAAC;;;;;;;;;SAAsC,CAAC,CAAA;KAAE,CACjG;IAET,gBAAsB;IAgBvB,8BAYC;IAED;;;;OAIG;IACH,iBAFW,MAAM,QAKhB;CACD;;;;;AA5DD,kCAAkC;AAClC,+CADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAO7B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordsSet-MetaController.d.ts","sourceRoot":"","sources":["../../source/services/RecordsSet-MetaController.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordsSet-MetaController.d.ts","sourceRoot":"","sources":["../../source/services/RecordsSet-MetaController.js"],"names":[],"mappings":";AAyBA;IAEC,2DAsHC;IAjHA,qLAAqL;IACrL,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,oBAAoB,EAAE,GAAG,CAAC;QAAC,iCAAiC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG,CAAC;QAAC,WAAW,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,GAAG,CAAA;KAAE,CACvK;IACV;8BAFoD,GAAG;2CAAqC,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG;qBAAe,CAAC,GAAG,EAAE,GAAG,KAAK,GAAG;MAEzJ;IAGtB,kBAAkB;IAClB,SADW,GAAG,CACF;IAIZ;;;;;MAKC;IAED,sDAAsD;IACtD,oBADW,MAAM,CAAC,MAAM,EAAE,OAAO,eAAe,CAAC,CAAC,CACtB;IAC5B,kDAAkD;IAClD,iCADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACL;IAEzC,kDAAkD;IAClD,yBADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACb;IAEjC,+DAA+D;IAC/D,kBADW,KAAK,CAAC,CAAC,WAAW,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC,CACjC;IAE1B,kDAAkD;IAClD,qBADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACjB;IAC7B,iDAAiD;IACjD,WADW,MAAM,CAAC,MAAM,EAAE,OAAO,UAAU,CAAC,CAAC,CACG;IAEhD,yBAA4B;IA6G7B;;;;OAIG;IACH,sCAJW,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;OAEG;IACH,oDAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,WAuH7B;IAED;;OAEG;IACH,8DAFW,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,WAqBpC;IAED;;;;OAIG;IACH,qCAJW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,MAAM,YAC5B,MAAM,mBACN,MAAM,OAqDhB;IAED;;OAEG;IACH,+CAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,OAe7B;IAED;;OAEG;IACH,qCAMC;IAED;;OAEG;IACH,0BAFW,MAAM,oBAYhB;IAED;;;;;;OAMG;IACH,qCANW,MAAM,gBACN,MAAM,YACN,OAAO,GAEN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED,0BA6FC;IAED,6CAGC;IAED;;;;;;OAMG;IACH,uBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QAe7B;IAED;;OAEG;IACH,sCAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QA2C7B;CAED;;;;;AAnlBD,kCAAkC;AAClC,sCADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAI3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Template-FilterInstanceViews.d.ts","sourceRoot":"","sources":["../../source/templates/Pict-Template-FilterInstanceViews.js"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH;IAEC;;;;OAIG;IACH,8DAeC;IAED,
|
|
1
|
+
{"version":3,"file":"Pict-Template-FilterInstanceViews.d.ts","sourceRoot":"","sources":["../../source/templates/Pict-Template-FilterInstanceViews.js"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH;IAEC;;;;OAIG;IACH,8DAeC;IAED,2FA8BC;CAuPD"}
|
|
@@ -11,6 +11,7 @@ declare class ViewRecordSetSUBSETFilters extends libPictView {
|
|
|
11
11
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
12
12
|
RecordSetProviderBase: typeof import("../providers/RecordSet-RecordProvider-Base.js");
|
|
13
13
|
RecordSetProviderMeadowEndpoints: typeof import("../providers/RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
14
|
+
ColumnDataProvider: typeof import("../providers/Column-Data-Provider.js");
|
|
14
15
|
};
|
|
15
16
|
};
|
|
16
17
|
chars: string;
|
|
@@ -93,6 +94,66 @@ declare class ViewRecordSetSUBSETFilters extends libPictView {
|
|
|
93
94
|
* @param {string} pRecordSet
|
|
94
95
|
*/
|
|
95
96
|
_paintFilterControls(pRecordSet: string): void;
|
|
97
|
+
/**
|
|
98
|
+
* Paint the Quick Filters bar into #PRSP_QuickFilters from the record set's quick-filter definitions
|
|
99
|
+
* (host config or clever defaults), each control seeded with its clause's current value. Phase 1
|
|
100
|
+
* renders the text controls; date/entity controls follow. Empty → the bar's :empty CSS hides it.
|
|
101
|
+
*
|
|
102
|
+
* @param {string} pRecordSet @param {string} pViewContext
|
|
103
|
+
*/
|
|
104
|
+
_renderQuickFilters(pRecordSet: string, pViewContext: string): void;
|
|
105
|
+
/**
|
|
106
|
+
* Mount (idempotently) a pict-section-picker into a quick-filter entity host, configured from the
|
|
107
|
+
* field's entity clause descriptor (RemoteTable / search columns / value column), single-select.
|
|
108
|
+
* On change it upserts the clause + applies. Re-runs after each render (the bar repaints wholesale),
|
|
109
|
+
* mirroring the form adapter's re-mount pattern. No-op if the picker module isn't registered.
|
|
110
|
+
*
|
|
111
|
+
* @param {string} pRecordSet @param {string} pViewContext @param {Record<string, any>} pMount
|
|
112
|
+
*/
|
|
113
|
+
_mountQuickFilterEntity(pRecordSet: string, pViewContext: string, pMount: Record<string, any>): void;
|
|
114
|
+
/**
|
|
115
|
+
* Apply a text quick filter: upsert (or clear) its tagged clause, then run the standard search +
|
|
116
|
+
* serialize path. Commits on blur / Enter (not per-keystroke) so the re-render never steals focus.
|
|
117
|
+
*
|
|
118
|
+
* @param {string} pRecordSet @param {string} pViewContext @param {string} pField @param {string} pClauseKey @param {string} pValue
|
|
119
|
+
*/
|
|
120
|
+
/**
|
|
121
|
+
* Flip the show-deleted switch (the drawer-footer checkbox, RecordSetListShowDeletedFilter
|
|
122
|
+
* recordsets). The switch is a REAL clause — a RawFilter referencing the Deleted column, which
|
|
123
|
+
* suppresses the automatic `Deleted = 0` so soft-deleted rows enumerate — upserted into the
|
|
124
|
+
* active filter state and applied through the normal search flow. Because the clause changes
|
|
125
|
+
* the serialized filter experience, the route URL always changes: the fetch reliably fires,
|
|
126
|
+
* and the state survives reloads and shared links. Clear/Reset drop it like any clause.
|
|
127
|
+
*
|
|
128
|
+
* @param {string} pRecordSet - The record set the toggle belongs to
|
|
129
|
+
* @param {string} pViewContext - The view context (List, Dashboard)
|
|
130
|
+
* @param {boolean} pChecked - Whether deleted records should be included
|
|
131
|
+
*/
|
|
132
|
+
toggleShowDeletedFilter(pRecordSet: string, pViewContext: string, pChecked: boolean): void;
|
|
133
|
+
/**
|
|
134
|
+
* Paint the show-deleted checkbox into its drawer-footer host (next to Clear/Reset/Apply),
|
|
135
|
+
* seeded from the clause's presence. Painted post-render like the quick bar; empty when the
|
|
136
|
+
* record set hasn't opted in via RecordSetListShowDeletedFilter.
|
|
137
|
+
*
|
|
138
|
+
* @param {string} pRecordSet @param {string} pViewContext
|
|
139
|
+
*/
|
|
140
|
+
_renderShowDeletedControl(pRecordSet: string, pViewContext: string): void;
|
|
141
|
+
applyQuickFilterText(pRecordSet: any, pViewContext: any, pField: any, pClauseKey: any, pValue: any): void;
|
|
142
|
+
/**
|
|
143
|
+
* Stage one bound (`start`/`end`) of a field's DateRange quick-filter clause.
|
|
144
|
+
* Doesn't fire the search — that waits for the user to click Apply / Search,
|
|
145
|
+
* so the From and To inputs change once each without racing the fetch.
|
|
146
|
+
*
|
|
147
|
+
* @param {string} pRecordSet @param {string} pViewContext @param {string} pField @param {string} pClauseKey @param {'start'|'end'} pWhich @param {string} pValue
|
|
148
|
+
*/
|
|
149
|
+
applyQuickFilterDate(pRecordSet: string, pViewContext: string, pField: string, pClauseKey: string, pWhich: "start" | "end", pValue: string): void;
|
|
150
|
+
/**
|
|
151
|
+
* Stage a field's entity quick-filter selection. Doesn't fire the search —
|
|
152
|
+
* commit happens on Apply / Search.
|
|
153
|
+
*
|
|
154
|
+
* @param {string} pRecordSet @param {string} pViewContext @param {string} pField @param {string} pClauseKey @param {any} pValue
|
|
155
|
+
*/
|
|
156
|
+
applyQuickFilterEntity(pRecordSet: string, pViewContext: string, pField: string, pClauseKey: string, pValue: any): void;
|
|
96
157
|
/**
|
|
97
158
|
* @param {Event} pEvent - The DOM event that triggered the search
|
|
98
159
|
* @param {string} pRecordSet - The record set being filtered
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":"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"}
|
|
@@ -21,6 +21,7 @@ declare class viewPictSectionRecordSetViewBase extends libPictView {
|
|
|
21
21
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
22
22
|
RecordSetProviderBase: typeof import("../providers/RecordSet-RecordProvider-Base.js");
|
|
23
23
|
RecordSetProviderMeadowEndpoints: typeof import("../providers/RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
24
|
+
ColumnDataProvider: typeof import("../providers/Column-Data-Provider.js");
|
|
24
25
|
}>;
|
|
25
26
|
};
|
|
26
27
|
addRoutes(pPictRouter: any): boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-RecordBaseView.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-RecordBaseView.js"],"names":[],"mappings":";AA6DA;IAEC,2DAYC;IARA;;;;;;YAMQ;IACR,MAPW,OAAO,MAAM,CAAC,GAAG;QACvB,GAAG,EAAE,GAAG,CAAC;QACT,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QACrE,qCAAqC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG,CAAC;QAC7D,mBAAmB,EAAE,OAAO,8DAA8D,CAAC,CAAC;QAC5F,oBAAoB,EAAE,YAAY,CAAC
|
|
1
|
+
{"version":3,"file":"RecordSet-RecordBaseView.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-RecordBaseView.js"],"names":[],"mappings":";AA6DA;IAEC,2DAYC;IARA;;;;;;YAMQ;IACR,MAPW,OAAO,MAAM,CAAC,GAAG;QACvB,GAAG,EAAE,GAAG,CAAC;QACT,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QACrE,qCAAqC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG,CAAC;QAC7D,mBAAmB,EAAE,OAAO,8DAA8D,CAAC,CAAC;QAC5F,oBAAoB,EAAE,YAAY,CAAC;;;;;;;;;SAAsC,CAAC,CAAC;KAC5E,CACK;IAGV,qCAIC;CACD;;;;;AAhFD,kCAAkC;AAClC,gDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAyD3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Filter-EntityReference-Base.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-EntityReference-Base.js"],"names":[],"mappings":";AAwFA;IAaC,wHAAwH;IACxH,yBADY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAmB,MAAM,CAIvD;IAED,wGAAwG;IACxG,yBADY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAmB,MAAM,CAIvD;IAED,sEAAsE;IACtE,iBADa,OAAO,CAInB;IAED;;;;;;;OAOG;IACH,+BAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAmB,MAAM,GAAC,KAAK,CAAC,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"RecordSet-Filter-EntityReference-Base.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-EntityReference-Base.js"],"names":[],"mappings":";AAwFA;IAaC,wHAAwH;IACxH,yBADY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAmB,MAAM,CAIvD;IAED,wGAAwG;IACxG,yBADY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAmB,MAAM,CAIvD;IAED,sEAAsE;IACtE,iBADa,OAAO,CAInB;IAED;;;;;;;OAOG;IACH,+BAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAmB,MAAM,GAAC,KAAK,CAAC,MAAM,CAAC,CAwBpE;IAoED,qGAGC;IAED,mGAmDC;IAED,sGAwBC;IAED,yGAYC;IAED,8FAA8F;IAC9F,oFAKC;CACD"}
|