@memberjunction/ng-user-view-properties 2.47.0 → 2.49.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.
@@ -1,12 +1,3 @@
1
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
- return new (P || (P = Promise))(function (resolve, reject) {
4
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
- step((generator = generator.apply(thisArg, _arguments || [])).next());
8
- });
9
- };
10
1
  import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';
11
2
  import { Metadata, EntityFieldTSType, LogError } from "@memberjunction/core";
12
3
  import { MJEventType, MJGlobal } from '@memberjunction/global';
@@ -351,6 +342,31 @@ function UserViewPropertiesDialogComponent_kendo_window_5_Template(rf, ctx) { if
351
342
  i0.ɵɵconditional(ctx_r1.UserCanEdit ? 23 : -1);
352
343
  } }
353
344
  export class UserViewPropertiesDialogComponent extends BaseFormComponent {
345
+ route;
346
+ elRef;
347
+ ss;
348
+ formBuilder;
349
+ router;
350
+ renderer;
351
+ cdr;
352
+ ViewID;
353
+ EntityName;
354
+ /**
355
+ * View Category ID, optional
356
+ */
357
+ CategoryID = null;
358
+ ShowPropertiesButton = true;
359
+ dialogClosed = new EventEmitter();
360
+ isDialogOpened = false;
361
+ showloader = true;
362
+ // public localViewColumns: ViewColumnInfo[] = [];
363
+ localGridState = {};
364
+ localFilterState = {};
365
+ defaultFilterState = {};
366
+ record;
367
+ ViewEntityInfo;
368
+ ViewResourceTypeID;
369
+ _userCanEdit = undefined;
354
370
  /**
355
371
  * This property determines if the current user can save the current view, or not.
356
372
  */
@@ -360,6 +376,22 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
360
376
  }
361
377
  return this._userCanEdit;
362
378
  }
379
+ keyPressListener;
380
+ usedFields = new Set(); // Track used fields
381
+ sortFields = [];
382
+ sortState = [];
383
+ sortDirections = [
384
+ { Name: 'Up', Value: 'asc' },
385
+ { Name: 'Down', Value: 'desc' }
386
+ ];
387
+ kendoWindow;
388
+ kendoTab;
389
+ nameField;
390
+ smartFilterTextArea;
391
+ dialogContainer;
392
+ outerDialogContainer;
393
+ findRecordDialog;
394
+ resourcePermissions;
363
395
  constructor(route, elRef, ss, formBuilder, router, renderer, cdr) {
364
396
  super(elRef, ss, router, route, cdr);
365
397
  this.route = route;
@@ -369,43 +401,6 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
369
401
  this.router = router;
370
402
  this.renderer = renderer;
371
403
  this.cdr = cdr;
372
- /**
373
- * View Category ID, optional
374
- */
375
- this.CategoryID = null;
376
- this.ShowPropertiesButton = true;
377
- this.dialogClosed = new EventEmitter();
378
- this.isDialogOpened = false;
379
- this.showloader = true;
380
- // public localViewColumns: ViewColumnInfo[] = [];
381
- this.localGridState = {};
382
- this.localFilterState = {};
383
- this.defaultFilterState = {};
384
- this._userCanEdit = undefined;
385
- this.usedFields = new Set(); // Track used fields
386
- this.sortFields = [];
387
- this.sortState = [];
388
- this.sortDirections = [
389
- { Name: 'Up', Value: 'asc' },
390
- { Name: 'Down', Value: 'desc' }
391
- ];
392
- this.defaultOperators = {
393
- string: ["contains", "doesnotcontain", "eq", "neq", "startswith", "endswith", "isnull", "isnotnull", "isempty", "isnotempty"],
394
- number: ["neq", "eq", "gte", "gt", "lte", "lt", "isnull", "isnotnull"],
395
- date: ["neq", "eq", "gte", "gt", "lte", "lt", "isnull", "isnotnull"],
396
- boolean: ["eq", "neq"]
397
- };
398
- this._savedFilters = null;
399
- this.toKendoFilterField = (f) => {
400
- var _a;
401
- return {
402
- field: f.Name,
403
- title: (_a = f.DisplayName) !== null && _a !== void 0 ? _a : f.Name,
404
- editor: this.getKendoEditor(f),
405
- operators: this.getKendoOperators(f)
406
- };
407
- };
408
- this._movedToBody = false;
409
404
  this.BottomMargin = 75;
410
405
  }
411
406
  onKeyPress(event) {
@@ -488,47 +483,43 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
488
483
  this.CategoryID = viewCategoryID;
489
484
  return this.CreateView(entityName);
490
485
  }
