mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
[ADF-2103] Info Drawer - Provide a way to select a different tab (#2788)
* Provide a way to select a different tab * Fix the default value * Override the value through the html
This commit is contained in:
parent
7653e5784d
commit
14c81ca978
@ -29,6 +29,7 @@ Displays a sidebar-style information panel with tabs.
|
|||||||
| Name | Type | Default | Description |
|
| Name | Type | Default | Description |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| title | string | null | The title of the info drawer |
|
| title | string | null | The title of the info drawer |
|
||||||
|
| selectedIndex | number | 0 | The selected index tab |
|
||||||
| currentTab | any | null | The currently active tab |
|
| currentTab | any | null | The currently active tab |
|
||||||
|
|
||||||
## Details
|
## Details
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<ng-container info-drawer-content *ngIf="showTabLayout(); then tabLayout else singleLayout"></ng-container>
|
<ng-container info-drawer-content *ngIf="showTabLayout(); then tabLayout else singleLayout"></ng-container>
|
||||||
|
|
||||||
<ng-template #tabLayout>
|
<ng-template #tabLayout>
|
||||||
<mat-tab-group class="adf-info-drawer-tabs" (selectedTabChange)="onTabChange($event)">
|
<mat-tab-group [(selectedIndex)]="selectedIndex" class="adf-info-drawer-tabs" (selectedTabChange)="onTabChange($event)">
|
||||||
<ng-container *ngFor="let contentBlock of contentBlocks">
|
<ng-container *ngFor="let contentBlock of contentBlocks">
|
||||||
<mat-tab [label]="contentBlock.label" class="adf-info-drawer-tab">
|
<mat-tab [label]="contentBlock.label" class="adf-info-drawer-tab">
|
||||||
<ng-container *ngTemplateOutlet="contentBlock.content"></ng-container>
|
<ng-container *ngTemplateOutlet="contentBlock.content"></ng-container>
|
||||||
@ -19,4 +19,4 @@
|
|||||||
<ng-template #singleLayout>
|
<ng-template #singleLayout>
|
||||||
<ng-content select="[info-drawer-content]"></ng-content>
|
<ng-content select="[info-drawer-content]"></ng-content>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</adf-info-drawer-layout>
|
</adf-info-drawer-layout>
|
||||||
|
@ -22,6 +22,7 @@ import { By } from '@angular/platform-browser';
|
|||||||
import { MaterialModule } from '../material.module';
|
import { MaterialModule } from '../material.module';
|
||||||
import { InfoDrawerLayoutComponent } from './info-drawer-layout.component';
|
import { InfoDrawerLayoutComponent } from './info-drawer-layout.component';
|
||||||
import { InfoDrawerComponent } from './info-drawer.component';
|
import { InfoDrawerComponent } from './info-drawer.component';
|
||||||
|
import { InfoDrawerTabComponent } from './info-drawer.component';
|
||||||
|
|
||||||
describe('InfoDrawerComponent', () => {
|
describe('InfoDrawerComponent', () => {
|
||||||
let element: HTMLElement;
|
let element: HTMLElement;
|
||||||
@ -73,21 +74,28 @@ describe('InfoDrawerComponent', () => {
|
|||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
template: `
|
template: `
|
||||||
<adf-info-drawer>
|
<adf-info-drawer [selectedIndex]="tabIndex">
|
||||||
<div info-drawer-title>Fake Title Custom</div>
|
<div info-drawer-title>Fake Title Custom</div>
|
||||||
|
<adf-info-drawer-tab label="Tab1">
|
||||||
|
</adf-info-drawer-tab>
|
||||||
|
<adf-info-drawer-tab label="Tab2">
|
||||||
|
</adf-info-drawer-tab>
|
||||||
</adf-info-drawer>
|
</adf-info-drawer>
|
||||||
`
|
`
|
||||||
})
|
})
|
||||||
class CustomInfoDrawerComponent {
|
class CustomInfoDrawerComponent extends InfoDrawerComponent {
|
||||||
|
tabIndex: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
describe('Custom InfoDrawer', () => {
|
describe('Custom InfoDrawer', () => {
|
||||||
let fixture: ComponentFixture<CustomInfoDrawerComponent>;
|
let fixture: ComponentFixture<CustomInfoDrawerComponent>;
|
||||||
|
let component: CustomInfoDrawerComponent;
|
||||||
|
|
||||||
beforeEach(async(() => {
|
beforeEach(async(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [
|
declarations: [
|
||||||
InfoDrawerComponent,
|
InfoDrawerComponent,
|
||||||
|
InfoDrawerTabComponent,
|
||||||
InfoDrawerLayoutComponent,
|
InfoDrawerLayoutComponent,
|
||||||
CustomInfoDrawerComponent
|
CustomInfoDrawerComponent
|
||||||
],
|
],
|
||||||
@ -100,6 +108,7 @@ describe('Custom InfoDrawer', () => {
|
|||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(CustomInfoDrawerComponent);
|
fixture = TestBed.createComponent(CustomInfoDrawerComponent);
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
|
component = fixture.componentInstance;
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render the title', () => {
|
it('should render the title', () => {
|
||||||
@ -108,4 +117,19 @@ describe('Custom InfoDrawer', () => {
|
|||||||
expect(title.length).toBe(1);
|
expect(title.length).toBe(1);
|
||||||
expect(title[0].nativeElement.innerText).toBe('Fake Title Custom');
|
expect(title[0].nativeElement.innerText).toBe('Fake Title Custom');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should select the tab 1 (index 0) as default', () => {
|
||||||
|
fixture.detectChanges();
|
||||||
|
let tab: any = fixture.debugElement.queryAll(By.css('.mat-tab-label-active'));
|
||||||
|
expect(tab.length).toBe(1);
|
||||||
|
expect(tab[0].nativeElement.innerText).toBe('Tab1');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should select the tab 2 (index 1)', () => {
|
||||||
|
component.tabIndex = 1;
|
||||||
|
fixture.detectChanges();
|
||||||
|
let tab: any = fixture.debugElement.queryAll(By.css('.mat-tab-label-active'));
|
||||||
|
expect(tab.length).toBe(1);
|
||||||
|
expect(tab[0].nativeElement.innerText).toBe('Tab2');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@ -37,6 +37,9 @@ export class InfoDrawerComponent {
|
|||||||
@Input()
|
@Input()
|
||||||
title: string|null = null;
|
title: string|null = null;
|
||||||
|
|
||||||
|
@Input()
|
||||||
|
selectedIndex: number = 0;
|
||||||
|
|
||||||
@Output()
|
@Output()
|
||||||
currentTab: EventEmitter<number> = new EventEmitter<number>();
|
currentTab: EventEmitter<number> = new EventEmitter<number>();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user