@trudb/tru-common-lib 0.0.186 → 0.0.188
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/esm2020/lib/base-classes/tru-component-config-base.mjs +4 -0
- package/esm2020/lib/base-classes/tru-control-component-config-base.mjs +4 -0
- package/esm2020/lib/base-classes/tru-search-config-base.mjs +4 -0
- package/esm2020/lib/base-views/detail/tru-detail-view-base-module.mjs +19 -0
- package/esm2020/lib/base-views/detail/tru-detail-view-base.mjs +12 -0
- package/esm2020/lib/base-views/search/services/tru-search-view-event-handler.mjs +41 -0
- package/esm2020/lib/base-views/search/tru-search-view-base-module.mjs +19 -0
- package/esm2020/lib/base-views/search/tru-search-view-base.mjs +65 -0
- package/esm2020/lib/components/data-grid/tru-data-grid.mjs +2 -2
- package/esm2020/lib/components/desktop/services/tru-desktop-manager.mjs +81 -0
- package/esm2020/public-api.mjs +13 -7
- package/fesm2015/trudb-tru-common-lib.mjs +312 -140
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +312 -140
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/base-classes/tru-component-config-base.d.ts +3 -0
- package/lib/base-classes/tru-control-component-config-base.d.ts +19 -0
- package/lib/base-classes/tru-search-config-base.d.ts +9 -0
- package/lib/base-views/detail/tru-detail-view-base-module.d.ts +9 -0
- package/lib/base-views/detail/tru-detail-view-base.d.ts +6 -0
- package/lib/{event-handlers/tru-search-group-event-handler.d.ts → base-views/search/services/tru-search-view-event-handler.d.ts} +3 -3
- package/lib/base-views/search/tru-search-view-base-module.d.ts +9 -0
- package/lib/base-views/search/tru-search-view-base.d.ts +35 -0
- package/lib/components/data-grid/tru-data-grid.d.ts +1 -1
- package/lib/components/desktop/services/tru-desktop-manager.d.ts +29 -0
- package/package.json +1 -1
- package/public-api.d.ts +9 -3
- package/esm2020/lib/event-handlers/tru-search-group-event-handler.mjs +0 -41
- package/esm2020/lib/event-handlers/tru-search-view-event-handler.mjs +0 -20
- package/lib/event-handlers/tru-search-view-event-handler.d.ts +0 -8
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { EntityAspect, BinaryPredicate, AndOrPredicate, breeze, MetadataStore, DataService, EntityManager, EntityQuery, FetchStrategy, EntityState } from 'breeze-client';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { Directive, Input, Component,
|
|
4
|
-
import * as _ from 'underscore';
|
|
5
|
-
import * as moment from 'moment';
|
|
6
|
-
import * as i1 from '@angular/material/dialog';
|
|
7
|
-
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
|
|
3
|
+
import { Directive, Input, Component, NgModule, Injectable, EventEmitter, Inject, HostListener, ViewEncapsulation, Output, APP_INITIALIZER } from '@angular/core';
|
|
8
4
|
import * as i1$3 from '@angular/common';
|
|
9
5
|
import { CommonModule } from '@angular/common';
|
|
10
6
|
import * as i2 from '@angular/forms';
|
|
11
7
|
import { FormsModule } from '@angular/forms';
|
|
12
|
-
import { BehaviorSubject, defer, from, of, skip, forkJoin
|
|
8
|
+
import { Subject, BehaviorSubject, defer, from, of, skip, forkJoin } from 'rxjs';
|
|
9
|
+
import * as _ from 'underscore';
|
|
10
|
+
import * as moment from 'moment';
|
|
11
|
+
import * as i1 from '@angular/material/dialog';
|
|
12
|
+
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
|
|
13
13
|
import * as i1$2 from '@angular/common/http';
|
|
14
14
|
import { HttpClientModule } from '@angular/common/http';
|
|
15
15
|
import * as i3 from '@angular/material/checkbox';
|
|
@@ -30,6 +30,14 @@ import * as i1$4 from '@angular/platform-browser';
|
|
|
30
30
|
import { BrowserModule } from '@angular/platform-browser';
|
|
31
31
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
32
32
|
|
|
33
|
+
class TruComponentConfigBase {
|
|
34
|
+
constructor() { }
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
class TruControlComponentConfigBase {
|
|
38
|
+
constructor() { }
|
|
39
|
+
}
|
|
40
|
+
|
|
33
41
|
class TruEntityBase {
|
|
34
42
|
constructor(...args) {
|
|
35
43
|
this.entityAspect = new EntityAspect();
|
|
@@ -103,6 +111,10 @@ class TruSearchComponentConfigBase {
|
|
|
103
111
|
constructor() { }
|
|
104
112
|
}
|
|
105
113
|
|
|
114
|
+
class TruSearchConfigBase {
|
|
115
|
+
constructor() { }
|
|
116
|
+
}
|
|
117
|
+
|
|
106
118
|
class TruTableConfigBase {
|
|
107
119
|
constructor() {
|
|
108
120
|
this.Label = undefined;
|
|
@@ -115,6 +127,296 @@ class TruTableConfigBase {
|
|
|
115
127
|
}
|
|
116
128
|
}
|
|
117
129
|
|
|
130
|
+
class TruDetailViewBase {
|
|
131
|
+
constructor() { }
|
|
132
|
+
}
|
|
133
|
+
TruDetailViewBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruDetailViewBase, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
134
|
+
TruDetailViewBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: TruDetailViewBase, selector: "tru-detail-view-base", ngImport: i0, template: "", styles: ["::ng-deep .detail-container .mat-form-field{margin-left:10px;width:calc(100% - 20px)}::ng-deep .detail-container .mat-tab-group{margin-left:10px;margin-right:10px}\n"] });
|
|
135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruDetailViewBase, decorators: [{
|
|
136
|
+
type: Component,
|
|
137
|
+
args: [{ selector: 'tru-detail-view-base', template: "", styles: ["::ng-deep .detail-container .mat-form-field{margin-left:10px;width:calc(100% - 20px)}::ng-deep .detail-container .mat-tab-group{margin-left:10px;margin-right:10px}\n"] }]
|
|
138
|
+
}], ctorParameters: function () { return []; } });
|
|
139
|
+
|
|
140
|
+
class DetailViewModule {
|
|
141
|
+
}
|
|
142
|
+
DetailViewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: DetailViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
143
|
+
DetailViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: DetailViewModule, declarations: [TruDetailViewBase], imports: [CommonModule, FormsModule], exports: [TruDetailViewBase] });
|
|
144
|
+
DetailViewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: DetailViewModule, imports: [CommonModule, FormsModule] });
|
|
145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: DetailViewModule, decorators: [{
|
|
146
|
+
type: NgModule,
|
|
147
|
+
args: [{
|
|
148
|
+
declarations: [TruDetailViewBase],
|
|
149
|
+
imports: [CommonModule, FormsModule],
|
|
150
|
+
exports: [TruDetailViewBase]
|
|
151
|
+
}]
|
|
152
|
+
}] });
|
|
153
|
+
|
|
154
|
+
class TruWindowAddViewEventArgs {
|
|
155
|
+
constructor() {
|
|
156
|
+
this.active = null;
|
|
157
|
+
this.entities = null;
|
|
158
|
+
this.entityIndex = 0;
|
|
159
|
+
this.isDirty = false;
|
|
160
|
+
this.isEditing = false;
|
|
161
|
+
this.isInvalid = false;
|
|
162
|
+
this.componentName = '';
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
TruWindowAddViewEventArgs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowAddViewEventArgs, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
166
|
+
TruWindowAddViewEventArgs.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowAddViewEventArgs, providedIn: 'root' });
|
|
167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowAddViewEventArgs, decorators: [{
|
|
168
|
+
type: Injectable,
|
|
169
|
+
args: [{
|
|
170
|
+
providedIn: 'root'
|
|
171
|
+
}]
|
|
172
|
+
}] });
|
|
173
|
+
|
|
174
|
+
class TruWindowEventArgs {
|
|
175
|
+
constructor() {
|
|
176
|
+
this.title = '';
|
|
177
|
+
this.tableName = '';
|
|
178
|
+
this.tablePluralName = '';
|
|
179
|
+
this.tablePluralLabel = '';
|
|
180
|
+
this.context = {};
|
|
181
|
+
this.contentBottom = '23px';
|
|
182
|
+
this.statusbarDirective = 'tru-statusbar';
|
|
183
|
+
this.height = '450px';
|
|
184
|
+
this.width = '900px';
|
|
185
|
+
this.views = [{}];
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
TruWindowEventArgs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventArgs, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
189
|
+
TruWindowEventArgs.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventArgs, providedIn: 'root' });
|
|
190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventArgs, decorators: [{
|
|
191
|
+
type: Injectable,
|
|
192
|
+
args: [{
|
|
193
|
+
providedIn: 'root'
|
|
194
|
+
}]
|
|
195
|
+
}] });
|
|
196
|
+
|
|
197
|
+
class TruWindowEventHandler {
|
|
198
|
+
constructor() {
|
|
199
|
+
this.open$ = new Subject();
|
|
200
|
+
this.addView$ = new Subject();
|
|
201
|
+
this.removeForwadViews$ = new Subject();
|
|
202
|
+
}
|
|
203
|
+
onOpen() {
|
|
204
|
+
return this.open$;
|
|
205
|
+
}
|
|
206
|
+
open(windowEvent) {
|
|
207
|
+
this.open$.next(windowEvent);
|
|
208
|
+
}
|
|
209
|
+
onAddView() {
|
|
210
|
+
return this.addView$;
|
|
211
|
+
}
|
|
212
|
+
addView(windowAddViewEvent) {
|
|
213
|
+
this.addView$.next(windowAddViewEvent);
|
|
214
|
+
}
|
|
215
|
+
onRemoveForwardViews() {
|
|
216
|
+
return this.removeForwadViews$;
|
|
217
|
+
}
|
|
218
|
+
removeForwardViews() {
|
|
219
|
+
this.removeForwadViews$.next(null);
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
TruWindowEventHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventHandler, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
223
|
+
TruWindowEventHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventHandler, providedIn: 'root' });
|
|
224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventHandler, decorators: [{
|
|
225
|
+
type: Injectable,
|
|
226
|
+
args: [{
|
|
227
|
+
providedIn: 'root'
|
|
228
|
+
}]
|
|
229
|
+
}] });
|
|
230
|
+
|
|
231
|
+
class TruDesktopManager {
|
|
232
|
+
constructor(truWindowEventHandler) {
|
|
233
|
+
this.truWindowEventHandler = truWindowEventHandler;
|
|
234
|
+
this.getWindowEvent = (tableName, tablePluralName, tablePluralLabel, componentName, data) => {
|
|
235
|
+
var windowEvent = new TruWindowEventArgs();
|
|
236
|
+
windowEvent.tableName = tableName;
|
|
237
|
+
windowEvent.tablePluralName = tablePluralName;
|
|
238
|
+
windowEvent.tablePluralLabel = tablePluralLabel;
|
|
239
|
+
windowEvent.views = [
|
|
240
|
+
{
|
|
241
|
+
active: true,
|
|
242
|
+
entities: undefined,
|
|
243
|
+
entityIndex: 0,
|
|
244
|
+
isDirty: false,
|
|
245
|
+
isEditing: false,
|
|
246
|
+
isInvalid: false,
|
|
247
|
+
data: data,
|
|
248
|
+
componentName: componentName
|
|
249
|
+
}
|
|
250
|
+
];
|
|
251
|
+
return windowEvent;
|
|
252
|
+
};
|
|
253
|
+
/**
|
|
254
|
+
* Opens a window for a directive.
|
|
255
|
+
* @param {string} directiveName - name of the view directive.
|
|
256
|
+
* @param {object} data - values to pass to the view.
|
|
257
|
+
* @param {optional bool} showIfExists - if true and a view already exists for the
|
|
258
|
+
* directive, then shows its window instead of creating a new one.
|
|
259
|
+
*/
|
|
260
|
+
this.addWindow = (tableName, tablePluralName, tablePluralLabel, componentName, data = null, showNavigation = true, showIfExists) => {
|
|
261
|
+
this.truWindowEventHandler.open(this.getWindowEvent(tableName, tablePluralName, tablePluralLabel, componentName, data));
|
|
262
|
+
};
|
|
263
|
+
this.windowTitlesByBaseText = {};
|
|
264
|
+
/**
|
|
265
|
+
* Returns a unique string for the base name of a window. At first, returns the input.
|
|
266
|
+
* For second call with same base name, returns the name plus ' - 2' and so on. When
|
|
267
|
+
* all of the titles for the base name are released, then the next title will have no
|
|
268
|
+
* suffix.
|
|
269
|
+
* @param {string} text - base name of a window.
|
|
270
|
+
* @returns {object} - text: the unique text and release(): releases the name for
|
|
271
|
+
* future windows.
|
|
272
|
+
*/
|
|
273
|
+
this.getUniqueTitle = (text) => {
|
|
274
|
+
var baseText = text;
|
|
275
|
+
var titles = this.windowTitlesByBaseText[baseText];
|
|
276
|
+
if (!titles) {
|
|
277
|
+
this.windowTitlesByBaseText[baseText] = titles = {
|
|
278
|
+
dispensedCount: 1,
|
|
279
|
+
activeCount: 1
|
|
280
|
+
};
|
|
281
|
+
}
|
|
282
|
+
else {
|
|
283
|
+
++titles.activeCount;
|
|
284
|
+
text += ' - ' + (++titles.dispensedCount);
|
|
285
|
+
}
|
|
286
|
+
return {
|
|
287
|
+
text: text,
|
|
288
|
+
release: () => {
|
|
289
|
+
if (titles.activeCount === 1)
|
|
290
|
+
delete this.windowTitlesByBaseText[baseText];
|
|
291
|
+
else {
|
|
292
|
+
--titles.activeCount;
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
TruDesktopManager.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruDesktopManager, deps: [{ token: TruWindowEventHandler }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
300
|
+
TruDesktopManager.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruDesktopManager, providedIn: 'root' });
|
|
301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruDesktopManager, decorators: [{
|
|
302
|
+
type: Injectable,
|
|
303
|
+
args: [{
|
|
304
|
+
providedIn: 'root',
|
|
305
|
+
}]
|
|
306
|
+
}], ctorParameters: function () { return [{ type: TruWindowEventHandler }]; } });
|
|
307
|
+
|
|
308
|
+
class TruSearchViewBase {
|
|
309
|
+
constructor(desktopManager, truWindowEventHandler) {
|
|
310
|
+
this.desktopManager = desktopManager;
|
|
311
|
+
this.truWindowEventHandler = truWindowEventHandler;
|
|
312
|
+
this.tableName = '';
|
|
313
|
+
this.tablePluralName = '';
|
|
314
|
+
this.tablePluralLabel = '';
|
|
315
|
+
this.pkeyName = '';
|
|
316
|
+
this.windowTitle = {};
|
|
317
|
+
this.unsubscribes = [];
|
|
318
|
+
this.expands = [];
|
|
319
|
+
this.isSearching = false;
|
|
320
|
+
this.entities = [];
|
|
321
|
+
this.hasDetailView = true;
|
|
322
|
+
this.searchPanelConfig = {
|
|
323
|
+
side: 'right',
|
|
324
|
+
active: true,
|
|
325
|
+
open: true,
|
|
326
|
+
modKeyLabel: '',
|
|
327
|
+
size: 500,
|
|
328
|
+
pinned: false
|
|
329
|
+
};
|
|
330
|
+
this.setWindowTitle = () => {
|
|
331
|
+
if (this.view.active)
|
|
332
|
+
this.windowConfig.title = this.windowTitle.text;
|
|
333
|
+
};
|
|
334
|
+
this.onPkeyCellDoubleClicked = (gridConfig) => {
|
|
335
|
+
if (this.hasDetailView) {
|
|
336
|
+
var truWindowAddViewEventArgs = new TruWindowAddViewEventArgs();
|
|
337
|
+
truWindowAddViewEventArgs.active = true;
|
|
338
|
+
truWindowAddViewEventArgs.entities = gridConfig.api.getRenderedNodes().map((rowNode) => rowNode.data.$entity);
|
|
339
|
+
truWindowAddViewEventArgs.entityIndex = gridConfig.rowIndex;
|
|
340
|
+
truWindowAddViewEventArgs.componentName = this.tableName + 'DetailView';
|
|
341
|
+
this.truWindowEventHandler.addView(truWindowAddViewEventArgs);
|
|
342
|
+
}
|
|
343
|
+
else {
|
|
344
|
+
alert(this.tablePluralLabel + ' does not have a detail view.');
|
|
345
|
+
}
|
|
346
|
+
};
|
|
347
|
+
}
|
|
348
|
+
ngOnInit() {
|
|
349
|
+
this.tableName = this.view.window.tableName;
|
|
350
|
+
this.tablePluralName = this.view.window.tablePluralName;
|
|
351
|
+
this.tablePluralLabel = this.view.window.tablePluralLabel;
|
|
352
|
+
this.pkeyName = this.tableName + 'Ref';
|
|
353
|
+
this.windowTitle = this.desktopManager.getUniqueTitle(this.tablePluralLabel);
|
|
354
|
+
this.windowConfig = this.view.window;
|
|
355
|
+
this.contextFilters = this.view.window.globals;
|
|
356
|
+
this.setWindowTitle();
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
TruSearchViewBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewBase, deps: [{ token: TruDesktopManager }, { token: TruWindowEventHandler }], target: i0.ɵɵFactoryTarget.Component });
|
|
360
|
+
TruSearchViewBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: TruSearchViewBase, selector: "tru-search-view-base", inputs: { view: "view" }, ngImport: i0, template: "", styles: [""] });
|
|
361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewBase, decorators: [{
|
|
362
|
+
type: Component,
|
|
363
|
+
args: [{ selector: 'tru-search-view-base', template: "" }]
|
|
364
|
+
}], ctorParameters: function () { return [{ type: TruDesktopManager }, { type: TruWindowEventHandler }]; }, propDecorators: { view: [{
|
|
365
|
+
type: Input
|
|
366
|
+
}] } });
|
|
367
|
+
|
|
368
|
+
class TruSearchViewBaseModule {
|
|
369
|
+
}
|
|
370
|
+
TruSearchViewBaseModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewBaseModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
371
|
+
TruSearchViewBaseModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewBaseModule, declarations: [TruSearchViewBase], imports: [CommonModule, FormsModule], exports: [TruSearchViewBase] });
|
|
372
|
+
TruSearchViewBaseModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewBaseModule, imports: [CommonModule, FormsModule] });
|
|
373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewBaseModule, decorators: [{
|
|
374
|
+
type: NgModule,
|
|
375
|
+
args: [{
|
|
376
|
+
declarations: [TruSearchViewBase],
|
|
377
|
+
imports: [CommonModule, FormsModule],
|
|
378
|
+
exports: [TruSearchViewBase]
|
|
379
|
+
}]
|
|
380
|
+
}] });
|
|
381
|
+
|
|
382
|
+
class TruSearchViewEventHandler {
|
|
383
|
+
constructor() {
|
|
384
|
+
this.search$ = new EventEmitter();
|
|
385
|
+
this.filter$ = new EventEmitter();
|
|
386
|
+
this.clear$ = new BehaviorSubject(null);
|
|
387
|
+
this.default$ = new BehaviorSubject(null);
|
|
388
|
+
}
|
|
389
|
+
onSearch() {
|
|
390
|
+
return this.search$;
|
|
391
|
+
}
|
|
392
|
+
onFilter() {
|
|
393
|
+
return this.filter$;
|
|
394
|
+
}
|
|
395
|
+
onClearValues() {
|
|
396
|
+
return this.clear$;
|
|
397
|
+
}
|
|
398
|
+
onSetDefaults() {
|
|
399
|
+
return this.default$;
|
|
400
|
+
}
|
|
401
|
+
search(entityQuery) {
|
|
402
|
+
this.search$.emit(entityQuery);
|
|
403
|
+
}
|
|
404
|
+
filter(entityQuery) {
|
|
405
|
+
this.filter$.emit(entityQuery);
|
|
406
|
+
}
|
|
407
|
+
clearValues() {
|
|
408
|
+
this.clear$.next(null);
|
|
409
|
+
}
|
|
410
|
+
setDefaults() {
|
|
411
|
+
this.default$.next(null);
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
TruSearchViewEventHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewEventHandler, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
415
|
+
TruSearchViewEventHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewEventHandler });
|
|
416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewEventHandler, decorators: [{
|
|
417
|
+
type: Injectable
|
|
418
|
+
}] });
|
|
419
|
+
|
|
118
420
|
class TruFormulaEval {
|
|
119
421
|
static isString(s) {
|
|
120
422
|
return typeof s === 'string';
|
|
@@ -1188,23 +1490,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
1188
1490
|
type: Injectable
|
|
1189
1491
|
}], ctorParameters: function () { return [{ type: TruBreezeContextFactory }, { type: TruAppEnvironment }, { type: TruEntityAccessor }, { type: TruUiNotification }]; } });
|
|
1190
1492
|
|
|
1191
|
-
class TruSearchViewEventHandler {
|
|
1192
|
-
constructor() {
|
|
1193
|
-
this.search$ = new BehaviorSubject(null);
|
|
1194
|
-
}
|
|
1195
|
-
search(query) {
|
|
1196
|
-
this.search$.next(query);
|
|
1197
|
-
}
|
|
1198
|
-
onSearch() {
|
|
1199
|
-
return this.search$.asObservable();
|
|
1200
|
-
}
|
|
1201
|
-
}
|
|
1202
|
-
TruSearchViewEventHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewEventHandler, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1203
|
-
TruSearchViewEventHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewEventHandler });
|
|
1204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchViewEventHandler, decorators: [{
|
|
1205
|
-
type: Injectable
|
|
1206
|
-
}] });
|
|
1207
|
-
|
|
1208
1493
|
class TruToolbar {
|
|
1209
1494
|
constructor() {
|
|
1210
1495
|
this.config = null;
|
|
@@ -2084,40 +2369,6 @@ class ViewConfig {
|
|
|
2084
2369
|
}
|
|
2085
2370
|
;
|
|
2086
2371
|
|
|
2087
|
-
class TruWindowEventHandler {
|
|
2088
|
-
constructor() {
|
|
2089
|
-
this.open$ = new Subject();
|
|
2090
|
-
this.addView$ = new Subject();
|
|
2091
|
-
this.removeForwadViews$ = new Subject();
|
|
2092
|
-
}
|
|
2093
|
-
onOpen() {
|
|
2094
|
-
return this.open$;
|
|
2095
|
-
}
|
|
2096
|
-
open(windowEvent) {
|
|
2097
|
-
this.open$.next(windowEvent);
|
|
2098
|
-
}
|
|
2099
|
-
onAddView() {
|
|
2100
|
-
return this.addView$;
|
|
2101
|
-
}
|
|
2102
|
-
addView(windowAddViewEvent) {
|
|
2103
|
-
this.addView$.next(windowAddViewEvent);
|
|
2104
|
-
}
|
|
2105
|
-
onRemoveForwardViews() {
|
|
2106
|
-
return this.removeForwadViews$;
|
|
2107
|
-
}
|
|
2108
|
-
removeForwardViews() {
|
|
2109
|
-
this.removeForwadViews$.next(null);
|
|
2110
|
-
}
|
|
2111
|
-
}
|
|
2112
|
-
TruWindowEventHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventHandler, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2113
|
-
TruWindowEventHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventHandler, providedIn: 'root' });
|
|
2114
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventHandler, decorators: [{
|
|
2115
|
-
type: Injectable,
|
|
2116
|
-
args: [{
|
|
2117
|
-
providedIn: 'root'
|
|
2118
|
-
}]
|
|
2119
|
-
}] });
|
|
2120
|
-
|
|
2121
2372
|
class TruDesktopMenubar {
|
|
2122
2373
|
constructor() {
|
|
2123
2374
|
this.options = null;
|
|
@@ -3783,49 +4034,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
3783
4034
|
type: Injectable
|
|
3784
4035
|
}] });
|
|
3785
4036
|
|
|
3786
|
-
class TruWindowAddViewEventArgs {
|
|
3787
|
-
constructor() {
|
|
3788
|
-
this.active = null;
|
|
3789
|
-
this.entities = null;
|
|
3790
|
-
this.entityIndex = 0;
|
|
3791
|
-
this.isDirty = false;
|
|
3792
|
-
this.isEditing = false;
|
|
3793
|
-
this.isInvalid = false;
|
|
3794
|
-
this.componentName = '';
|
|
3795
|
-
}
|
|
3796
|
-
}
|
|
3797
|
-
TruWindowAddViewEventArgs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowAddViewEventArgs, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3798
|
-
TruWindowAddViewEventArgs.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowAddViewEventArgs, providedIn: 'root' });
|
|
3799
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowAddViewEventArgs, decorators: [{
|
|
3800
|
-
type: Injectable,
|
|
3801
|
-
args: [{
|
|
3802
|
-
providedIn: 'root'
|
|
3803
|
-
}]
|
|
3804
|
-
}] });
|
|
3805
|
-
|
|
3806
|
-
class TruWindowEventArgs {
|
|
3807
|
-
constructor() {
|
|
3808
|
-
this.title = '';
|
|
3809
|
-
this.tableName = '';
|
|
3810
|
-
this.tablePluralName = '';
|
|
3811
|
-
this.tablePluralLabel = '';
|
|
3812
|
-
this.context = {};
|
|
3813
|
-
this.contentBottom = '23px';
|
|
3814
|
-
this.statusbarDirective = 'tru-statusbar';
|
|
3815
|
-
this.height = '450px';
|
|
3816
|
-
this.width = '900px';
|
|
3817
|
-
this.views = [{}];
|
|
3818
|
-
}
|
|
3819
|
-
}
|
|
3820
|
-
TruWindowEventArgs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventArgs, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3821
|
-
TruWindowEventArgs.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventArgs, providedIn: 'root' });
|
|
3822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruWindowEventArgs, decorators: [{
|
|
3823
|
-
type: Injectable,
|
|
3824
|
-
args: [{
|
|
3825
|
-
providedIn: 'root'
|
|
3826
|
-
}]
|
|
3827
|
-
}] });
|
|
3828
|
-
|
|
3829
4037
|
class TruExportDialogModule {
|
|
3830
4038
|
}
|
|
3831
4039
|
TruExportDialogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruExportDialogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -4114,44 +4322,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
4114
4322
|
}]
|
|
4115
4323
|
}] });
|
|
4116
4324
|
|
|
4117
|
-
class TruSearchGroupEventHandler {
|
|
4118
|
-
constructor() {
|
|
4119
|
-
this.search$ = new EventEmitter();
|
|
4120
|
-
this.filter$ = new EventEmitter();
|
|
4121
|
-
this.clear$ = new BehaviorSubject(null);
|
|
4122
|
-
this.default$ = new BehaviorSubject(null);
|
|
4123
|
-
}
|
|
4124
|
-
onSearch() {
|
|
4125
|
-
return this.search$;
|
|
4126
|
-
}
|
|
4127
|
-
onFilter() {
|
|
4128
|
-
return this.filter$;
|
|
4129
|
-
}
|
|
4130
|
-
onClearValues() {
|
|
4131
|
-
return this.clear$;
|
|
4132
|
-
}
|
|
4133
|
-
onSetDefaults() {
|
|
4134
|
-
return this.default$;
|
|
4135
|
-
}
|
|
4136
|
-
search(entityQuery) {
|
|
4137
|
-
this.search$.emit(entityQuery);
|
|
4138
|
-
}
|
|
4139
|
-
filter(entityQuery) {
|
|
4140
|
-
this.filter$.emit(entityQuery);
|
|
4141
|
-
}
|
|
4142
|
-
clearValues() {
|
|
4143
|
-
this.clear$.next(null);
|
|
4144
|
-
}
|
|
4145
|
-
setDefaults() {
|
|
4146
|
-
this.default$.next(null);
|
|
4147
|
-
}
|
|
4148
|
-
}
|
|
4149
|
-
TruSearchGroupEventHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchGroupEventHandler, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4150
|
-
TruSearchGroupEventHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchGroupEventHandler });
|
|
4151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruSearchGroupEventHandler, decorators: [{
|
|
4152
|
-
type: Injectable
|
|
4153
|
-
}] });
|
|
4154
|
-
|
|
4155
4325
|
class TruPredicateMap {
|
|
4156
4326
|
constructor() { }
|
|
4157
4327
|
}
|
|
@@ -4514,11 +4684,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImpor
|
|
|
4514
4684
|
}]
|
|
4515
4685
|
}] });
|
|
4516
4686
|
|
|
4517
|
-
|
|
4687
|
+
/*
|
|
4688
|
+
* Public API Surface of tru-common-lib
|
|
4689
|
+
*/
|
|
4518
4690
|
|
|
4519
4691
|
/**
|
|
4520
4692
|
* Generated bundle index. Do not edit.
|
|
4521
4693
|
*/
|
|
4522
4694
|
|
|
4523
|
-
export { TruAppEnvironment, TruBreezeContext, TruBreezeContextFactory, TruBreezeMetadataProvider, TruColumn, TruColumnModule, TruCommonModule, TruComponentLookup, TruConfirmDialog, TruConfirmDialogConfig, TruConfirmDialogModule, TruDataContext, TruDataGrid, TruDataGridModule, TruDataGridTypes, TruDesktop, TruDesktopModule, TruEntityAccessor, TruEntityBase, TruExportDialog, TruExportDialogConfig, TruExportDialogModule, TruForm, TruFormModule, TruFormulaEval, TruGroupBox, TruGroupBoxModule, TruPredicate, TruPredicateMap, TruPropertyConfigBase, TruPropertyConfigCloudFile, TruPropertyConfigDecimal, TruPropertyConfigForeignKey, TruPropertyConfigInteger, TruPropertyConfigPassword, TruPropertyConfigPercentage, TruPropertyConfigScientific, TruPropertyConfigText, TruPropertyConfigTextChoices, TruPropertyConfigUsaAddress, TruPropertyConfigZipCode, TruQueryPredicateManager, TruRow, TruRowModule, TruSearchComponentBase, TruSearchComponentConfigBase,
|
|
4695
|
+
export { DetailViewModule, TruAppEnvironment, TruBreezeContext, TruBreezeContextFactory, TruBreezeMetadataProvider, TruColumn, TruColumnModule, TruCommonModule, TruComponentConfigBase, TruComponentLookup, TruConfirmDialog, TruConfirmDialogConfig, TruConfirmDialogModule, TruControlComponentConfigBase, TruDataContext, TruDataGrid, TruDataGridModule, TruDataGridTypes, TruDesktop, TruDesktopManager, TruDesktopModule, TruDetailViewBase, TruEntityAccessor, TruEntityBase, TruExportDialog, TruExportDialogConfig, TruExportDialogModule, TruForm, TruFormModule, TruFormulaEval, TruGroupBox, TruGroupBoxModule, TruPredicate, TruPredicateMap, TruPropertyConfigBase, TruPropertyConfigCloudFile, TruPropertyConfigDecimal, TruPropertyConfigForeignKey, TruPropertyConfigInteger, TruPropertyConfigPassword, TruPropertyConfigPercentage, TruPropertyConfigScientific, TruPropertyConfigText, TruPropertyConfigTextChoices, TruPropertyConfigUsaAddress, TruPropertyConfigZipCode, TruQueryPredicateManager, TruRow, TruRowModule, TruSearchComponentBase, TruSearchComponentConfigBase, TruSearchConfigBase, TruSearchIconModule, TruSearchPanelPositionManager, TruSearchPanelPositionManagerModule, TruSearchViewBase, TruSearchViewBaseModule, TruSearchViewEventHandler, TruSort, TruTableConfigBase, TruTextManager, TruToolbar, TruToolbarButton, TruToolbarButtonModule, TruToolbarContextFilter, TruToolbarContextFilterModule, TruToolbarDropdown, TruToolbarDropdownModule, TruToolbarMenu, TruToolbarMenuModule, TruToolbarModule, TruToolbarSeparator, TruToolbarSeparatorModule, TruToolbarText, TruToolbarTextModule, TruUiNotification, TruUser, TruWindowActionEventHandler, TruWindowAddViewEventArgs, TruWindowEventArgs, TruWindowEventHandler };
|
|
4524
4696
|
//# sourceMappingURL=trudb-tru-common-lib.mjs.map
|