@memberjunction/ng-explorer-core 2.8.0 → 2.10.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.
Files changed (45) hide show
  1. package/dist/app-routing.module.d.ts +1 -0
  2. package/dist/app-routing.module.d.ts.map +1 -1
  3. package/dist/app-routing.module.js +42 -3
  4. package/dist/app-routing.module.js.map +1 -1
  5. package/dist/generic/Item.types.d.ts +12 -0
  6. package/dist/generic/Item.types.d.ts.map +1 -1
  7. package/dist/generic/Item.types.js +7 -0
  8. package/dist/generic/Item.types.js.map +1 -1
  9. package/dist/lib/app-view/application-view.component.d.ts +6 -8
  10. package/dist/lib/app-view/application-view.component.d.ts.map +1 -1
  11. package/dist/lib/app-view/application-view.component.js +47 -30
  12. package/dist/lib/app-view/application-view.component.js.map +1 -1
  13. package/dist/lib/base-browser-component/base-browser-component.d.ts.map +1 -1
  14. package/dist/lib/dashboard-browser-component/dashboard-browser.component.d.ts +16 -5
  15. package/dist/lib/dashboard-browser-component/dashboard-browser.component.d.ts.map +1 -1
  16. package/dist/lib/dashboard-browser-component/dashboard-browser.component.js +172 -17
  17. package/dist/lib/dashboard-browser-component/dashboard-browser.component.js.map +1 -1
  18. package/dist/lib/list-view/list-view.component.d.ts +4 -1
  19. package/dist/lib/list-view/list-view.component.d.ts.map +1 -1
  20. package/dist/lib/list-view/list-view.component.js +63 -43
  21. package/dist/lib/list-view/list-view.component.js.map +1 -1
  22. package/dist/lib/query-browser-component/query-browser.component.d.ts +2 -1
  23. package/dist/lib/query-browser-component/query-browser.component.d.ts.map +1 -1
  24. package/dist/lib/query-browser-component/query-browser.component.js +12 -9
  25. package/dist/lib/query-browser-component/query-browser.component.js.map +1 -1
  26. package/dist/lib/report-browser-component/report-browser.component.d.ts +2 -1
  27. package/dist/lib/report-browser-component/report-browser.component.d.ts.map +1 -1
  28. package/dist/lib/report-browser-component/report-browser.component.js +9 -7
  29. package/dist/lib/report-browser-component/report-browser.component.js.map +1 -1
  30. package/dist/lib/resource-browser/resource-browser.component.d.ts +37 -33
  31. package/dist/lib/resource-browser/resource-browser.component.d.ts.map +1 -1
  32. package/dist/lib/resource-browser/resource-browser.component.js +466 -432
  33. package/dist/lib/resource-browser/resource-browser.component.js.map +1 -1
  34. package/dist/lib/single-view/single-view.component.d.ts +4 -2
  35. package/dist/lib/single-view/single-view.component.d.ts.map +1 -1
  36. package/dist/lib/single-view/single-view.component.js +54 -26
  37. package/dist/lib/single-view/single-view.component.js.map +1 -1
  38. package/dist/lib/user-notifications/user-notifications.component.d.ts.map +1 -1
  39. package/dist/lib/user-notifications/user-notifications.component.js +11 -3
  40. package/dist/lib/user-notifications/user-notifications.component.js.map +1 -1
  41. package/dist/module.d.ts +2 -1
  42. package/dist/module.d.ts.map +1 -1
  43. package/dist/module.js +7 -3
  44. package/dist/module.js.map +1 -1
  45. package/package.json +22 -22
@@ -1,15 +1,10 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import { Item } from '../../generic/Item.types';
2
+ import { Folder, Item, NewItemOption } from '../../generic/Item.types';
3
3
  import { ResourceTypeEntity } from '@memberjunction/core-entities';
4
4
  import { CellClickEvent } from '@progress/kendo-angular-grid';
5
5
  import { SharedService } from '@memberjunction/ng-shared';
6
+ import { BeforeUpdateItemEvent } from '../../generic/Events.types';
6
7
  import * as i0 from "@angular/core";
