mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ACS-3888] Correct role for new version dialog * [ACS-3888] Correct role for move/copy dialog * [ACS-3888] Unit test fix
193 lines
6.1 KiB
TypeScript
193 lines
6.1 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { Component, Inject, OnInit, ViewEncapsulation } from '@angular/core';
|
|
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
|
|
import { TranslationService, NotificationService, AllowableOperationsEnum, ContentService, UploadService } from '@alfresco/adf-core';
|
|
import { Node } from '@alfresco/js-api';
|
|
|
|
import { ContentNodeSelectorComponentData } from './content-node-selector.component-data.interface';
|
|
import { NodeEntryEvent } from '../document-list/components/node.event';
|
|
import { NodeAction } from '../document-list/models/node-action.enum';
|
|
import { OverlayContainer } from '@angular/cdk/overlay';
|
|
|
|
@Component({
|
|
selector: 'adf-content-node-selector',
|
|
templateUrl: './content-node-selector.component.html',
|
|
styleUrls: ['./content-node-selector.component.scss'],
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class ContentNodeSelectorComponent implements OnInit {
|
|
title: string;
|
|
action: NodeAction;
|
|
buttonActionName: string;
|
|
chosenNode: Node[];
|
|
currentDirectoryId: string;
|
|
showingSearch = false;
|
|
hasAllowableOperations = false;
|
|
isLoading = true;
|
|
selectedTabIndex: number = 0;
|
|
uploadStarted: boolean = false;
|
|
|
|
emptyFolderImageUrl: string = './assets/images/empty_doc_lib.svg';
|
|
breadcrumbFolderNode: Node;
|
|
|
|
constructor(private translation: TranslationService,
|
|
private contentService: ContentService,
|
|
private notificationService: NotificationService,
|
|
private uploadService: UploadService,
|
|
private dialog: MatDialogRef<ContentNodeSelectorComponent>,
|
|
private overlayContainer: OverlayContainer,
|
|
@Inject(MAT_DIALOG_DATA) public data: ContentNodeSelectorComponentData) {
|
|
this.action = data.actionName ?? NodeAction.CHOOSE;
|
|
this.buttonActionName = `NODE_SELECTOR.${this.action}`;
|
|
this.title = data.title;
|
|
this.currentDirectoryId = data.currentFolderId;
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.dialog.keydownEvents().subscribe(event => {
|
|
// Esc
|
|
if (event.keyCode === 27) {
|
|
event.preventDefault();
|
|
event.stopImmediatePropagation();
|
|
this.close();
|
|
}
|
|
});
|
|
|
|
this.dialog.backdropClick().subscribe(() => {
|
|
this.close();
|
|
});
|
|
|
|
this.dialog.afterOpened().subscribe(() => {
|
|
this.overlayContainer.getContainerElement().setAttribute('role', 'main');
|
|
});
|
|
|
|
this.uploadService.fileUploadStarting.subscribe(() => {
|
|
this.uploadStarted = true;
|
|
});
|
|
}
|
|
|
|
close() {
|
|
this.dialog.close();
|
|
this.overlayContainer.getContainerElement().setAttribute('role', 'region');
|
|
}
|
|
|
|
onSelect(nodeList: Node[]) {
|
|
this.chosenNode = nodeList;
|
|
}
|
|
|
|
onSiteChange(siteTitle: string) {
|
|
this.updateTitle(siteTitle);
|
|
}
|
|
|
|
onNavigationChange(pathElement: NodeEntryEvent) {
|
|
this.currentDirectoryId = pathElement.value.id;
|
|
this.isLoading = true;
|
|
}
|
|
|
|
onClick(): void {
|
|
this.data.select.next(this.chosenNode);
|
|
this.close();
|
|
}
|
|
|
|
updateTitle(siteTitle: string) {
|
|
if (this.action === NodeAction.CHOOSE && siteTitle) {
|
|
this.title = this.getTitleTranslation(this.action, siteTitle);
|
|
}
|
|
}
|
|
|
|
getTitleTranslation(action: NodeAction, name: string): string {
|
|
return this.translation.instant(`NODE_SELECTOR.${action}_ITEM`, { name: this.translation.instant(name) });
|
|
}
|
|
|
|
getSelectedCount(): number {
|
|
return this.chosenNode?.length || 0;
|
|
}
|
|
|
|
isCounterVisible(): boolean {
|
|
return this.action === NodeAction.ATTACH || this.action === NodeAction.CHOOSE;
|
|
}
|
|
|
|
isMultipleSelection(): boolean {
|
|
return this.data.selectionMode === 'multiple';
|
|
}
|
|
|
|
onError(error) {
|
|
this.notificationService.showError(error);
|
|
}
|
|
|
|
isChooseButtonDisabled(): boolean {
|
|
return this.uploadService.isUploading() || !this.hasNodeSelected();
|
|
}
|
|
|
|
hasNodeSelected(): boolean {
|
|
return this.chosenNode?.length > 0;
|
|
}
|
|
|
|
onShowingSearch(value: boolean) {
|
|
this.showingSearch = value;
|
|
}
|
|
|
|
onCurrentFolder(currentFolder: Node) {
|
|
this.hasAllowableOperations = this.contentService.hasAllowableOperations(currentFolder, AllowableOperationsEnum.CREATE);
|
|
this.breadcrumbFolderNode = currentFolder;
|
|
}
|
|
|
|
isNotAllowedToUpload() {
|
|
return this.showingSearch || !this.hasAllowableOperations;
|
|
}
|
|
|
|
onFolderLoaded() {
|
|
this.isLoading = false;
|
|
}
|
|
|
|
onTabSelectionChange(tabIndex: number) {
|
|
this.selectedTabIndex = tabIndex;
|
|
}
|
|
|
|
isFileServerTabSelected(): boolean {
|
|
return this.selectedTabIndex === 0;
|
|
}
|
|
|
|
isLocalUploadTabSelected(): boolean {
|
|
return this.selectedTabIndex === 1;
|
|
}
|
|
|
|
isUploadEnabled(): boolean {
|
|
return this.canPerformLocalUpload() && this.isLocalUploadTabSelected();
|
|
}
|
|
|
|
canPerformLocalUpload(): boolean {
|
|
return this.data?.showLocalUploadButton;
|
|
}
|
|
|
|
getWarningMessage(): string {
|
|
return this.showingSearch ? 'NODE_SELECTOR.UPLOAD_BUTTON_SEARCH_WARNING_MESSAGE' :
|
|
(this.hasNoPermissionToUpload() ? 'NODE_SELECTOR.UPLOAD_BUTTON_PERMISSION_WARNING_MESSAGE' : '');
|
|
}
|
|
|
|
hasNoPermissionToUpload(): boolean {
|
|
return (!this.hasAllowableOperations && !this.showingSearch) && !this.isLoading;
|
|
}
|
|
|
|
hasUploadError(): boolean {
|
|
return this.showingSearch || this.hasNoPermissionToUpload();
|
|
}
|
|
|
|
}
|