cloud-ide-element 1.0.104 → 1.0.105
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.
|
@@ -2983,7 +2983,7 @@ class CideEleFileManagerService {
|
|
|
2983
2983
|
* Trigger floating uploader to show
|
|
2984
2984
|
*/
|
|
2985
2985
|
triggerFloatingUploaderShow() {
|
|
2986
|
-
console.log('🎬 [FileManagerService] Triggering floating uploader to show');
|
|
2986
|
+
console.log('🎬 [FileManagerService] Triggering floating uploader to show groupId');
|
|
2987
2987
|
this._showFloatingUploader.set(true);
|
|
2988
2988
|
// Reset after a short delay to allow components to react
|
|
2989
2989
|
setTimeout(() => {
|
|
@@ -3344,6 +3344,7 @@ class CideEleFloatingFileUploaderComponent {
|
|
|
3344
3344
|
console.log('🔍 [FloatingFileUploader] No group ID set, returning empty array');
|
|
3345
3345
|
return [];
|
|
3346
3346
|
}
|
|
3347
|
+
console.log("groupId groupId", groupId);
|
|
3347
3348
|
const files = this.fileManagerService.getAllFilesForGroup(groupId);
|
|
3348
3349
|
const fetchedFiles = this.fileManagerService.getFetchedFilesByGroupId(groupId);
|
|
3349
3350
|
const activeUploads = Array.from(this.fileManagerService.activeUploads().entries()).filter(([_, upload]) => upload.groupId === groupId);
|
|
@@ -4686,12 +4687,13 @@ class CideEleFileInputComponent {
|
|
|
4686
4687
|
}
|
|
4687
4688
|
const groupId = this.groupId();
|
|
4688
4689
|
if (groupId) {
|
|
4690
|
+
console.log("groupId groupId", groupId);
|
|
4689
4691
|
// Fetch files for the group and trigger floating uploader to show
|
|
4690
4692
|
this.fileManagerService.fetchAndStoreFilesByGroupId(groupId)
|
|
4691
4693
|
.pipe(takeUntilDestroyed(this.destroyRef))
|
|
4692
4694
|
.subscribe({
|
|
4693
4695
|
next: (files) => {
|
|
4694
|
-
console.log('✅ [FileInput] Files fetched for floating uploader:', files.length);
|
|
4696
|
+
console.log('✅ [FileInput] Files fetched for floating uploader: groupId', files.length);
|
|
4695
4697
|
// Trigger the floating uploader to show via service
|
|
4696
4698
|
this.fileManagerService.triggerFloatingUploaderShow();
|
|
4697
4699
|
},
|