@memberjunction/ng-explorer-core 2.129.0 → 2.130.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/guards/auth-guard.service.d.ts +2 -1
- package/dist/lib/guards/auth-guard.service.d.ts.map +1 -1
- package/dist/lib/guards/auth-guard.service.js +8 -4
- package/dist/lib/guards/auth-guard.service.js.map +1 -1
- package/dist/lib/resource-wrappers/chat-conversations-resource.component.d.ts +40 -11
- package/dist/lib/resource-wrappers/chat-conversations-resource.component.d.ts.map +1 -1
- package/dist/lib/resource-wrappers/chat-conversations-resource.component.js +151 -90
- package/dist/lib/resource-wrappers/chat-conversations-resource.component.js.map +1 -1
- package/dist/lib/shell/components/header/app-nav.component.d.ts +2 -1
- package/dist/lib/shell/components/header/app-nav.component.d.ts.map +1 -1
- package/dist/lib/shell/components/header/app-nav.component.js +4 -2
- package/dist/lib/shell/components/header/app-nav.component.js.map +1 -1
- package/dist/lib/shell/components/tabs/tab-container.component.d.ts.map +1 -1
- package/dist/lib/shell/components/tabs/tab-container.component.js +1 -0
- package/dist/lib/shell/components/tabs/tab-container.component.js.map +1 -1
- package/dist/lib/shell/shell.component.d.ts.map +1 -1
- package/dist/lib/shell/shell.component.js +6 -9
- package/dist/lib/shell/shell.component.js.map +1 -1
- package/dist/lib/user-profile/user-profile.component.d.ts +3 -2
- package/dist/lib/user-profile/user-profile.component.d.ts.map +1 -1
- package/dist/lib/user-profile/user-profile.component.js +9 -7
- package/dist/lib/user-profile/user-profile.component.js.map +1 -1
- package/package.json +35 -35
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { Router, CanActivate } from '@angular/router';
|
|
2
2
|
import { MJAuthBase } from '@memberjunction/ng-auth-services';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class AuthGuardService implements CanActivate {
|
|
5
6
|
private authBase;
|
|
6
7
|
router: Router;
|
|
7
8
|
constructor(authBase: MJAuthBase, router: Router);
|
|
8
|
-
canActivate(): boolean
|
|
9
|
+
canActivate(): Observable<boolean>;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthGuardService, never>;
|
|
10
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthGuardService>;
|
|
11
12
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth-guard.service.d.ts","sourceRoot":"","sources":["../../../src/lib/guards/auth-guard.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;;
|
|
1
|
+
{"version":3,"file":"auth-guard.service.d.ts","sourceRoot":"","sources":["../../../src/lib/guards/auth-guard.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAO,MAAM,MAAM,CAAC;;AAEvC,qBAGa,gBAAiB,YAAW,WAAW;IACtC,OAAO,CAAC,QAAQ;IAAqB,MAAM,EAAE,MAAM;gBAA3C,QAAQ,EAAE,UAAU,EAAS,MAAM,EAAE,MAAM;IAE/D,WAAW,IAAI,UAAU,CAAC,OAAO,CAAC;yCAHvB,gBAAgB;6CAAhB,gBAAgB;CAc5B"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Injectable } from '@angular/core';
|
|
2
|
+
import { map } from 'rxjs';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
import * as i1 from "@memberjunction/ng-auth-services";
|
|
4
5
|
import * as i2 from "@angular/router";
|
|
@@ -10,10 +11,13 @@ export class AuthGuardService {
|
|
|
10
11
|
this.router = router;
|
|
11
12
|
}
|
|
12
13
|
canActivate() {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
// v3.0 API - use observable instead of property
|
|
15
|
+
return this.authBase.isAuthenticated().pipe(map(isAuthenticated => {
|
|
16
|
+
if (!isAuthenticated) {
|
|
17
|
+
return false;
|
|
18
|
+
}
|
|
19
|
+
return true;
|
|
20
|
+
}));
|
|
17
21
|
}
|
|
18
22
|
static ɵfac = function AuthGuardService_Factory(t) { return new (t || AuthGuardService)(i0.ɵɵinject(i1.MJAuthBase), i0.ɵɵinject(i2.Router)); };
|
|
19
23
|
static ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AuthGuardService, factory: AuthGuardService.ɵfac, providedIn: 'root' });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth-guard.service.js","sourceRoot":"","sources":["../../../src/lib/guards/auth-guard.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;;;;
|
|
1
|
+
{"version":3,"file":"auth-guard.service.js","sourceRoot":"","sources":["../../../src/lib/guards/auth-guard.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAG3C,OAAO,EAAc,GAAG,EAAE,MAAM,MAAM,CAAC;;;;AAKvC,MAAM,OAAO,gBAAgB;IACP;IAA6B;IAAjD,YAAoB,QAAoB,EAAS,MAAc;QAA3C,aAAQ,GAAR,QAAQ,CAAY;QAAS,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;IAEnE,WAAW;QACT,gDAAgD;QAChD,OAAO,IAAI,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,IAAI,CACzC,GAAG,CAAC,eAAe,CAAC,EAAE;YACpB,IAAI,CAAC,eAAe,EAAE,CAAC;gBACrB,OAAO,KAAK,CAAC;YACf,CAAC;YACD,OAAO,IAAI,CAAC;QACd,CAAC,CAAC,CACH,CAAC;IACJ,CAAC;0EAbU,gBAAgB;gEAAhB,gBAAgB,WAAhB,gBAAgB,mBAFb,MAAM;;iFAET,gBAAgB;cAH5B,UAAU;eAAC;gBACR,UAAU,EAAE,MAAM;aACrB"}
|
|
@@ -3,7 +3,7 @@ import { Router } from '@angular/router';
|
|
|
3
3
|
import { CompositeKey } from '@memberjunction/core';
|
|
4
4
|
import { BaseResourceComponent, NavigationService } from '@memberjunction/ng-shared';
|
|
5
5
|
import { ResourceData, ConversationEntity } from '@memberjunction/core-entities';
|
|
6
|
-
import { ConversationDataService, ConversationChatAreaComponent, ConversationListComponent, MentionAutocompleteService, ConversationStreamingService } from '@memberjunction/ng-conversations';
|
|
6
|
+
import { ConversationDataService, ConversationChatAreaComponent, ConversationListComponent, MentionAutocompleteService, ConversationStreamingService, ActiveTasksService, PendingAttachment } from '@memberjunction/ng-conversations';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare function LoadChatConversationsResource(): void;
|
|
9
9
|
/**
|
|
@@ -24,6 +24,7 @@ export declare class ChatConversationsResource extends BaseResourceComponent imp
|
|
|
24
24
|
private mentionAutocompleteService;
|
|
25
25
|
private cdr;
|
|
26
26
|
private streamingService;
|
|
27
|
+
private activeTasksService;
|
|
27
28
|
conversationList?: ConversationListComponent;
|
|
28
29
|
chatArea?: ConversationChatAreaComponent;
|
|
29
30
|
currentUser: any;
|
|
@@ -40,17 +41,24 @@ export declare class ChatConversationsResource extends BaseResourceComponent imp
|
|
|
40
41
|
isSidebarPinned: boolean;
|
|
41
42
|
isMobileView: boolean;
|
|
42
43
|
sidebarTransitionsEnabled: boolean;
|
|
44
|
+
isSidebarSettingsLoaded: boolean;
|
|
45
|
+
sidebarWidth: number;
|
|
46
|
+
private isSidebarResizing;
|
|
47
|
+
private sidebarResizeStartX;
|
|
48
|
+
private sidebarResizeStartWidth;
|
|
49
|
+
private readonly SIDEBAR_MIN_WIDTH;
|
|
50
|
+
private readonly SIDEBAR_MAX_WIDTH;
|
|
43
51
|
pendingArtifactId: string | null;
|
|
44
52
|
pendingArtifactVersionNumber: number | null;
|
|
45
53
|
pendingMessageToSend: string | null;
|
|
54
|
+
pendingAttachmentsToSend: PendingAttachment[] | null;
|
|
46
55
|
private readonly USER_SETTING_SIDEBAR_KEY;
|
|
47
|
-
private readonly SIDEBAR_COLLAPSED_KEY;
|
|
48
56
|
private saveSettingsTimeout;
|
|
49
|
-
constructor(navigationService: NavigationService, conversationData: ConversationDataService, router: Router, mentionAutocompleteService: MentionAutocompleteService, cdr: ChangeDetectorRef, streamingService: ConversationStreamingService);
|
|
57
|
+
constructor(navigationService: NavigationService, conversationData: ConversationDataService, router: Router, mentionAutocompleteService: MentionAutocompleteService, cdr: ChangeDetectorRef, streamingService: ConversationStreamingService, activeTasksService: ActiveTasksService);
|
|
50
58
|
ngOnInit(): Promise<void>;
|
|
51
59
|
ngOnDestroy(): void;
|
|
52
60
|
/**
|
|
53
|
-
* Initialize AI Engine and
|
|
61
|
+
* Initialize AI Engine, conversations, and services BEFORE child components render.
|
|
54
62
|
* This prevents the slow first-load issue where initialization would block conversation loading.
|
|
55
63
|
* The `false` parameter means "don't force refresh if already initialized".
|
|
56
64
|
*/
|
|
@@ -123,9 +131,21 @@ export declare class ChatConversationsResource extends BaseResourceComponent imp
|
|
|
123
131
|
*/
|
|
124
132
|
collapseSidebar(): void;
|
|
125
133
|
/**
|
|
126
|
-
* Expand sidebar (
|
|
134
|
+
* Expand sidebar (pinned - stays open until unpinned)
|
|
127
135
|
*/
|
|
128
136
|
expandSidebar(): void;
|
|
137
|
+
/**
|
|
138
|
+
* Handle sidebar resize start
|
|
139
|
+
*/
|
|
140
|
+
onSidebarResizeStart(event: MouseEvent): void;
|
|
141
|
+
/**
|
|
142
|
+
* Handle sidebar resize move (bound method for proper 'this' context)
|
|
143
|
+
*/
|
|
144
|
+
private onSidebarResizeMove;
|
|
145
|
+
/**
|
|
146
|
+
* Handle sidebar resize end (bound method for proper 'this' context)
|
|
147
|
+
*/
|
|
148
|
+
private onSidebarResizeEnd;
|
|
129
149
|
/**
|
|
130
150
|
* Pin sidebar - keep it open after selection
|
|
131
151
|
*/
|
|
@@ -135,7 +155,7 @@ export declare class ChatConversationsResource extends BaseResourceComponent imp
|
|
|
135
155
|
*/
|
|
136
156
|
unpinSidebar(): void;
|
|
137
157
|
/**
|
|
138
|
-
* Save sidebar state to User Settings (server
|
|
158
|
+
* Save sidebar state to User Settings (server only - no localStorage fallback)
|
|
139
159
|
* Uses debouncing to avoid excessive database writes
|
|
140
160
|
*/
|
|
141
161
|
private saveSidebarState;
|
|
@@ -144,7 +164,7 @@ export declare class ChatConversationsResource extends BaseResourceComponent imp
|
|
|
144
164
|
*/
|
|
145
165
|
private saveSidebarStateToServer;
|
|
146
166
|
/**
|
|
147
|
-
* Load sidebar state from User Settings (server) using UserInfoEngine
|
|
167
|
+
* Load sidebar state from User Settings (server) using UserInfoEngine
|
|
148
168
|
* For new users with no saved state, defaults to collapsed with new conversation
|
|
149
169
|
*/
|
|
150
170
|
private loadSidebarState;
|
|
@@ -153,9 +173,14 @@ export declare class ChatConversationsResource extends BaseResourceComponent imp
|
|
|
153
173
|
*/
|
|
154
174
|
onNewConversationRequested(): void;
|
|
155
175
|
/**
|
|
156
|
-
* Handle conversation created from chat area (after first message in new conversation)
|
|
176
|
+
* Handle conversation created from chat area (after first message in new conversation).
|
|
177
|
+
* The event now includes pending message and attachments for atomic state update.
|
|
157
178
|
*/
|
|
158
|
-
onConversationCreated(
|
|
179
|
+
onConversationCreated(event: {
|
|
180
|
+
conversation: ConversationEntity;
|
|
181
|
+
pendingMessage?: string;
|
|
182
|
+
pendingAttachments?: PendingAttachment[];
|
|
183
|
+
}): Promise<void>;
|
|
159
184
|
/**
|
|
160
185
|
* Handle conversation rename event
|
|
161
186
|
*/
|
|
@@ -181,9 +206,13 @@ export declare class ChatConversationsResource extends BaseResourceComponent imp
|
|
|
181
206
|
*/
|
|
182
207
|
onPendingMessageConsumed(): void;
|
|
183
208
|
/**
|
|
184
|
-
* Handle pending message requested event (from empty state creating conversation)
|
|
209
|
+
* Handle pending message requested event (from empty state creating conversation).
|
|
210
|
+
* @deprecated Use onConversationCreated with pendingMessage instead - this is kept for backwards compatibility.
|
|
185
211
|
*/
|
|
186
|
-
onPendingMessageRequested(
|
|
212
|
+
onPendingMessageRequested(event: {
|
|
213
|
+
text: string;
|
|
214
|
+
attachments: PendingAttachment[];
|
|
215
|
+
}): void;
|
|
187
216
|
/**
|
|
188
217
|
* Handle navigation request from artifact viewer panel within the chat area.
|
|
189
218
|
* Converts the link event to a generic navigation request and uses NavigationService.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat-conversations-resource.component.d.ts","sourceRoot":"","sources":["../../../src/lib/resource-wrappers/chat-conversations-resource.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgC,SAAS,EAAa,iBAAiB,EAAgB,MAAM,eAAe,CAAC;AACpH,OAAO,EAAE,MAAM,EAAiB,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAY,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAE9D,OAAO,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACrF,OAAO,EAAE,YAAY,EAA6B,kBAAkB,EAAqC,MAAM,+BAA+B,CAAC;AAC/I,OAAO,EAAE,uBAAuB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,0BAA0B,EAAE,4BAA4B,EAAE,MAAM,kCAAkC,CAAC;;
|
|
1
|
+
{"version":3,"file":"chat-conversations-resource.component.d.ts","sourceRoot":"","sources":["../../../src/lib/resource-wrappers/chat-conversations-resource.component.ts"],"names":[],"mappings":"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"}
|