7
- export declare class NewItemOption {
8
- Text: string;
9
- Description?: string;
10
- Icon?: string;
11
- Action?: () => void;
12
- }
13
8
  export declare class ResourceBrowserComponent {
14
9
  sharedService: SharedService;
15
10
  /*******************************************************************************************
@@ -22,9 +17,19 @@ export declare class ResourceBrowserComponent {
22
17
  get ResourceTypeName(): string | null;
23
18
  set ResourceTypeName(value: string);
24
19
  /**
25
- * Whether or not to enable categories, if set to false, categories will be ignored and not displayed
20
+ * Whether or not to enable categories. If enabled, Categories will be displayed
21
+ * and the option to create new categories will be available. Default is true.
26
22
  */
27
23
  EnableCategories: boolean;
24
+ /**
25
+ * If Categories are enabled, then the categories fetched will be filtered to return only those whoses EntityID
26
+ * matches this value.
27
+ */
28
+ CategoryEntityID: string | null | undefined;
29
+ /**
30
+ * If set, this will set the current Category/Folder for the display. Not all Resource Types support Categories, so if the Resource Type in question does not have a CategoryEntityID specified, this property will be ignored.
31
+ */
32
+ CurrentCategoryID: string | null;
28
33
  /**
29
34
  * This property determines if the UI will include a button on items in the display to edit. The button will only be shown if the user has edit permissions, but this is a global setting to turn on/off the button even if the user has permissions. Default is true.
30
35
  */
@@ -54,10 +59,6 @@ export declare class ResourceBrowserComponent {
54
59
  * Array of NewItemOption objects that will be displayed in the Create New dropdown. Defaults to having a single entry for creating a new folder, you can remove this or add to it.
55
60
  */
56
61
  NewItemOptions: NewItemOption[];
57
- /**
58
- * If set, this will set the current Category/Folder for the display. Not all Resource Types support Categories, so if the Resource Type in question does not have a CategoryEntityID specified, this property will be ignored.
59
- */
60
- CurrentCategoryID?: string;
61
62
  /**
62
63
  * The visual display mode for this component, tile will show the contents in tiles that are spaced and wrapped based on the viewport, list will show the details of the items in a list, and tree will show the items in a tree view - tree view NOT implemented yet
63
64
  */
@@ -77,6 +78,14 @@ export declare class ResourceBrowserComponent {
77
78
  * Fires whenever the user changes the display mode of the component
78
79
  */
79
80
  DisplayModeChanged: EventEmitter<'Grid' | 'List' | 'Tree'>;
81
+ /**
82
+ * Fires whenever the user clicks the back button to view the parent folder
83
+ */
84
+ NavigateToParentEvent: EventEmitter<void>;
85
+ /**
86
+ * Fires whenever the users clicks to edit an Item that is not a folder
87
+ */
88
+ EditItemEvent: EventEmitter<BeforeUpdateItemEvent>;
80
89
  /**
81
90
  * The current Resource Type (BaseEntity derived class), automatically is populated after init based on the ResourceType string
82
91
  */
@@ -110,6 +119,11 @@ export declare class ResourceBrowserComponent {
110
119
  * The current list of items being displayed in the browser, DO NOT MODIFY THIS! This is read only and is auto-populated by the component.
111
120
  */
112
121
  get Items(): Item[];
122
+ private _DefaultNewItemOptions;
123
+ get ItemOptions(): NewItemOption[];
124
+ upsertNewFolderName: string;
125
+ upsertNewFolderDescription: string;
126
+ selectedFolder: Folder | null;
113
127
  private _filterDebounceTime;
114
128
  private filterItemsSubject;
115
129
  private filter;
@@ -117,27 +131,21 @@ export declare class ResourceBrowserComponent {
117
131
  selectedItem: Item | null;
118
132
  deleteDialogOpened: boolean;
119
133
  copyFromDialogOpened: boolean;
120
- createFolderDialogOpened: boolean;
121
- private newFolderText;
134
+ upsertFolderDialogVisible: boolean;
122
135
  private _allResourceTypes;
123
- private createNewRecordName;
124
136
  entityObjectName: string;
125
- /**
126
- * Options for the create button dropdown
127
- */
128
- dropdownOptions: {
129
- text: string;
130
- }[];
131
137
  constructor(sharedService: SharedService);
132
138
  ngOnInit(): Promise<void>;
133
139
  /**
134
140
  * Refresh the component from the database based on other current state variables.
135
141
  */
136
142
  Refresh(): Promise<void>;
143
+ private LoadResources;
144
+ private LoadCategories;
145
+ protected sortItems(items: Item[]): Item[];
137
146
  onCellItemClicked(event: CellClickEvent): void;
138
147
  itemClick(item: any): void;
139
- backButtonClicked(): void;
140
- addResourceButtonClicked(): Promise<void>;
148
+ updateFolder(): Promise<void>;
141
149
  createFolder(): Promise<void>;
142
150
  unlinkItem(item: Item): Promise<void>;
143
151
  private _currentDeleteOrUnlinkState;
@@ -149,22 +157,18 @@ export declare class ResourceBrowserComponent {
149
157
  private deleteResource;
150
158
  private unlinkResource;
151
159
  private doesFolderHaveChildren;
152
- private showNotification;
153
- private TryGetID;
154
- changeViewMode(mode: 'grid' | 'list'): void;
160
+ changeViewMode(mode: "List" | "Tree" | "Tile"): void;
155
161
  onKeyup(Value: any): void;
156
- onCreateFolderKeyup(value: string): void;
162
+ onUpsertFolderNameKeyup(value: string): void;
163
+ onUpsertFolderDescriptionKeyup(value: string): void;
157
164
  private filterItems;
158
- SetFavoriteStatus(item: any): Promise<void>;
159
165
  editItem(item: Item): void;
160
- onDropdownItemClick(data: {
161
- text: string;
162
- }): Promise<void>;
166
+ onDropdownItemClick(dropdownItem: NewItemOption): Promise<void>;
163
167
  toggleCopyFromView(): void;
164
168
  getCopyFromTitle(): string;
165
- toggleCreateFolderView(visible?: boolean): void;
169
+ toggleUpsertFolderView(visible: boolean, createNew: boolean): void;
166
170
  getIconForResourceType(item: Item): string;
167
171
  static ɵfac: i0.ɵɵFactoryDeclaration<ResourceBrowserComponent, never>;
168
- static ɵcmp: i0.ɵɵComponentDeclaration<ResourceBrowserComponent, "mj-resource-browser", never, { "ResourceTypeName": { "alias": "ResourceTypeName"; "required": true; }; "EnableCategories": { "alias": "EnableCategories"; "required": false; }; "EnableItemEdit": { "alias": "EnableItemEdit"; "required": false; }; "EnableItemDelete": { "alias": "EnableItemDelete"; "required": false; }; "EnableRemoveLink": { "alias": "EnableRemoveLink"; "required": false; }; "Title": { "alias": "Title"; "required": false; }; "ItemFilter": { "alias": "ItemFilter"; "required": false; }; "OrderBy": { "alias": "OrderBy"; "required": false; }; "NewItemOptions": { "alias": "NewItemOptions"; "required": false; }; "CurrentCategoryID": { "alias": "CurrentCategoryID"; "required": false; }; "DisplayMode": { "alias": "DisplayMode"; "required": false; }; }, { "ResourceSelected": "ResourceSelected"; "CategoryChanged": "CategoryChanged"; "DisplayModeChanged": "DisplayModeChanged"; }, never, never, false, never>;
172
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResourceBrowserComponent, "mj-resource-browser", never, { "ResourceTypeName": { "alias": "ResourceTypeName"; "required": true; }; "EnableCategories": { "alias": "EnableCategories"; "required": false; }; "CategoryEntityID": { "alias": "CategoryEntityID"; "required": false; }; "CurrentCategoryID": { "alias": "CurrentCategoryID"; "required": false; }; "EnableItemEdit": { "alias": "EnableItemEdit"; "required": false; }; "EnableItemDelete": { "alias": "EnableItemDelete"; "required": false; }; "EnableRemoveLink": { "alias": "EnableRemoveLink"; "required": false; }; "Title": { "alias": "Title"; "required": false; }; "ItemFilter": { "alias": "ItemFilter"; "required": false; }; "OrderBy": { "alias": "OrderBy"; "required": false; }; "NewItemOptions": { "alias": "NewItemOptions"; "required": false; }; "DisplayMode": { "alias": "DisplayMode"; "required": false; }; }, { "ResourceSelected": "ResourceSelected"; "CategoryChanged": "CategoryChanged"; "DisplayModeChanged": "DisplayModeChanged"; "NavigateToParentEvent": "NavigateToParentEvent"; "EditItemEvent": "EditItemEvent"; }, never, never, false, never>;
169
173
  }
170
174
  //# sourceMappingURL=resource-browser.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"resource-browser.component.d.ts","sourceRoot":"","sources":["../../../src/lib/resource-browser/resource-browser.component.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"resource-browser.component.d.ts","sourceRoot":"","sources":["../../../src/lib/resource-browser/resource-browser.component.ts"],"names":[],"mappings":"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"}