-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MNT-24575] Added dialog to display folder information #4282
Open
swapnil-verma-gl
wants to merge
10
commits into
develop
Choose a base branch
from
dev-mnt-24575-folder-info-dialog
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
e5ea37c
[MNT-24575] Created folder information dialog
swapnil-verma-gl 4b99eed
[MNT-24575] Added unit tests
swapnil-verma-gl b3a0cf5
[MNT-24575] Integrated API calls into folder information
swapnil-verma-gl 206384c
[MNT-24575] Added models
swapnil-verma-gl ef304eb
[MNT-24575] Added delay to API retry call. Added unit test for API re…
swapnil-verma-gl 6dd14b4
[MNT-24575] Folder information is no longer shown in trashcan
swapnil-verma-gl 8877fad
[MNT-24575] Folder information is no longer shown in trashcan
swapnil-verma-gl 40d3eee
[MNT-24575] Added return type to function. Consolidated different pro…
swapnil-verma-gl f26b34f
[MNT-24575] Addressed Code review comments
swapnil-verma-gl bb7981b
[MNT-24575] Addressed code review findings. Added error handling and …
swapnil-verma-gl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
projects/aca-content/src/lib/dialogs/folder-details/folder-information.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<div class="aca-folder-info-header"> | ||
<img alt="{{ 'APP.FOLDER_INFO.ICON' | translate }}" ngSrc="{{ folderDetails.icon }}" width="24" height="24"> | ||
<div class="aca-folder-title" data-automation-id="folder-info-name">{{ folderDetails.name }}</div> | ||
</div> | ||
<mat-divider/> | ||
<div class="aca-folder-info-body"> | ||
<div class="aca-folder-info-item"> | ||
<div class="aca-folder-info-item-label">{{ 'APP.FOLDER_INFO.SIZE' | translate }}</div> | ||
<div class="aca-folder-info-item-value" | ||
data-automation-id="folder-info-size">{{ folderDetails.size }}</div> | ||
</div> | ||
<mat-divider/> | ||
<div class="aca-folder-info-item"> | ||
<div class="aca-folder-info-item-label">{{ 'APP.FOLDER_INFO.LOCATION' | translate }}</div> | ||
<div class="aca-folder-info-item-value" | ||
data-automation-id="folder-info-location">{{ folderDetails.location }}</div> | ||
</div> | ||
<mat-divider/> | ||
<div class="aca-folder-info-item"> | ||
<div class="aca-folder-info-item-label">{{ 'APP.FOLDER_INFO.CREATED' | translate }}</div> | ||
<div class="aca-folder-info-item-value" | ||
data-automation-id="folder-info-creation-date" | ||
[title]="folderDetails.created | adfLocalizedDate">{{ folderDetails.created | adfTimeAgo }}</div> | ||
</div> | ||
<mat-divider/> | ||
<div class="aca-folder-info-item"> | ||
<div class="aca-folder-info-item-label">{{ 'APP.FOLDER_INFO.MODIFIED' | translate }}</div> | ||
<div class="aca-folder-info-item-value" | ||
data-automation-id="folder-info-modify-date" | ||
[title]="folderDetails.modified | adfLocalizedDate">{{ folderDetails.modified | adfTimeAgo }}</div> | ||
</div> | ||
</div> |
43 changes: 43 additions & 0 deletions
43
projects/aca-content/src/lib/dialogs/folder-details/folder-information.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.app-folder-info { | ||
display: flex; | ||
flex-direction: column; | ||
border: 1px solid var(--theme-border-color); | ||
border-radius: 12px; | ||
|
||
.aca-folder-info { | ||
&-header { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
column-gap: 10px; | ||
padding: 20px; | ||
|
||
.aca-folder-title { | ||
flex: 1; | ||
font-weight: bold; | ||
} | ||
} | ||
|
||
&-body { | ||
display: flex; | ||
flex-direction: column; | ||
flex: 1; | ||
padding: 10px 20px; | ||
|
||
.aca-folder-info-item { | ||
display: flex; | ||
flex-direction: row; | ||
padding: 20px 0; | ||
|
||
&-label { | ||
width: 30%; | ||
color: var(--theme-text-color); | ||
} | ||
|
||
&-value { | ||
width: 70%; | ||
} | ||
} | ||
} | ||
} | ||
} |
117 changes: 117 additions & 0 deletions
117
projects/aca-content/src/lib/dialogs/folder-details/folder-information.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
/*! | ||
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved. | ||
* | ||
* Alfresco Example Content Application | ||
* | ||
* This file is part of the Alfresco Example Content Application. | ||
* If the software was purchased under a paid Alfresco license, the terms of | ||
* the paid license agreement will prevail. Otherwise, the software is | ||
* provided under the following open source license terms: | ||
* | ||
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The Alfresco Example Content Application is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import { ComponentFixture, fakeAsync, TestBed, tick } from '@angular/core/testing'; | ||
import { FolderInformationComponent } from './folder-information.component'; | ||
import { DIALOG_COMPONENT_DATA, RedirectAuthService } from '@alfresco/adf-core'; | ||
import { ContentService, NodesApiService } from '@alfresco/adf-content-services'; | ||
import { By } from '@angular/platform-browser'; | ||
import { EMPTY, Observable, of, Subject } from 'rxjs'; | ||
import { LibTestingModule } from '@alfresco/aca-shared'; | ||
import { JobIdBodyEntry, SizeDetails, SizeDetailsEntry, Node } from '@alfresco/js-api'; | ||
|
||
describe('FolderInformationComponent', () => { | ||
let fixture: ComponentFixture<FolderInformationComponent>; | ||
let nodeService: NodesApiService; | ||
let initiateFolderSizeCalculationSpy: jasmine.Spy<(nodeId: string) => Observable<JobIdBodyEntry>>; | ||
let getFolderSizeInfoSpy: jasmine.Spy<(nodeId: string, jobId: string) => Observable<SizeDetailsEntry>>; | ||
|
||
const mockSub = new Subject<JobIdBodyEntry>(); | ||
const dialogData = { | ||
name: 'mock-folder', | ||
id: 'mock-folder-id', | ||
path: { | ||
name: 'mock-folder-path' | ||
}, | ||
createdAt: new Date(2024, 1, 1, 11, 11), | ||
modifiedAt: new Date(2024, 2, 2, 22, 22) | ||
} as Node; | ||
const mockSizeDetailsEntry: SizeDetailsEntry = { | ||
entry: { | ||
id: 'mock-id', | ||
sizeInBytes: '1', | ||
calculatedAt: 'mock-date', | ||
numberOfFiles: 1, | ||
status: SizeDetails.StatusEnum.COMPLETE, | ||
jobId: 'mock-job-id' | ||
} | ||
}; | ||
AleksanderSklorz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
const getValueFromElement = (id: string): string => fixture.debugElement.query(By.css(`[data-automation-id="${id}"]`)).nativeElement.textContent; | ||
swapnil-verma-gl marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
imports: [FolderInformationComponent, LibTestingModule], | ||
providers: [ | ||
{ provide: DIALOG_COMPONENT_DATA, useValue: dialogData }, | ||
{ provide: RedirectAuthService, useValue: { onLogin: EMPTY, onTokenReceived: EMPTY } } | ||
] | ||
}); | ||
fixture = TestBed.createComponent(FolderInformationComponent); | ||
nodeService = TestBed.inject(NodesApiService); | ||
spyOn(TestBed.inject(ContentService), 'getNodeIcon').and.returnValue('./assets/images/ft_ic_folder.svg'); | ||
initiateFolderSizeCalculationSpy = spyOn(nodeService, 'initiateFolderSizeCalculation').and.returnValue(mockSub.asObservable()); | ||
getFolderSizeInfoSpy = spyOn(nodeService, 'getFolderSizeInfo').and.returnValue(EMPTY); | ||
}); | ||
|
||
it('should render all information in init', () => { | ||
fixture.detectChanges(); | ||
expect(getValueFromElement('folder-info-name')).toBe('mock-folder'); | ||
expect(getValueFromElement('folder-info-size')).toBe('APP.FOLDER_INFO.CALCULATING'); | ||
expect(getValueFromElement('folder-info-location')).toBe('mock-folder-path'); | ||
expect(getValueFromElement('folder-info-creation-date')).toBe('01/02/2024 11:11'); | ||
expect(getValueFromElement('folder-info-modify-date')).toBe('02/03/2024 22:22'); | ||
}); | ||
|
||
it('should make API call on init to start folder size calculation', () => { | ||
fixture.detectChanges(); | ||
expect(initiateFolderSizeCalculationSpy).toHaveBeenCalledWith('mock-folder-id'); | ||
}); | ||
|
||
it('should fetch folder size only when the initial folder size calculation request is completed', () => { | ||
fixture.detectChanges(); | ||
expect(initiateFolderSizeCalculationSpy).toHaveBeenCalledWith('mock-folder-id'); | ||
expect(getFolderSizeInfoSpy).not.toHaveBeenCalled(); | ||
mockSub.next({ entry: { jobId: 'mock-job-id' } }); | ||
expect(getFolderSizeInfoSpy).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should make repeated calls to get folder size info, if the response returned from the API is IN_PROGRESS', fakeAsync(() => { | ||
mockSizeDetailsEntry.entry.status = SizeDetails.StatusEnum.IN_PROGRESS; | ||
getFolderSizeInfoSpy.and.returnValue(of(mockSizeDetailsEntry)); | ||
fixture.detectChanges(); | ||
expect(getFolderSizeInfoSpy).not.toHaveBeenCalled(); | ||
mockSub.next({ entry: { jobId: 'mock-job-id' } }); | ||
expect(getFolderSizeInfoSpy).toHaveBeenCalledTimes(1); | ||
tick(5000); | ||
expect(getFolderSizeInfoSpy).toHaveBeenCalledTimes(2); | ||
tick(5000); | ||
expect(getFolderSizeInfoSpy).toHaveBeenCalledTimes(3); | ||
mockSizeDetailsEntry.entry.status = SizeDetails.StatusEnum.COMPLETE; | ||
tick(5000); | ||
expect(getFolderSizeInfoSpy).toHaveBeenCalledTimes(4); | ||
tick(5000); | ||
expect(getFolderSizeInfoSpy).not.toHaveBeenCalledTimes(5); | ||
})); | ||
}); |
110 changes: 110 additions & 0 deletions
110
projects/aca-content/src/lib/dialogs/folder-details/folder-information.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
/*! | ||
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved. | ||
* | ||
* Alfresco Example Content Application | ||
* | ||
* This file is part of the Alfresco Example Content Application. | ||
* If the software was purchased under a paid Alfresco license, the terms of | ||
* the paid license agreement will prevail. Otherwise, the software is | ||
* provided under the following open source license terms: | ||
* | ||
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The Alfresco Example Content Application is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import { Component, DestroyRef, inject, OnInit, ViewEncapsulation } from '@angular/core'; | ||
import { CommonModule, NgOptimizedImage } from '@angular/common'; | ||
import { DIALOG_COMPONENT_DATA, LocalizedDatePipe, TimeAgoPipe } from '@alfresco/adf-core'; | ||
import { JobIdBodyEntry, Node, SizeDetails } from '@alfresco/js-api'; | ||
import { MatDividerModule } from '@angular/material/divider'; | ||
import { TranslateModule, TranslateService } from '@ngx-translate/core'; | ||
import { ContentService, NodesApiService } from '@alfresco/adf-content-services'; | ||
import { concatMap, expand, first, switchMap } from 'rxjs/operators'; | ||
import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; | ||
import { EMPTY, timer } from 'rxjs'; | ||
|
||
const MEMORY_UNIT_LIST = ['bytes', 'KB', 'MB', 'GB', 'TB']; | ||
|
||
class FolderDetails { | ||
name: string; | ||
size: string; | ||
location: string; | ||
created: Date; | ||
modified: Date; | ||
icon: string; | ||
} | ||
|
||
@Component({ | ||
selector: 'app-folder-info', | ||
standalone: true, | ||
imports: [CommonModule, MatDividerModule, TimeAgoPipe, TranslateModule, LocalizedDatePipe, NgOptimizedImage], | ||
templateUrl: './folder-information.component.html', | ||
styleUrls: ['./folder-information.component.scss'], | ||
encapsulation: ViewEncapsulation.None, | ||
host: { class: 'app-folder-info' } | ||
}) | ||
export class FolderInformationComponent implements OnInit { | ||
readonly contentService = inject(ContentService); | ||
readonly nodesService = inject(NodesApiService); | ||
readonly translateService = inject(TranslateService); | ||
|
||
private readonly destroyRef = inject(DestroyRef); | ||
|
||
data: Node = inject(DIALOG_COMPONENT_DATA); | ||
folderDetails: FolderDetails = new FolderDetails(); | ||
AleksanderSklorz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
ngOnInit() { | ||
this.folderDetails.name = this.data.name; | ||
this.folderDetails.location = this.data.path.name; | ||
this.folderDetails.created = this.data.createdAt; | ||
this.folderDetails.modified = this.data.modifiedAt; | ||
this.folderDetails.icon = this.contentService.getNodeIcon(this.data); | ||
this.folderDetails.size = this.translateService.instant('APP.FOLDER_INFO.CALCULATING'); | ||
|
||
this.nodesService | ||
AleksanderSklorz marked this conversation as resolved.
Show resolved
Hide resolved
AleksanderSklorz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
.initiateFolderSizeCalculation(this.data.id) | ||
.pipe( | ||
first(), | ||
switchMap((jobIdEntry: JobIdBodyEntry) => { | ||
AleksanderSklorz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return this.nodesService.getFolderSizeInfo(this.data.id, jobIdEntry.entry.jobId).pipe( | ||
expand((result) => | ||
result.entry.status === SizeDetails.StatusEnum.IN_PROGRESS | ||
? timer(5000).pipe(concatMap(() => this.nodesService.getFolderSizeInfo(this.data.id, jobIdEntry.entry.jobId))) | ||
: EMPTY | ||
), | ||
takeUntilDestroyed(this.destroyRef) | ||
AleksanderSklorz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
); | ||
}) | ||
) | ||
.subscribe((folderInfo) => { | ||
let size = parseFloat(folderInfo.entry.sizeInBytes); | ||
let unitIndex = 0; | ||
let isMoreThanBytes = false; | ||
while (size > 1000) { | ||
isMoreThanBytes = true; | ||
size = size / 1000; | ||
unitIndex++; | ||
} | ||
const params = { | ||
sizeInBytes: parseFloat(folderInfo.entry.sizeInBytes).toLocaleString('en'), | ||
sizeInLargeUnit: size.toFixed(2), | ||
unit: MEMORY_UNIT_LIST[unitIndex], | ||
count: folderInfo.entry.numberOfFiles | ||
}; | ||
this.folderDetails.size = this.translateService.instant( | ||
isMoreThanBytes ? 'APP.FOLDER_INFO.CALCULATED_SIZE_LARGE' : 'APP.FOLDER_INFO.CALCULATED_SIZE_NORMAL', | ||
params | ||
); | ||
}); | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we use adf-icon for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to use adf-icon, but internally, its using mat-icons. Because of this, the only way for adf-icon to pickup custom svg icons from our assets folders, is by defining it in our app.extensions.json file. The other, more simpler option, if we have to use adf-icons, is to use mat-icons folder icon. However, using that would make this have a slight deviation from the figma design document. Do we want to go with
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm to be honest I would start by asking the UX team if the material icon would be fine in this case, if they agree the issue is solved, if not I would go with custom icon and extensions.json modifications