491
- Open() {
492
- return __awaiter(this, arguments, void 0, function* (ViewID = this.ViewID) {
493
- this.ViewID = ViewID;
494
- yield this.Load();
495
- this.isDialogOpened = true; // binding causes the kendo window to open from this method call
496
- this.moveDialogToBody();
497
- });
486
+ async Open(ViewID = this.ViewID) {
487
+ this.ViewID = ViewID;
488
+ await this.Load();
489
+ this.isDialogOpened = true; // binding causes the kendo window to open from this method call
490
+ this.moveDialogToBody();
498
491
  }
499
- Load() {
500
- return __awaiter(this, void 0, void 0, function* () {
501
- yield ResourcePermissionEngine.Instance.Config(); // make sure our permissions engine is loaded, this will do nothing if it's already loaded
502
- this._userCanEdit = undefined; // reset this so it recalculates on the next call to UserCanEdit
503
- const md = new Metadata();
504
- this.record = (yield md.GetEntityObject('User Views'));
505
- // load up the ResourceType ID for User Views
506
- const rt = this.sharedService.ResourceTypeByName("User Views");
507
- if (rt) {
508
- this.ViewResourceTypeID = rt.ID;
509
- }
510
- if (this.ViewID) {
511
- // load the view
512
- yield this.record.Load(this.ViewID);
492
+ async Load() {
493
+ await ResourcePermissionEngine.Instance.Config(); // make sure our permissions engine is loaded, this will do nothing if it's already loaded
494
+ this._userCanEdit = undefined; // reset this so it recalculates on the next call to UserCanEdit
495
+ const md = new Metadata();
496
+ this.record = await md.GetEntityObject('User Views');
497
+ // load up the ResourceType ID for User Views
498
+ const rt = this.sharedService.ResourceTypeByName("User Views");
499
+ if (rt) {
500
+ this.ViewResourceTypeID = rt.ID;
501
+ }
502
+ if (this.ViewID) {
503
+ // load the view
504
+ await this.record.Load(this.ViewID);
505
+ }
506
+ else if (this.EntityName) {
507
+ // We don't have a View ID, we are creating a NEW view, so do NewRecord()
508
+ this.record.NewRecord();
509
+ const e = md.Entities.find(e => e.Name == this.EntityName);
510
+ if (e) {
511
+ this.record.SetDefaultsFromEntity(e);
513
512
  }
514
- else if (this.EntityName) {
515
- // We don't have a View ID, we are creating a NEW view, so do NewRecord()
516
- this.record.NewRecord();
517
- const e = md.Entities.find(e => e.Name == this.EntityName);
518
- if (e) {
519
- this.record.SetDefaultsFromEntity(e);
520
- }
521
- else {
522
- throw new Error(`Entity ${this.EntityName} not found in metadata`);
523
- }
513
+ else {
514
+ throw new Error(`Entity ${this.EntityName} not found in metadata`);
524
515
  }
525
- // now we load up the columns
526
- this.FinishLoad(md);
527
- this.showloader = false;
528
- setTimeout(() => {
529
- this.ResizeTab();
530
- }, 200);
531
- });
516
+ }
517
+ // now we load up the columns
518
+ this.FinishLoad(md);
519
+ this.showloader = false;
520
+ setTimeout(() => {
521
+ this.ResizeTab();
522
+ }, 200);
532
523
  }
533
524
  closePropertiesDialog() {
534
525
  this.dialogClosed.emit({});
@@ -537,71 +528,67 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
537
528
  this.dialogContainer.nativeElement.removeEventListener('keypress', this.keyPressListener);
538
529
  }
539
530
  }
540
- FinishLoad(md) {
541
- return __awaiter(this, void 0, void 0, function* () {
542
- this.ViewEntityInfo = md.Entities.find(e => e.ID == this.record.EntityID);
543
- // using all these local variables because the VSCode debugger doesn't know what "this" is all of a sudden
544
- if (!this.ViewEntityInfo)
545
- throw new Error(`Entity ${this.record.EntityID} not found in metadata`);
546
- // prepare the sorting state
547
- this.sortFields = this.ViewEntityInfo.Fields;
548
- if (this.record.SortState === null || this.record.SortState === undefined || this.record.SortState.trim().length === 0)
549
- this.sortState = [];
550
- else
551
- this.sortState = JSON.parse(this.record.SortState);
552
- // now translate the sortState into the UI format by swapping out the primitve field names and sort direction with the data objects that the kendo ui will bind to
553
- this.sortState = this.sortState.map((s) => {
554
- var _a;
555
- let dir;
556
- if (typeof s.direction === 'string') {
557
- dir = s.direction;
558
- }
559
- else if (typeof s.direction === 'number' && s.direction === 1) { // some legacy views have 1 and 2 for asc and desc
560
- dir = 'asc';
561
- }
562
- else if (typeof s.direction === 'number' && s.direction === 2) {
563
- dir = 'desc';
564
- }
565
- else {
566
- dir = '';
567
- }
568
- return {
569
- field: (_a = this.ViewEntityInfo) === null || _a === void 0 ? void 0 : _a.Fields.find((f) => f.Name === s.field),
570
- direction: this.sortDirections.find((d) => d.Value.trim().toLowerCase() === dir)
571
- };
572
- });
573
- this.localGridState = JSON.parse(this.record.GridState);
574
- const temp = this.localGridState;
575
- this.localFilterState = JSON.parse(this.record.FilterState);
576
- this.defaultFilterState = this.localFilterState; // adding a duplicate filter state for populating the default filter state
577
- this.appendUnusedColumnsToColumnSettings(this.localGridState);
578
- this.localGridState.columnSettings.sort((a, b) => {
579
- if (a.hidden && !b.hidden)
580
- return 1;
581
- if (!a.hidden && b.hidden)
582
- return -1;
583
- // if we get here, they're both hidden, or both not hidden, so sort by orderIndex
584
- return a.orderIndex - b.orderIndex;
585
- });
586
- setTimeout(() => {
587
- this.keyPressListener = this.onKeyPress.bind(this);
588
- this.dialogContainer.nativeElement.addEventListener('keypress', this.onKeyPress.bind(this));
589
- this.nameField.focus();
590
- }, 200);
531
+ async FinishLoad(md) {
532
+ this.ViewEntityInfo = md.Entities.find(e => e.ID == this.record.EntityID);
533
+ // using all these local variables because the VSCode debugger doesn't know what "this" is all of a sudden
534
+ if (!this.ViewEntityInfo)
535
+ throw new Error(`Entity ${this.record.EntityID} not found in metadata`);
536
+ // prepare the sorting state
537
+ this.sortFields = this.ViewEntityInfo.Fields;
538
+ if (this.record.SortState === null || this.record.SortState === undefined || this.record.SortState.trim().length === 0)
539
+ this.sortState = [];
540
+ else
541
+ this.sortState = JSON.parse(this.record.SortState);
542
+ // now translate the sortState into the UI format by swapping out the primitve field names and sort direction with the data objects that the kendo ui will bind to
543
+ this.sortState = this.sortState.map((s) => {
544
+ let dir;
545
+ if (typeof s.direction === 'string') {
546
+ dir = s.direction;
547
+ }
548
+ else if (typeof s.direction === 'number' && s.direction === 1) { // some legacy views have 1 and 2 for asc and desc
549
+ dir = 'asc';
550
+ }
551
+ else if (typeof s.direction === 'number' && s.direction === 2) {
552
+ dir = 'desc';
553
+ }
554
+ else {
555
+ dir = '';
556
+ }
557
+ return {
558
+ field: this.ViewEntityInfo?.Fields.find((f) => f.Name === s.field),
559
+ direction: this.sortDirections.find((d) => d.Value.trim().toLowerCase() === dir)
560
+ };
561
+ });
562
+ this.localGridState = JSON.parse(this.record.GridState);
563
+ const temp = this.localGridState;
564
+ this.localFilterState = JSON.parse(this.record.FilterState);
565
+ this.defaultFilterState = this.localFilterState; // adding a duplicate filter state for populating the default filter state
566
+ this.appendUnusedColumnsToColumnSettings(this.localGridState);
567
+ this.localGridState.columnSettings.sort((a, b) => {
568
+ if (a.hidden && !b.hidden)
569
+ return 1;
570
+ if (!a.hidden && b.hidden)
571
+ return -1;
572
+ // if we get here, they're both hidden, or both not hidden, so sort by orderIndex
573
+ return a.orderIndex - b.orderIndex;
591
574
  });
575
+ setTimeout(() => {
576
+ this.keyPressListener = this.onKeyPress.bind(this);
577
+ this.dialogContainer.nativeElement.addEventListener('keypress', this.onKeyPress.bind(this));
578
+ this.nameField.focus();
579
+ }, 200);
592
580
  }
593
581
  appendUnusedColumnsToColumnSettings(gridState) {
594
- var _a;
595
582
  // we go through our EntityFields and add any that aren't already in the columnSettings
596
583
  // this is so that we can add new columns to the view that were not previously used in this view
597
- const unusedFields = (_a = this.ViewEntityInfo) === null || _a === void 0 ? void 0 : _a.Fields.filter(f => {
584
+ const unusedFields = this.ViewEntityInfo?.Fields.filter(f => {
598
585
  if (gridState.columnSettings.find((col) => col.Name.trim().toLowerCase() === f.Name.trim().toLowerCase()))
599
586
  return false; // this entity field is already in the columnSettings
600
587
  else
601
588
  return true; // this entity field is not in the columnSettings
602
589
  });
603
590
  // now we add the unused fields to the columnSettings
604
- unusedFields === null || unusedFields === void 0 ? void 0 : unusedFields.forEach((f) => {
591
+ unusedFields?.forEach((f) => {
605
592
  gridState.columnSettings.push({
606
593
  ID: f.ID,
607
594
  DisplayName: f.DisplayName,
@@ -638,86 +625,89 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
638
625
  onFilterChange(value) {
639
626
  this.localFilterState = value;
640
627
  }
641
- toggleColumn(column) {
642
- return __awaiter(this, void 0, void 0, function* () {
643
- column.hidden = !column.hidden; // do the toggle
644
- if (this.localGridState) {
645
- this.updateRecordGridState();
646
- }
647
- });
628
+ async toggleColumn(column) {
629
+ column.hidden = !column.hidden; // do the toggle
630
+ if (this.localGridState) {
631
+ this.updateRecordGridState();
632
+ }
648
633
  }
649
- saveProperties() {
650
- return __awaiter(this, void 0, void 0, function* () {
651
- const bNewRecord = !this.record.IsSaved;
652
- this.showloader = true;
653
- const lfs = JSON.stringify(this.localFilterState);
654
- // pass this along as as string, not directly bound since Kendo Filter is bound to a local object we need to translate to a string
655
- this.record.FilterState = JSON.stringify(this.localFilterState);
656
- // need to convert the UI format to the data format.
657
- const sortMap = this.sortState.map((s) => {
658
- return {
659
- field: s.field.Name,
660
- direction: s.direction.Value
661
- };
662
- });
663
- this.record.SortState = JSON.stringify(sortMap);
664
- // validate the record first
665
- const valResults = this.record.Validate();
666
- if (valResults.Success === false) {
667
- this.showloader = false;
668
- this.sharedService.CreateSimpleNotification('Validation Errors: ' + valResults.Errors.map((e) => e.Message).join('\n'), 'warning', 7500);
669
- return;
670
- }
671
- // make sure the view category is set into the record if provided
672
- this.record.CategoryID = this.CategoryID;
673
- let saveResult = yield this.record.Save();
674
- if (!saveResult) {
675
- // it failed, so don't close the dialog
676
- this.showloader = false;
677
- this.sharedService.CreateSimpleNotification('Saving the view failed, please try again and if this persists contact your administrator.', 'error', 5000);
678
- LogError(this.record.LatestResult);
679
- }
680
- else {
681
- // it saved, no save sharing
682
- if (this.resourcePermissions.ResourceRecordID !== this.record.ID) { // update the resource record id
683
- yield this.resourcePermissions.UpdateResourceRecordID(this.record.ID);
684
- }
685
- yield this.resourcePermissions.SavePermissions();
686
- }
687
- // stop showing the loader and close the dialog if we saved successfully
688
- this.isDialogOpened = false;
689
- this.showloader = false;
690
- let event = {
691
- Saved: true,
692
- ViewEntity: this.record,
693
- Cancel: false,
694
- bNewRecord: bNewRecord
634
+ async saveProperties() {
635
+ const bNewRecord = !this.record.IsSaved;
636
+ this.showloader = true;
637
+ const lfs = JSON.stringify(this.localFilterState);
638
+ // pass this along as as string, not directly bound since Kendo Filter is bound to a local object we need to translate to a string
639
+ this.record.FilterState = JSON.stringify(this.localFilterState);
640
+ // need to convert the UI format to the data format.
641
+ const sortMap = this.sortState.map((s) => {
642
+ return {
643
+ field: s.field.Name,
644
+ direction: s.direction.Value
695
645
  };
696
- this.dialogClosed.emit(event);
697
- if (bNewRecord) {
698
- //navigate to the newly created view
699
- //for reasons (currently) unkown, immediately navigating away from the page
700
- //prevents this dialog from closing or responding to any events
701
- setTimeout(() => {
702
- this.router.navigate(['resource', 'view', this.record.FirstPrimaryKey.Value]);
703
- }, 100);
704
- }
705
- else {
706
- MJGlobal.Instance.RaiseEvent({
707
- event: MJEventType.ComponentEvent,
708
- eventCode: EventCodes.ViewUpdated,
709
- args: new ResourceData({
710
- ResourceTypeID: this.sharedService.ViewResourceType.ID,
711
- ResourceRecordID: this.record.FirstPrimaryKey.Value,
712
- Configuration: {
713
- ViewEntity: this.record
714
- }
715
- }),
716
- component: this
717
- });
718
- }
719
646
  });
647
+ this.record.SortState = JSON.stringify(sortMap);
648
+ // validate the record first
649
+ const valResults = this.record.Validate();
650
+ if (valResults.Success === false) {
651
+ this.showloader = false;
652
+ this.sharedService.CreateSimpleNotification('Validation Errors: ' + valResults.Errors.map((e) => e.Message).join('\n'), 'warning', 7500);
653
+ return;
654
+ }
655
+ // make sure the view category is set into the record if provided
656
+ this.record.CategoryID = this.CategoryID;
657
+ let saveResult = await this.record.Save();
658
+ if (!saveResult) {
659
+ // it failed, so don't close the dialog
660
+ this.showloader = false;
661
+ this.sharedService.CreateSimpleNotification('Saving the view failed, please try again and if this persists contact your administrator.', 'error', 5000);
662
+ LogError(this.record.LatestResult);
663
+ }
664
+ else {
665
+ // it saved, no save sharing
666
+ if (this.resourcePermissions.ResourceRecordID !== this.record.ID) { // update the resource record id
667
+ await this.resourcePermissions.UpdateResourceRecordID(this.record.ID);
668
+ }
669
+ await this.resourcePermissions.SavePermissions();
670
+ }
671
+ // stop showing the loader and close the dialog if we saved successfully
672
+ this.isDialogOpened = false;
673
+ this.showloader = false;
674
+ let event = {
675
+ Saved: true,
676
+ ViewEntity: this.record,
677
+ Cancel: false,
678
+ bNewRecord: bNewRecord
679
+ };
680
+ this.dialogClosed.emit(event);
681
+ if (bNewRecord) {
682
+ //navigate to the newly created view
683
+ //for reasons (currently) unkown, immediately navigating away from the page
684
+ //prevents this dialog from closing or responding to any events
685
+ setTimeout(() => {
686
+ this.router.navigate(['resource', 'view', this.record.FirstPrimaryKey.Value]);
687
+ }, 100);
688
+ }
689
+ else {
690
+ MJGlobal.Instance.RaiseEvent({
691
+ event: MJEventType.ComponentEvent,
692
+ eventCode: EventCodes.ViewUpdated,
693
+ args: new ResourceData({
694
+ ResourceTypeID: this.sharedService.ViewResourceType.ID,
695
+ ResourceRecordID: this.record.FirstPrimaryKey.Value,
696
+ Configuration: {
697
+ ViewEntity: this.record
698
+ }
699
+ }),
700
+ component: this
701
+ });
702
+ }
720
703
  }
704
+ defaultOperators = {
705
+ string: ["contains", "doesnotcontain", "eq", "neq", "startswith", "endswith", "isnull", "isnotnull", "isempty", "isnotempty"],
706
+ number: ["neq", "eq", "gte", "gt", "lte", "lt", "isnull", "isnotnull"],
707
+ date: ["neq", "eq", "gte", "gt", "lte", "lt", "isnull", "isnotnull"],
708
+ boolean: ["eq", "neq"]
709
+ };
710
+ _savedFilters = null;
721
711
  setupFilters() {
722
712
  if (this._savedFilters === null) {
723
713
  const filters = this.ViewEntityInfo.Fields.map((f) => this.toKendoFilterField(f));
@@ -727,6 +717,14 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
727
717
  else
728
718
  return this._savedFilters;
729
719
  }
720
+ toKendoFilterField = (f) => {
721
+ return {
722
+ field: f.Name,
723
+ title: f.DisplayName ?? f.Name,
724
+ editor: this.getKendoEditor(f),
725
+ operators: this.getKendoOperators(f)
726
+ };
727
+ };
730
728
  getKendoEditor(field) {
731
729
  switch (field.TSType) {
732
730
  case EntityFieldTSType.Boolean:
@@ -758,8 +756,7 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
758
756
  return 0;
759
757
  }
760
758
  addSort() {
761
- var _a;
762
- this.sortState = this.sortState.concat({ field: (_a = this.ViewEntityInfo) === null || _a === void 0 ? void 0 : _a.Fields[0], direction: this.sortDirections[0] }); // add a new sort item
759
+ this.sortState = this.sortState.concat({ field: this.ViewEntityInfo?.Fields[0], direction: this.sortDirections[0] }); // add a new sort item
763
760
  }
764
761
  removeSort(item) {
765
762
  this.sortState = this.sortState.filter((i) => i !== item);
@@ -771,6 +768,7 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
771
768
  }
772
769
  sortDirectionValueChange(sortItem, newValue) {
773
770
  }
771
+ _movedToBody = false;
774
772
  moveDialogToBody() {
775
773
  if (this._movedToBody)
776
774
  return;
@@ -778,41 +776,41 @@ export class UserViewPropertiesDialogComponent extends BaseFormComponent {
778
776
  this.renderer.appendChild(document.body, dialogElement);
779
777
  this._movedToBody = true;
780
778
  }
779
+ static ɵfac = function UserViewPropertiesDialogComponent_Factory(t) { return new (t || UserViewPropertiesDialogComponent)(i0.ɵɵdirectiveInject(i1.ActivatedRoute), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i2.SharedService), i0.ɵɵdirectiveInject(i3.FormBuilder), i0.ɵɵdirectiveInject(i1.Router), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
780
+ static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UserViewPropertiesDialogComponent, selectors: [["mj-user-view-properties-dialog"]], viewQuery: function UserViewPropertiesDialogComponent_Query(rf, ctx) { if (rf & 1) {
781
+ i0.ɵɵviewQuery(WindowComponent, 5);
782
+ i0.ɵɵviewQuery(TabComponent, 5);
783
+ i0.ɵɵviewQuery(_c0, 5);
784
+ i0.ɵɵviewQuery(_c1, 5);
785
+ i0.ɵɵviewQuery(_c2, 5);
786
+ i0.ɵɵviewQuery(_c3, 5);
787
+ i0.ɵɵviewQuery(_c4, 5);
788
+ i0.ɵɵviewQuery(_c5, 5);
789
+ } if (rf & 2) {
790
+ let _t;
791
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.kendoWindow = _t.first);
792
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.kendoTab = _t.first);
793
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.nameField = _t.first);
794
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.smartFilterTextArea = _t.first);
795
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dialogContainer = _t.first);
796
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.outerDialogContainer = _t.first);
797
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.findRecordDialog = _t.first);
798
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.resourcePermissions = _t.first);
799
+ } }, inputs: { ViewID: "ViewID", EntityName: "EntityName", CategoryID: "CategoryID", ShowPropertiesButton: "ShowPropertiesButton" }, outputs: { dialogClosed: "dialogClosed" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 6, vars: 3, consts: [["outerDialogContainer", ""], ["dialogContainer", ""], ["nameField", ""], ["findRecordDialog", ""], ["smartFilterTextArea", ""], ["resourcePermissions", ""], ["kendoButton", "", "themeColor", "info", "class", "view-properties-button", 3, "click", 4, "ngIf"], ["class", "k-overlay", 4, "ngIf"], ["title", "View Properties", 3, "minHeight", "minWidth", "top", "left", "width", "height", "resizable", "close", "resizeEnd", "heightChange", "widthChange", 4, "ngIf"], ["kendoButton", "", "themeColor", "info", 1, "view-properties-button", 3, "click"], [1, "fa-solid", "fa-gear"], [1, "k-overlay"], ["title", "View Properties", 3, "close", "resizeEnd", "heightChange", "widthChange", "minHeight", "minWidth", "top", "left", "width", "height", "resizable"], ["type", "converging-spinner", 4, "ngIf"], [1, "k-d-flex", "k-flex-col", "k-justify-content-between", "k-h-full"], [3, "keepTabContent", "animate", "height"], ["title", "General", 3, "selected"], ["kendoTabContent", ""], ["title", "Fields"], ["kendoTabTitle", ""], ["title", "Sorting"], [1, "fa-solid", "fa-arrow-up-wide-short"], [4, "ngIf"], [1, "k-actions", "k-actions-end", "customBtn", "popup-actions"], ["kendoButton", "", "themeColor", "info"], ["fillMode", "outline", "themeColor", "info", "kendoButton", "", 3, "click"], ["type", "converging-spinner"], [1, "view-prop-tab-contents"], [1, "form-group"], ["text", "Name", 1, "k-form-label"], [1, "view-name", 3, "ngModelChange", "ngModel", "disabled"], [1, "form-group", "form-group-description"], ["text", "Description", 1, "k-form-label"], [1, "k-input", "k-input-solid", "view-description", 3, "ngModelChange", "ngModel", "disabled"], [1, "fa-solid", "fa-table-columns", "tab-header-icon"], ["itemClass", "item", "activeItemClass", "item active", 3, "dragEnd", "kendoSortableBinding", "animation"], ["class", "overlay", 4, "ngIf"], [1, "item-content"], [3, "change", "checkedState"], [1, "k-checkbox-label", 3, "for", "text"], [1, "fa-solid", "fa-bars-staggered"], [1, "overlay"], [1, "fa-solid", "fa-filter", "tab-header-icon"], [1, "smart-filter-container"], ["text", "Smart Filter", 1, "smart-filter-label"], [3, "ngModelChange", "ngModel", "disabled"], ["class", "smart-filter-prompt", "mjFillContainer", "", 3, "fillHeight", 4, "ngIf"], ["mjFillContainer", "", 1, "smart-filter-prompt", 3, "fillHeight"], [3, "RecordSelected", "DialogClosed"], ["kendoButton", "", 1, "smart-filter-button", 3, "click", "disabled"], [1, "fa-solid", "fa-table", "tab-icon"], [1, "fa-list", "fa-solid"], ["placeholder", "Describe how you would like the data filtered and our AI will do the rest.", "resizable", "vertical", 3, "ngModelChange", "rows", "ngModel", "disabled"], [3, "valueChange", "filters", "value", "disabled"], [1, "fa-solid", "fa-arrow-up-wide-short", "tab-header-icon"], [1, "sort-header"], ["kendoButton", "", 3, "click", "disabled"], [1, "fa-solid", "fa-plus"], [4, "ngFor", "ngForOf"], ["textField", "Name", "valueField", "Name", 1, "sort-column", 3, "valueChange", "ngModelChange", "data", "ngModel", "disabled"], ["textField", "Name", "valueField", "Value", 1, "sort-direction", 3, "valueChange", "ngModelChange", "data", "ngModel", "disabled"], [1, "fa-solid", "fa-xmark"], [1, "fa-solid", "fa-share-from-square", "tab-header-icon"], [3, "ResourceTypeID", "ResourceRecordID"], [1, "fa-solid", "fa-gear", "tab-header-icon"], ["resizable", "vertical", 1, "advanced-tab-details", 3, "ngModelChange", "readonly", "rows", "ngModel"], ["resizable", "vertical", 1, "advanced-tab-details", "smart-filter-prompt", 3, "ngModelChange", "readonly", "rows", "ngModel"], ["kendoButton", "", "themeColor", "info", 3, "click"], [1, "fa-solid", "fa-circle-check"]], template: function UserViewPropertiesDialogComponent_Template(rf, ctx) { if (rf & 1) {
800
+ i0.ɵɵelementStart(0, "div");
801
+ i0.ɵɵtemplate(1, UserViewPropertiesDialogComponent_button_1_Template, 3, 0, "button", 6);
802
+ i0.ɵɵelementStart(2, "div", null, 0);
803
+ i0.ɵɵtemplate(4, UserViewPropertiesDialogComponent_div_4_Template, 1, 0, "div", 7)(5, UserViewPropertiesDialogComponent_kendo_window_5_Template, 26, 16, "kendo-window", 8);
804
+ i0.ɵɵelementEnd()();
805
+ } if (rf & 2) {
806
+ i0.ɵɵadvance();
807
+ i0.ɵɵproperty("ngIf", ctx.ShowPropertiesButton);
808
+ i0.ɵɵadvance(3);
809
+ i0.ɵɵproperty("ngIf", ctx.isDialogOpened);
810
+ i0.ɵɵadvance();
811
+ i0.ɵɵproperty("ngIf", ctx.isDialogOpened);
812
+ } }, dependencies: [i4.NgForOf, i4.NgIf, i5.TextAreaComponent, i5.TextBoxComponent, i5.SwitchComponent, i5.CheckBoxComponent, i6.LabelComponent, i3.DefaultValueAccessor, i3.NgControlStatus, i3.NgModel, i7.ButtonComponent, i8.WindowComponent, i9.TabStripComponent, i9.TabStripTabComponent, i9.TabContentDirective, i9.TabTitleDirective, i10.SortableComponent, i10.SortableBindingDirective, i11.FilterComponent, i12.DropDownListComponent, i13.FindRecordDialogComponent, i14.ResourcePermissionsComponent], styles: [".view-properties-button[_ngcontent-%COMP%] {\n margin-left: 0px;\n }\n .view-prop-tab-contents[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n height: 100%; \n\n }\n \n .form-group[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n margin-bottom: 10px;\n }\n \n .form-group-description[_ngcontent-%COMP%] {\n flex-grow: 1;\n }\n \n .k-form-label[_ngcontent-%COMP%] {\n width: 150px; \n\n margin-right: 10px;\n }\n \n .view-description[_ngcontent-%COMP%] {\n flex-grow: 1;\n height: 100%;\n padding: 5px;\n resize: none;\n }\n \n \n \n .item-content[_ngcontent-%COMP%] {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n \n .popup-content[_ngcontent-%COMP%] {\n height: calc(100% - 46px);\n }\n \n .popup-actions[_ngcontent-%COMP%] {\n padding: 16px 0 0;\n }\n \n .view-prop-tab-contents[_ngcontent-%COMP%] {\n overflow: hidden;\n }\n \n .sort-column[_ngcontent-%COMP%] {\n width: 300px;\n }\n \n .sort-direction[_ngcontent-%COMP%] {\n width: 125px;\n }\n \n .sort-header[_ngcontent-%COMP%] > button[_ngcontent-%COMP%] {\n margin-left: 5px;\n margin-bottom: 5px;\n width: 75px;\n }\n \n .smart-filter-label[_ngcontent-%COMP%] {\n margin-right: 10px;\n }\n \n .smart-filter-prompt[_ngcontent-%COMP%] {\n margin-top: 15px;\n }\n\n .smart-filter-button[_ngcontent-%COMP%] {\n margin-right: 5px;\n margin-bottom: 5px;\n }\n\n .tab-header-icon[_ngcontent-%COMP%] {\n margin-right: 5px;\n }\n \n .advanced-tab-details[_ngcontent-%COMP%]\n {\n margin-bottom: 10px;\n }\n .customBtn button {\n flex: 1;\n border-radius: 10px;\n line-height: 34px;\n }\n .popup-content .k-tabstrip-items-wrapper {\n background: var(--white-color) !important;\n padding-left: 0 !important;\n }\n .popup-content .k-tabstrip-items-wrapper .k-tabstrip-items .k-tabstrip-item.k-active {\n border-bottom: 3px solid var(--border-blue) !important;\n }\n .popup-content .k-tabstrip-items-wrapper .k-tabstrip-items .k-tabstrip-item {\n background: var(--white-color) !important;\n border-right: 0 !important;\n }\n\n.k-checkbox[_ngcontent-%COMP%] {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.k-switch-on[_ngcontent-%COMP%] .k-switch-track[_ngcontent-%COMP%] {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.k-selected[_ngcontent-%COMP%] {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.filter-wrapper[_ngcontent-%COMP%] {\n position: relative;\n display: inline-block;\n}\n\n.overlay[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: rgba(255, 255, 255, 0.5); \n\n z-index: 1; \n\n pointer-events: all; \n\n cursor: not-allowed; \n\n}"] });
781
813
  }
782
- UserViewPropertiesDialogComponent.ɵfac = function UserViewPropertiesDialogComponent_Factory(t) { return new (t || UserViewPropertiesDialogComponent)(i0.ɵɵdirectiveInject(i1.ActivatedRoute), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i2.SharedService), i0.ɵɵdirectiveInject(i3.FormBuilder), i0.ɵɵdirectiveInject(i1.Router), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
783
- UserViewPropertiesDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UserViewPropertiesDialogComponent, selectors: [["mj-user-view-properties-dialog"]], viewQuery: function UserViewPropertiesDialogComponent_Query(rf, ctx) { if (rf & 1) {
784
- i0.ɵɵviewQuery(WindowComponent, 5);
785
- i0.ɵɵviewQuery(TabComponent, 5);
786
- i0.ɵɵviewQuery(_c0, 5);
787
- i0.ɵɵviewQuery(_c1, 5);
788
- i0.ɵɵviewQuery(_c2, 5);
789
- i0.ɵɵviewQuery(_c3, 5);
790
- i0.ɵɵviewQuery(_c4, 5);
791
- i0.ɵɵviewQuery(_c5, 5);
792
- } if (rf & 2) {
793
- let _t;
794
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.kendoWindow = _t.first);
795
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.kendoTab = _t.first);
796
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.nameField = _t.first);
797
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.smartFilterTextArea = _t.first);
798
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dialogContainer = _t.first);
799
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.outerDialogContainer = _t.first);
800
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.findRecordDialog = _t.first);
801
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.resourcePermissions = _t.first);
802
- } }, inputs: { ViewID: "ViewID", EntityName: "EntityName", CategoryID: "CategoryID", ShowPropertiesButton: "ShowPropertiesButton" }, outputs: { dialogClosed: "dialogClosed" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 6, vars: 3, consts: [["outerDialogContainer", ""], ["dialogContainer", ""], ["nameField", ""], ["findRecordDialog", ""], ["smartFilterTextArea", ""], ["resourcePermissions", ""], ["kendoButton", "", "themeColor", "info", "class", "view-properties-button", 3, "click", 4, "ngIf"], ["class", "k-overlay", 4, "ngIf"], ["title", "View Properties", 3, "minHeight", "minWidth", "top", "left", "width", "height", "resizable", "close", "resizeEnd", "heightChange", "widthChange", 4, "ngIf"], ["kendoButton", "", "themeColor", "info", 1, "view-properties-button", 3, "click"], [1, "fa-solid", "fa-gear"], [1, "k-overlay"], ["title", "View Properties", 3, "close", "resizeEnd", "heightChange", "widthChange", "minHeight", "minWidth", "top", "left", "width", "height", "resizable"], ["type", "converging-spinner", 4, "ngIf"], [1, "k-d-flex", "k-flex-col", "k-justify-content-between", "k-h-full"], [3, "keepTabContent", "animate", "height"], ["title", "General", 3, "selected"], ["kendoTabContent", ""], ["title", "Fields"], ["kendoTabTitle", ""], ["title", "Sorting"], [1, "fa-solid", "fa-arrow-up-wide-short"], [4, "ngIf"], [1, "k-actions", "k-actions-end", "customBtn", "popup-actions"], ["kendoButton", "", "themeColor", "info"], ["fillMode", "outline", "themeColor", "info", "kendoButton", "", 3, "click"], ["type", "converging-spinner"], [1, "view-prop-tab-contents"], [1, "form-group"], ["text", "Name", 1, "k-form-label"], [1, "view-name", 3, "ngModelChange", "ngModel", "disabled"], [1, "form-group", "form-group-description"], ["text", "Description", 1, "k-form-label"], [1, "k-input", "k-input-solid", "view-description", 3, "ngModelChange", "ngModel", "disabled"], [1, "fa-solid", "fa-table-columns", "tab-header-icon"], ["itemClass", "item", "activeItemClass", "item active", 3, "dragEnd", "kendoSortableBinding", "animation"], ["class", "overlay", 4, "ngIf"], [1, "item-content"], [3, "change", "checkedState"], [1, "k-checkbox-label", 3, "for", "text"], [1, "fa-solid", "fa-bars-staggered"], [1, "overlay"], [1, "fa-solid", "fa-filter", "tab-header-icon"], [1, "smart-filter-container"], ["text", "Smart Filter", 1, "smart-filter-label"], [3, "ngModelChange", "ngModel", "disabled"], ["class", "smart-filter-prompt", "mjFillContainer", "", 3, "fillHeight", 4, "ngIf"], ["mjFillContainer", "", 1, "smart-filter-prompt", 3, "fillHeight"], [3, "RecordSelected", "DialogClosed"], ["kendoButton", "", 1, "smart-filter-button", 3, "click", "disabled"], [1, "fa-solid", "fa-table", "tab-icon"], [1, "fa-list", "fa-solid"], ["placeholder", "Describe how you would like the data filtered and our AI will do the rest.", "resizable", "vertical", 3, "ngModelChange", "rows", "ngModel", "disabled"], [3, "valueChange", "filters", "value", "disabled"], [1, "fa-solid", "fa-arrow-up-wide-short", "tab-header-icon"], [1, "sort-header"], ["kendoButton", "", 3, "click", "disabled"], [1, "fa-solid", "fa-plus"], [4, "ngFor", "ngForOf"], ["textField", "Name", "valueField", "Name", 1, "sort-column", 3, "valueChange", "ngModelChange", "data", "ngModel", "disabled"], ["textField", "Name", "valueField", "Value", 1, "sort-direction", 3, "valueChange", "ngModelChange", "data", "ngModel", "disabled"], [1, "fa-solid", "fa-xmark"], [1, "fa-solid", "fa-share-from-square", "tab-header-icon"], [3, "ResourceTypeID", "ResourceRecordID"], [1, "fa-solid", "fa-gear", "tab-header-icon"], ["resizable", "vertical", 1, "advanced-tab-details", 3, "ngModelChange", "readonly", "rows", "ngModel"], ["resizable", "vertical", 1, "advanced-tab-details", "smart-filter-prompt", 3, "ngModelChange", "readonly", "rows", "ngModel"], ["kendoButton", "", "themeColor", "info", 3, "click"], [1, "fa-solid", "fa-circle-check"]], template: function UserViewPropertiesDialogComponent_Template(rf, ctx) { if (rf & 1) {
803
- i0.ɵɵelementStart(0, "div");
804
- i0.ɵɵtemplate(1, UserViewPropertiesDialogComponent_button_1_Template, 3, 0, "button", 6);
805
- i0.ɵɵelementStart(2, "div", null, 0);
806
- i0.ɵɵtemplate(4, UserViewPropertiesDialogComponent_div_4_Template, 1, 0, "div", 7)(5, UserViewPropertiesDialogComponent_kendo_window_5_Template, 26, 16, "kendo-window", 8);
807
- i0.ɵɵelementEnd()();
808
- } if (rf & 2) {
809
- i0.ɵɵadvance();
810
- i0.ɵɵproperty("ngIf", ctx.ShowPropertiesButton);
811
- i0.ɵɵadvance(3);
812
- i0.ɵɵproperty("ngIf", ctx.isDialogOpened);
813
- i0.ɵɵadvance();
814
- i0.ɵɵproperty("ngIf", ctx.isDialogOpened);
815
- } }, dependencies: [i4.NgForOf, i4.NgIf, i5.TextAreaComponent, i5.TextBoxComponent, i5.SwitchComponent, i5.CheckBoxComponent, i6.LabelComponent, i3.DefaultValueAccessor, i3.NgControlStatus, i3.NgModel, i7.ButtonComponent, i8.WindowComponent, i9.TabStripComponent, i9.TabStripTabComponent, i9.TabContentDirective, i9.TabTitleDirective, i10.SortableComponent, i10.SortableBindingDirective, i11.FilterComponent, i12.DropDownListComponent, i13.FindRecordDialogComponent, i14.ResourcePermissionsComponent], styles: [".view-properties-button[_ngcontent-%COMP%] {\n margin-left: 0px;\n }\n .view-prop-tab-contents[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n height: 100%; \n\n }\n \n .form-group[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n margin-bottom: 10px;\n }\n \n .form-group-description[_ngcontent-%COMP%] {\n flex-grow: 1;\n }\n \n .k-form-label[_ngcontent-%COMP%] {\n width: 150px; \n\n margin-right: 10px;\n }\n \n .view-description[_ngcontent-%COMP%] {\n flex-grow: 1;\n height: 100%;\n padding: 5px;\n resize: none;\n }\n \n \n \n .item-content[_ngcontent-%COMP%] {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n \n .popup-content[_ngcontent-%COMP%] {\n height: calc(100% - 46px);\n }\n \n .popup-actions[_ngcontent-%COMP%] {\n padding: 16px 0 0;\n }\n \n .view-prop-tab-contents[_ngcontent-%COMP%] {\n overflow: hidden;\n }\n \n .sort-column[_ngcontent-%COMP%] {\n width: 300px;\n }\n \n .sort-direction[_ngcontent-%COMP%] {\n width: 125px;\n }\n \n .sort-header[_ngcontent-%COMP%] > button[_ngcontent-%COMP%] {\n margin-left: 5px;\n margin-bottom: 5px;\n width: 75px;\n }\n \n .smart-filter-label[_ngcontent-%COMP%] {\n margin-right: 10px;\n }\n \n .smart-filter-prompt[_ngcontent-%COMP%] {\n margin-top: 15px;\n }\n\n .smart-filter-button[_ngcontent-%COMP%] {\n margin-right: 5px;\n margin-bottom: 5px;\n }\n\n .tab-header-icon[_ngcontent-%COMP%] {\n margin-right: 5px;\n }\n \n .advanced-tab-details[_ngcontent-%COMP%]\n {\n margin-bottom: 10px;\n }\n .customBtn button {\n flex: 1;\n border-radius: 10px;\n line-height: 34px;\n }\n .popup-content .k-tabstrip-items-wrapper {\n background: var(--white-color) !important;\n padding-left: 0 !important;\n }\n .popup-content .k-tabstrip-items-wrapper .k-tabstrip-items .k-tabstrip-item.k-active {\n border-bottom: 3px solid var(--border-blue) !important;\n }\n .popup-content .k-tabstrip-items-wrapper .k-tabstrip-items .k-tabstrip-item {\n background: var(--white-color) !important;\n border-right: 0 !important;\n }\n\n.k-checkbox[_ngcontent-%COMP%] {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.k-switch-on[_ngcontent-%COMP%] .k-switch-track[_ngcontent-%COMP%] {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.k-selected[_ngcontent-%COMP%] {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.filter-wrapper[_ngcontent-%COMP%] {\n position: relative;\n display: inline-block;\n}\n\n.overlay[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: rgba(255, 255, 255, 0.5); \n\n z-index: 1; \n\n pointer-events: all; \n\n cursor: not-allowed; \n\n}"] });
816
814
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UserViewPropertiesDialogComponent, [{
817
815
  type: Component,
818
816
  args: [{ selector: 'mj-user-view-properties-dialog', template: "<div>\n <button *ngIf=\"ShowPropertiesButton\"\n kendoButton\n themeColor=\"info\"\n (click)=\"this.Open()\"\n class=\"view-properties-button\"\n >\n <span class=\"fa-solid fa-gear\"></span>\n Properties\n </button>\n <div #outerDialogContainer>\n <div class=\"k-overlay\" *ngIf=\"isDialogOpened\"></div>\n <kendo-window\n [minHeight]=\"300\"\n [minWidth]=\"800\"\n [top]=\"100\"\n [left]=\"100\"\n [width]=\"668\"\n [height]=\"525\"\n [resizable]=\"true\"\n title=\"View Properties\"\n *ngIf=\"isDialogOpened\"\n (close)=\"closePropertiesDialog()\"\n (resizeEnd)=\"this.ResizeTab()\"\n (heightChange)=\"this.ResizeTab()\"\n (widthChange)=\"this.ResizeTab()\"\n >\n <kendo-loader *ngIf=\"showloader\" type=\"converging-spinner\" ></kendo-loader>\n <div class=\"k-d-flex k-flex-col k-justify-content-between k-h-full\" #dialogContainer>\n <div [class]=\"showloader ? 'disabled-div' : ''\">\n <kendo-tabstrip [keepTabContent]=\"true\" [animate] = \"false\" [height]=\"TabHeight\" >\n <kendo-tabstrip-tab title=\"General\" [selected]=\"true\">\n <ng-template kendoTabContent>\n <div class=\"view-prop-tab-contents\">\n <div class=\"form-group\">\n <kendo-label class=\"k-form-label\" text=\"Name\"></kendo-label>\n <kendo-textbox #nameField class=\"view-name\" [(ngModel)]=\"record.Name\" [disabled]=\"!UserCanEdit\"></kendo-textbox>\n </div>\n <div class=\"form-group form-group-description\">\n <kendo-label class=\"k-form-label\" text=\"Description\"></kendo-label>\n <textarea class=\"k-input k-input-solid view-description\" [(ngModel)]=\"record.Description\" [disabled]=\"!UserCanEdit\"></textarea>\n </div>\n </div>\n </ng-template>\n </kendo-tabstrip-tab>\n <kendo-tabstrip-tab title=\"Fields\">\n <ng-template kendoTabTitle>\n <span class=\"fa-solid fa-table-columns tab-header-icon\"></span>\n <span>Fields</span>\n </ng-template>\n <ng-template kendoTabContent>\n <kendo-sortable\n [kendoSortableBinding]=\"this.localGridState.columnSettings\"\n [animation]=\"true\"\n itemClass=\"item\"\n activeItemClass=\"item active\"\n (dragEnd)=\"onDragEnd($event)\"\n >\n <ng-template let-col=\"item\">\n <div class=\"item-content\">\n <div>\n <kendo-checkbox\n [checkedState]=\"!col.hidden\"\n (change)=\"toggleColumn(col)\"\n ></kendo-checkbox>\n <kendo-label\n [for]=\"'column_'+col.ID\"\n [text]=\"col.DisplayName ? col.DisplayName : col.Name\"\n class=\"k-checkbox-label\"\n ></kendo-label>\n </div>\n <span class=\"fa-solid fa-bars-staggered\"></span>\n </div>\n </ng-template>\n </kendo-sortable>\n\n <!-- The overlay div, only visible when UserCanEdit is false -->\n <div *ngIf=\"!UserCanEdit\" class=\"overlay\"></div> \n </ng-template>\n </kendo-tabstrip-tab>\n <kendo-tabstrip-tab>\n <ng-template kendoTabTitle>\n <span class=\"fa-solid fa-filter tab-header-icon\"></span>\n <span>Filters</span>\n </ng-template>\n <ng-template kendoTabContent>\n <div class=\"smart-filter-container\">\n <kendo-label text=\"Smart Filter\" class=\"smart-filter-label\"></kendo-label>\n <kendo-switch [(ngModel)]=\"record.SmartFilterEnabled\" [disabled]=\"!UserCanEdit\"></kendo-switch>\n </div>\n <div *ngIf=\"record.SmartFilterEnabled\" class=\"smart-filter-prompt\" mjFillContainer [fillHeight]=\"true\">\n <mj-find-record-dialog #findRecordDialog\n (RecordSelected)=\"onFindRecordSelected($event)\"\n (DialogClosed)=\"onFindRecordDialogClosed($event)\"\n >\n </mj-find-record-dialog>\n <button kendoButton (click)=\"smartFilterPrompt_insertViewReference()\" class=\"smart-filter-button\" [disabled]=\"!UserCanEdit\">\n <span class=\"fa-solid fa-table tab-icon\"></span>\n Reference a View\n </button>\n <button kendoButton (click)=\"smartFilterPrompt_insertListReference()\" class=\"smart-filter-button\" [disabled]=\"!UserCanEdit\">\n <span class=\"fa-list fa-solid\"></span>\n Reference a List\n </button>\n <kendo-textarea\n #smartFilterTextArea\n placeholder=\"Describe how you would like the data filtered and our AI will do the rest.\"\n [rows]=\"12\"\n [(ngModel)]=\"record.SmartFilterPrompt\"\n resizable=\"vertical\"\n [disabled]=\"!UserCanEdit\"\n ></kendo-textarea>\n </div>\n <div *ngIf=\"!record.SmartFilterEnabled\">\n <kendo-filter\n [filters]=\"setupFilters()\"\n [value]=\"defaultFilterState\"\n (valueChange)=\"onFilterChange($event)\"\n [disabled]=\"!UserCanEdit\"\n >\n </kendo-filter>\n <!-- The overlay div, only visible when UserCanEdit is false -->\n <div *ngIf=\"!UserCanEdit\" class=\"overlay\"></div> \n </div>\n </ng-template>\n </kendo-tabstrip-tab>\n <kendo-tabstrip-tab title=\"Sorting\">\n <ng-template kendoTabTitle>\n <span class=\"fa-solid fa-arrow-up-wide-short tab-header-icon\"></span>\n <span>Sorting</span>\n </ng-template>\n <ng-template kendoTabContent>\n <div class=\"sort-header\">\n <button kendoButton (click)=\"addSort()\" [disabled]=\"!UserCanEdit\">\n <span class=\"fa-solid fa-plus\"></span>\n Add\n </button>\n </div>\n <div *ngFor=\"let s of this.sortState\"> \n <kendo-dropdownlist \n class=\"sort-column\"\n [data]=\"sortFields\"\n textField=\"Name\"\n valueField=\"Name\"\n (valueChange)=\"sortColumnValueChange(s, $event)\"\n [(ngModel)]=\"s.field\"\n [disabled]=\"!UserCanEdit\"\n >\n </kendo-dropdownlist>\n <kendo-dropdownlist\n class=\"sort-direction\"\n [data]=\"sortDirections\"\n textField=\"Name\"\n valueField=\"Value\"\n (valueChange)=\"sortDirectionValueChange(s, $event)\"\n [(ngModel)]=\"s.direction\"\n [disabled]=\"!UserCanEdit\"\n >\n </kendo-dropdownlist>\n <button kendoButton (click)=\"removeSort(s)\" [disabled]=\"!UserCanEdit\">\n <span class=\"fa-solid fa-xmark\"></span>\n Remove\n </button>\n </div> \n </ng-template>\n </kendo-tabstrip-tab>\n <kendo-tabstrip-tab>\n <i class=\"fa-solid fa-arrow-up-wide-short\"></i>\n <ng-template kendoTabTitle>\n <span class=\"fa-solid fa-share-from-square tab-header-icon\"></span>\n <span>Sharing</span>\n </ng-template>\n <ng-template kendoTabContent>\n <mj-resource-permissions\n #resourcePermissions\n [ResourceTypeID]=\"ViewResourceTypeID\"\n [ResourceRecordID]=\"ViewID\"\n >\n </mj-resource-permissions>\n <!-- The overlay div, only visible when UserCanEdit is false -->\n <div *ngIf=\"!UserCanEdit\" class=\"overlay\"></div> \n </ng-template>\n </kendo-tabstrip-tab>\n <kendo-tabstrip-tab *ngIf=\"ViewID && ViewID.length > 0\">\n <ng-template kendoTabTitle>\n <span class=\"fa-solid fa-gear tab-header-icon\"></span>\n <span>Advanced</span>\n </ng-template>\n <ng-template kendoTabContent>\n @if(record.SmartFilterEnabled) {\n <kendo-textarea\n [readonly]=\"true\"\n [rows]=\"5\"\n [(ngModel)]=\"record.SmartFilterExplanation\"\n resizable=\"vertical\"\n class=\"advanced-tab-details\"\n ></kendo-textarea>\n <kendo-textarea\n [readonly]=\"true\"\n [rows]=\"5\"\n [(ngModel)]=\"record.SmartFilterWhereClause\"\n resizable=\"vertical\"\n class=\"advanced-tab-details\"\n ></kendo-textarea> \n }\n @else {\n <span>SQL Text Where Clause:</span>\n <br>\n <kendo-textarea\n [readonly]=\"false\"\n [rows]=\"7\"\n [(ngModel)]=\"record.WhereClause\"\n resizable=\"vertical\"\n class=\"advanced-tab-details smart-filter-prompt\"\n ></kendo-textarea>\n }\n </ng-template>\n </kendo-tabstrip-tab>\n </kendo-tabstrip>\n \n <div class=\"k-actions k-actions-end customBtn popup-actions\">\n @if (UserCanEdit) {\n <button kendoButton (click)=\"saveProperties()\" themeColor=\"info\">\n <span class=\"fa-solid fa-circle-check\"></span>\n Save\n </button> \n }\n <button fillMode=\"outline\" themeColor=\"info\" kendoButton (click)=\"closePropertiesDialog()\">Cancel</button>\n </div>\n </div>\n </div>\n </kendo-window>\n </div>\n</div> ", styles: [".view-properties-button {\n margin-left: 0px;\n }\n .view-prop-tab-contents {\n display: flex;\n flex-direction: column;\n height: 100%; /* Set to the height you want */\n }\n \n .form-group {\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n margin-bottom: 10px;\n }\n \n .form-group-description {\n flex-grow: 1;\n }\n \n .k-form-label {\n width: 150px; /* Adjust as needed */\n margin-right: 10px;\n }\n \n .view-description {\n flex-grow: 1;\n height: 100%;\n padding: 5px;\n resize: none;\n }\n \n \n \n .item-content {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n \n .popup-content {\n height: calc(100% - 46px);\n }\n \n .popup-actions {\n padding: 16px 0 0;\n }\n \n .view-prop-tab-contents {\n overflow: hidden;\n }\n \n .sort-column {\n width: 300px;\n }\n \n .sort-direction {\n width: 125px;\n }\n \n .sort-header > button {\n margin-left: 5px;\n margin-bottom: 5px;\n width: 75px;\n }\n \n .smart-filter-label {\n margin-right: 10px;\n }\n \n .smart-filter-prompt {\n margin-top: 15px;\n }\n\n .smart-filter-button {\n margin-right: 5px;\n margin-bottom: 5px;\n }\n\n .tab-header-icon {\n margin-right: 5px;\n }\n \n .advanced-tab-details\n {\n margin-bottom: 10px;\n }\n ::ng-deep .customBtn button {\n flex: 1;\n border-radius: 10px;\n line-height: 34px;\n }\n ::ng-deep .popup-content .k-tabstrip-items-wrapper {\n background: var(--white-color) !important;\n padding-left: 0 !important;\n }\n ::ng-deep .popup-content .k-tabstrip-items-wrapper .k-tabstrip-items .k-tabstrip-item.k-active {\n border-bottom: 3px solid var(--border-blue) !important;\n }\n ::ng-deep .popup-content .k-tabstrip-items-wrapper .k-tabstrip-items .k-tabstrip-item {\n background: var(--white-color) !important;\n border-right: 0 !important;\n }\n\n.k-checkbox {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.k-switch-on .k-switch-track {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.k-selected {\n background-color: var(--border-blue);\n border-color: var(--border-blue);\n color: white;\n}\n\n.filter-wrapper {\n position: relative;\n display: inline-block;\n}\n\n.overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */\n z-index: 1; /* Ensure it's above the other components */\n pointer-events: all; /* get all clicks */\n cursor: not-allowed; /* Change cursor to indicate it's disabled */\n}\n"] }]
@@ -1 +1 @@
1
- {"version":3,"file":"user-view-properties.component.js","sourceRoot":"","sources":["../../src/lib/user-view-properties.component.ts","../../src/lib/user-view-properties.component.html"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"user-view-properties.component.js","sourceRoot":"","sources":["../../src/lib/user-view-properties.component.ts","../../src/lib/user-view-properties.component.html"],"names":[],"mappings":"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"}
package/dist/module.js CHANGED
@@ -16,22 +16,22 @@ import { FindRecordModule } from '@memberjunction/ng-find-record';
16
16
  import { ResourcePermissionsModule } from '@memberjunction/ng-resource-permissions';
17
17
  import * as i0 from "@angular/core";
18
18
  export class UserViewPropertiesDialogModule {
19
+ static ɵfac = function UserViewPropertiesDialogModule_Factory(t) { return new (t || UserViewPropertiesDialogModule)(); };
20
+ static ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: UserViewPropertiesDialogModule });
21
+ static ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
22
+ InputsModule,
23
+ LabelModule,
24
+ FormsModule,
25
+ ButtonsModule,
26
+ WindowModule,
27
+ TabStripModule,
28
+ SortableModule,
29
+ FilterModule,
30
+ DropDownsModule,
31
+ MJTabStripModule,
32
+ FindRecordModule,
33
+ ResourcePermissionsModule] });
19
34
  }
20
- UserViewPropertiesDialogModule.ɵfac = function UserViewPropertiesDialogModule_Factory(t) { return new (t || UserViewPropertiesDialogModule)(); };
21
- UserViewPropertiesDialogModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: UserViewPropertiesDialogModule });
22
- UserViewPropertiesDialogModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
23
- InputsModule,
24
- LabelModule,
25
- FormsModule,
26
- ButtonsModule,
27
- WindowModule,
28
- TabStripModule,
29
- SortableModule,
30
- FilterModule,
31
- DropDownsModule,
32
- MJTabStripModule,
33
- FindRecordModule,
34
- ResourcePermissionsModule] });
35
35
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UserViewPropertiesDialogModule, [{
36
36
  type: NgModule,
37
37
  args: [{
@@ -1 +1 @@
1
- {"version":3,"file":"module.js","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAE7C,2BAA2B;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAEhE,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,yBAAyB,EAAE,MAAM,yCAAyC,CAAC;;AAyBpF,MAAM,OAAO,8BAA8B;;4GAA9B,8BAA8B;gFAA9B,8BAA8B;oFAlBvC,YAAY;QACZ,YAAY;QACZ,WAAW;QACX,WAAW;QACX,aAAa;QACb,YAAY;QACZ,cAAc;QACd,cAAc;QACd,YAAY;QACZ,eAAe;QACf,gBAAgB;QAChB,gBAAgB;QAChB,yBAAyB;iFAMhB,8BAA8B;cAvB1C,QAAQ;eAAC;gBACR,YAAY,EAAE;oBACZ,iCAAiC;iBAClC;gBACD,OAAO,EAAE;oBACP,YAAY;oBACZ,YAAY;oBACZ,WAAW;oBACX,WAAW;oBACX,aAAa;oBACb,YAAY;oBACZ,cAAc;oBACd,cAAc;oBACd,YAAY;oBACZ,eAAe;oBACf,gBAAgB;oBAChB,gBAAgB;oBAChB,yBAAyB;iBAC1B;gBACD,OAAO,EAAE;oBACP,iCAAiC;iBAClC;aACF;;wFACY,8BAA8B,mBArBvC,iCAAiC,aAGjC,YAAY;QACZ,YAAY;QACZ,WAAW;QACX,WAAW;QACX,aAAa;QACb,YAAY;QACZ,cAAc;QACd,cAAc;QACd,YAAY;QACZ,eAAe;QACf,gBAAgB;QAChB,gBAAgB;QAChB,yBAAyB,aAGzB,iCAAiC"}
1
+ {"version":3,"file":"module.js","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAE7C,2BAA2B;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAEhE,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,yBAAyB,EAAE,MAAM,yCAAyC,CAAC;;AAyBpF,MAAM,OAAO,8BAA8B;wFAA9B,8BAA8B;4DAA9B,8BAA8B;gEAlBvC,YAAY;YACZ,YAAY;YACZ,WAAW;YACX,WAAW;YACX,aAAa;YACb,YAAY;YACZ,cAAc;YACd,cAAc;YACd,YAAY;YACZ,eAAe;YACf,gBAAgB;YAChB,gBAAgB;YAChB,yBAAyB;;iFAMhB,8BAA8B;cAvB1C,QAAQ;eAAC;gBACR,YAAY,EAAE;oBACZ,iCAAiC;iBAClC;gBACD,OAAO,EAAE;oBACP,YAAY;oBACZ,YAAY;oBACZ,WAAW;oBACX,WAAW;oBACX,aAAa;oBACb,YAAY;oBACZ,cAAc;oBACd,cAAc;oBACd,YAAY;oBACZ,eAAe;oBACf,gBAAgB;oBAChB,gBAAgB;oBAChB,yBAAyB;iBAC1B;gBACD,OAAO,EAAE;oBACP,iCAAiC;iBAClC;aACF;;wFACY,8BAA8B,mBArBvC,iCAAiC,aAGjC,YAAY;QACZ,YAAY;QACZ,WAAW;QACX,WAAW;QACX,aAAa;QACb,YAAY;QACZ,cAAc;QACd,cAAc;QACd,YAAY;QACZ,eAAe;QACf,gBAAgB;QAChB,gBAAgB;QAChB,yBAAyB,aAGzB,iCAAiC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/ng-user-view-properties",
3
- "version": "2.47.0",
3
+ "version": "2.49.0",
4
4
  "description": "MemberJunction: Angular UI Dialog Component to View/Edit User View Properties",
5
5
  "main": "./dist/public-api.js",
6
6
  "typings": "./dist/public-api.d.ts",
@@ -24,13 +24,13 @@
24
24
  "@angular/forms": "18.0.2"
25
25
  },
26
26
  "dependencies": {
27
- "@memberjunction/global": "2.47.0",
28
- "@memberjunction/core": "2.47.0",
29
- "@memberjunction/core-entities": "2.47.0",
30
- "@memberjunction/ng-base-forms": "2.47.0",
31
- "@memberjunction/ng-find-record": "2.47.0",
32
- "@memberjunction/ng-resource-permissions": "2.47.0",
33
- "@memberjunction/ng-shared": "2.47.0",
27
+ "@memberjunction/global": "2.49.0",
28
+ "@memberjunction/core": "2.49.0",
29
+ "@memberjunction/core-entities": "2.49.0",
30
+ "@memberjunction/ng-base-forms": "2.49.0",
31
+ "@memberjunction/ng-find-record": "2.49.0",
32
+ "@memberjunction/ng-resource-permissions": "2.49.0",
33
+ "@memberjunction/ng-shared": "2.49.0",
34
34
  "@progress/kendo-angular-sortable": "16.2.0",
35
35
  "@progress/kendo-angular-dialog": "16.2.0",
36
36
  "@progress/kendo-angular-layout": "16.2.0",