mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-6150] Add category selector dialog (#9423)
* [ACS-6150] add category selector dialog * [ACS-6150] fix import * [ACS-6150] cr fix * [ACS-6150] cr fix * [ACS-6150] change describe name * [ACS-6150] linting * [ACS-6150] style fix * [ACS-6150] align styles
This commit is contained in:
committed by
GitHub
parent
00404a3807
commit
c642d0e5c2
@@ -44,7 +44,7 @@
|
||||
{{ existingCategoriesMsg | translate }}
|
||||
</p>
|
||||
<mat-list
|
||||
[disabled]="isCRUDMode"
|
||||
[disabled]="isCRUDMode || !multiSelect && categories.length > 0"
|
||||
class="adf-categories-management-list">
|
||||
<mat-list-item
|
||||
*ngFor="let category of existingCategories"
|
||||
|
@@ -43,6 +43,8 @@
|
||||
overflow-wrap: anywhere;
|
||||
padding: 5px 0;
|
||||
font-size: 14px;
|
||||
background-color: inherit;
|
||||
color: inherit;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
|
@@ -383,6 +383,14 @@ describe('CategoriesManagementComponent', () => {
|
||||
discardPeriodicTasks();
|
||||
flush();
|
||||
}));
|
||||
|
||||
it ('should disable existing categories list if category already selected and multiSelect is false', fakeAsync(() => {
|
||||
component.multiSelect = false;
|
||||
fixture.detectChanges();
|
||||
typeCategory('test');
|
||||
|
||||
expect(getSelectionList().disabled).toBeTrue();
|
||||
}));
|
||||
});
|
||||
|
||||
describe('CRUD mode', () => {
|
||||
|
@@ -116,6 +116,10 @@ export class CategoriesManagementComponent implements OnInit, OnDestroy {
|
||||
@Input()
|
||||
parentId: string;
|
||||
|
||||
/** Toggles multiselect mode */
|
||||
@Input()
|
||||
multiSelect = true;
|
||||
|
||||
/** Emits when state of upper categories list changes */
|
||||
@Output()
|
||||
categoriesChange = new EventEmitter<Category[]>();
|
||||
@@ -159,13 +163,15 @@ export class CategoriesManagementComponent implements OnInit, OnDestroy {
|
||||
if (!this.isCRUDMode) {
|
||||
this._categoryNameControl.removeValidators(Validators.required);
|
||||
this.categories.forEach((category) => this.initialCategories.push(category));
|
||||
this.classifiableChanged
|
||||
.pipe(takeUntil(this.onDestroy$))
|
||||
.subscribe(() => {
|
||||
this.categories = [];
|
||||
this.categoryNameControlVisible = false;
|
||||
this.categoryNameControlVisibleChange.emit(false);
|
||||
});
|
||||
if (this.classifiableChanged) {
|
||||
this.classifiableChanged
|
||||
.pipe(takeUntil(this.onDestroy$))
|
||||
.subscribe(() => {
|
||||
this.categories = [];
|
||||
this.categoryNameControlVisible = false;
|
||||
this.categoryNameControlVisibleChange.emit(false);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -0,0 +1,28 @@
|
||||
<h1 mat-dialog-title>
|
||||
{{ 'CATEGORIES_MANAGEMENT.SELECT_EXISTING_CATEGORY' | translate }}
|
||||
</h1>
|
||||
|
||||
<mat-dialog-content class="adf-dialog-content">
|
||||
<adf-categories-management
|
||||
(categoriesChange)="categories = $event"
|
||||
[categoryNameControlVisible]="true"
|
||||
[managementMode]="categoriesManagementMode"
|
||||
[multiSelect]="multiSelect">
|
||||
</adf-categories-management>
|
||||
</mat-dialog-content>
|
||||
<mat-dialog-actions align="end">
|
||||
<button
|
||||
data-automation-id="category-selector-dialog-cancel-button"
|
||||
mat-button
|
||||
mat-dialog-close>
|
||||
{{ 'NODE_SELECTOR.CANCEL' | translate }}
|
||||
</button>
|
||||
<button
|
||||
(click)="selectCategories()"
|
||||
[disabled]="!categories.length"
|
||||
color="primary"
|
||||
data-automation-id="category-selector-dialog-select-button"
|
||||
mat-button>
|
||||
{{ 'NODE_SELECTOR.CHOOSE' | translate }}
|
||||
</button>
|
||||
</mat-dialog-actions>
|
@@ -0,0 +1,5 @@
|
||||
adf-category-selector-dialog {
|
||||
.adf-dialog-content {
|
||||
height: 400px;
|
||||
}
|
||||
}
|
@@ -0,0 +1,98 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
|
||||
*
|
||||
* 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 { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { CategorySelectorDialogComponent, CategorySelectorDialogOptions } from './category-selector.dialog';
|
||||
import { Subject } from 'rxjs';
|
||||
import { Category } from '@alfresco/js-api';
|
||||
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
|
||||
import { CoreTestingModule } from '@alfresco/adf-core';
|
||||
import { By } from '@angular/platform-browser';
|
||||
|
||||
describe('Category selector dialog component', () => {
|
||||
let fixture: ComponentFixture<CategorySelectorDialogComponent>;
|
||||
let component: CategorySelectorDialogComponent;
|
||||
let selectButton: HTMLButtonElement;
|
||||
|
||||
const dialogRef = {
|
||||
close: jasmine.createSpy('close')
|
||||
};
|
||||
|
||||
const options: CategorySelectorDialogOptions = {
|
||||
select: new Subject<Category[]>()
|
||||
};
|
||||
|
||||
const categories: Category[] = [{id: 'id1', name: 'cat1'}, {id: 'id2', name: 'cat3'}];
|
||||
|
||||
const setCategories = () => {
|
||||
component.categories = categories;
|
||||
fixture.detectChanges();
|
||||
};
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [CoreTestingModule],
|
||||
providers: [
|
||||
{ provide: MatDialogRef, useValue: dialogRef },
|
||||
{ provide: MAT_DIALOG_DATA, useValue: options }
|
||||
]
|
||||
});
|
||||
dialogRef.close.calls.reset();
|
||||
fixture = TestBed.createComponent(CategorySelectorDialogComponent);
|
||||
component = fixture.componentInstance;
|
||||
|
||||
fixture.detectChanges();
|
||||
|
||||
selectButton = fixture.debugElement.query(By.css(`[data-automation-id="category-selector-dialog-select-button"]`)).nativeElement;
|
||||
});
|
||||
|
||||
it('should set params if they are provided as dialog options', () => {
|
||||
options.multiSelect = true;
|
||||
component.ngOnInit();
|
||||
|
||||
expect(component.multiSelect).toBeTrue();
|
||||
});
|
||||
|
||||
it('should close dialog on cancel button click', () => {
|
||||
fixture.debugElement.query(By.css(`[data-automation-id="category-selector-dialog-cancel-button"]`)).nativeElement.click();
|
||||
expect(dialogRef.close).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should close dialog if category is selected and Select button was clicked', () => {
|
||||
selectButton.click();
|
||||
expect(dialogRef.close).not.toHaveBeenCalled();
|
||||
|
||||
setCategories();
|
||||
selectButton.click();
|
||||
|
||||
expect(dialogRef.close).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should provide selected categories as observable on Select click', () => {
|
||||
spyOn(options.select, 'next');
|
||||
setCategories();
|
||||
selectButton.click();
|
||||
|
||||
expect(options.select.next).toHaveBeenCalledWith(categories);
|
||||
});
|
||||
|
||||
it('should disable select button if no categories were selected', () => {
|
||||
expect(selectButton.disabled).toBeTruthy();
|
||||
setCategories();
|
||||
expect(selectButton.disabled).toBeFalse();
|
||||
});
|
||||
});
|
@@ -0,0 +1,54 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
|
||||
*
|
||||
* 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 { Subject } from 'rxjs';
|
||||
import { Category } from '@alfresco/js-api';
|
||||
import { CategoriesManagementMode } from '../category';
|
||||
|
||||
export interface CategorySelectorDialogOptions {
|
||||
select: Subject<Category[]>;
|
||||
multiSelect?: boolean;
|
||||
}
|
||||
|
||||
@Component({
|
||||
selector: 'adf-category-selector-dialog',
|
||||
templateUrl: './category-selector.dialog.html',
|
||||
styleUrls: ['./category-selector.dialog.scss'],
|
||||
encapsulation: ViewEncapsulation.None
|
||||
})
|
||||
export class CategorySelectorDialogComponent implements OnInit {
|
||||
categories: Category[] = [];
|
||||
categoriesManagementMode = CategoriesManagementMode.ASSIGN;
|
||||
multiSelect = true;
|
||||
|
||||
constructor(
|
||||
private dialog: MatDialogRef<CategorySelectorDialogComponent, boolean>,
|
||||
@Inject(MAT_DIALOG_DATA) private options: CategorySelectorDialogOptions
|
||||
) {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
this.multiSelect = this.options.multiSelect ?? true;
|
||||
}
|
||||
|
||||
selectCategories() {
|
||||
this.options.select.next(this.categories);
|
||||
this.dialog.close(true);
|
||||
}
|
||||
}
|
@@ -28,6 +28,8 @@ import { MatDatetimepickerModule } from '@mat-datetimepicker/core';
|
||||
import { LibraryDialogComponent } from './library/library.dialog';
|
||||
import { ContentDirectiveModule } from '../directives';
|
||||
import { DownloadZipDialogModule } from './download-zip/download-zip.dialog.module';
|
||||
import { CategorySelectorDialogComponent } from './category-selector.dialog';
|
||||
import { CategoriesModule } from '../category';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
@@ -38,19 +40,22 @@ import { DownloadZipDialogModule } from './download-zip/download-zip.dialog.modu
|
||||
ReactiveFormsModule,
|
||||
MatDatetimepickerModule,
|
||||
ContentDirectiveModule,
|
||||
DownloadZipDialogModule
|
||||
DownloadZipDialogModule,
|
||||
CategoriesModule
|
||||
],
|
||||
declarations: [
|
||||
FolderDialogComponent,
|
||||
NodeLockDialogComponent,
|
||||
ConfirmDialogComponent,
|
||||
LibraryDialogComponent
|
||||
LibraryDialogComponent,
|
||||
CategorySelectorDialogComponent
|
||||
],
|
||||
exports: [
|
||||
FolderDialogComponent,
|
||||
NodeLockDialogComponent,
|
||||
ConfirmDialogComponent,
|
||||
LibraryDialogComponent
|
||||
LibraryDialogComponent,
|
||||
CategorySelectorDialogComponent
|
||||
]
|
||||
})
|
||||
export class DialogModule {}
|
||||
|
@@ -18,6 +18,7 @@
|
||||
export * from './folder.dialog';
|
||||
export * from './node-lock.dialog';
|
||||
export * from './confirm.dialog';
|
||||
export * from './category-selector.dialog';
|
||||
|
||||
export * from './dialog.module';
|
||||
export * from './library/library.dialog';
|
||||
|
@@ -93,6 +93,8 @@ adf-tags-creator {
|
||||
font-size: 14px;
|
||||
height: auto;
|
||||
width: unset;
|
||||
background-color: inherit;
|
||||
color: inherit;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
|
Reference in New Issue
Block a user