Skip to content

Commit d2db6d7

Browse files
geromegrignonSplaktar
authored andcommittedFeb 6, 2021
fix(toc): visibility on resizing
add change detection trigger the event emitter to populate the toc
1 parent 6bbc07c commit d2db6d7

File tree

2 files changed

+47
-10
lines changed

2 files changed

+47
-10
lines changed
 

‎material.angular.io/src/app/pages/component-viewer/component-viewer.ts

+46-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
11
import {BreakpointObserver} from '@angular/cdk/layout';
22
import {CommonModule} from '@angular/common';
33
import {
4+
ChangeDetectorRef,
45
Component,
56
Directive,
67
NgModule,
78
OnDestroy,
89
OnInit,
10+
QueryList,
911
ViewChild,
12+
ViewChildren,
1013
ViewEncapsulation,
1114
} from '@angular/core';
1215
import {MatTabsModule} from '@angular/material/tabs';
1316
import {ActivatedRoute, Params, Router, RouterModule} from '@angular/router';
1417
import {combineLatest, Observable, ReplaySubject, Subject} from 'rxjs';
15-
import {map, takeUntil} from 'rxjs/operators';
18+
import {map, skip, takeUntil} from 'rxjs/operators';
1619
import {DocViewerModule} from '../../shared/doc-viewer/doc-viewer-module';
1720
import {DocItem, DocumentationItems} from '../../shared/documentation-items/documentation-items';
1821
import {TableOfContents} from '../../shared/table-of-contents/table-of-contents';
1922
import {TableOfContentsModule} from '../../shared/table-of-contents/table-of-contents.module';
2023
import {ComponentPageTitle} from '../page-title/page-title';
2124
import {NavigationFocusModule} from '../../shared/navigation-focus/navigation-focus';
25+
import {DocViewer} from '../../shared/doc-viewer/doc-viewer';
26+
2227

2328
@Component({
2429
selector: 'app-component-viewer',
@@ -74,14 +79,23 @@ export class ComponentViewer implements OnDestroy {
7479
@Directive()
7580
export class ComponentBaseView implements OnInit, OnDestroy {
7681
@ViewChild('toc') tableOfContents: TableOfContents;
82+
@ViewChildren(DocViewer) viewers: QueryList<DocViewer>;
7783

7884
showToc: Observable<boolean>;
7985

8086
destroyed = new Subject<void>();
8187

82-
constructor(public componentViewer: ComponentViewer, breakpointObserver: BreakpointObserver) {
88+
constructor(
89+
public componentViewer: ComponentViewer,
90+
breakpointObserver: BreakpointObserver,
91+
private changeDetectorRef: ChangeDetectorRef) {
8392
this.showToc = breakpointObserver.observe('(max-width: 1200px)')
84-
.pipe(map(result => !result.matches));
93+
.pipe(
94+
map(result => {
95+
this.changeDetectorRef.detectChanges();
96+
return !result.matches;
97+
})
98+
);
8599
}
86100

87101
ngOnInit() {
@@ -90,6 +104,17 @@ export class ComponentBaseView implements OnInit, OnDestroy {
90104
this.tableOfContents.resetHeaders();
91105
}
92106
});
107+
108+
this.showToc.pipe(
109+
skip(1),
110+
takeUntil(this.destroyed)
111+
).subscribe(() => {
112+
if (this.tableOfContents) {
113+
this.viewers.forEach(viewer => {
114+
viewer.contentRendered.emit(viewer._elementRef.nativeElement);
115+
});
116+
}
117+
});
93118
}
94119

95120
ngOnDestroy() {
@@ -110,8 +135,12 @@ export class ComponentBaseView implements OnInit, OnDestroy {
110135
encapsulation: ViewEncapsulation.None,
111136
})
112137
export class ComponentOverview extends ComponentBaseView {
113-
constructor(componentViewer: ComponentViewer, breakpointObserver: BreakpointObserver) {
114-
super(componentViewer, breakpointObserver);
138+
constructor(
139+
componentViewer: ComponentViewer,
140+
breakpointObserver: BreakpointObserver,
141+
changeDetectorRef: ChangeDetectorRef
142+
) {
143+
super(componentViewer, breakpointObserver, changeDetectorRef);
115144
}
116145

117146
getOverviewDocumentUrl(doc: DocItem) {
@@ -132,8 +161,12 @@ export class ComponentOverview extends ComponentBaseView {
132161
encapsulation: ViewEncapsulation.None,
133162
})
134163
export class ComponentApi extends ComponentBaseView {
135-
constructor(componentViewer: ComponentViewer, breakpointObserver: BreakpointObserver) {
136-
super(componentViewer, breakpointObserver);
164+
constructor(
165+
componentViewer: ComponentViewer,
166+
breakpointObserver: BreakpointObserver,
167+
changeDetectorRef: ChangeDetectorRef
168+
) {
169+
super(componentViewer, breakpointObserver, changeDetectorRef);
137170
}
138171

139172
getApiDocumentUrl(doc: DocItem) {
@@ -148,8 +181,12 @@ export class ComponentApi extends ComponentBaseView {
148181
encapsulation: ViewEncapsulation.None,
149182
})
150183
export class ComponentExamples extends ComponentBaseView {
151-
constructor(componentViewer: ComponentViewer, breakpointObserver: BreakpointObserver) {
152-
super(componentViewer, breakpointObserver);
184+
constructor(
185+
componentViewer: ComponentViewer,
186+
breakpointObserver: BreakpointObserver,
187+
changeDetectorRef: ChangeDetectorRef
188+
) {
189+
super(componentViewer, breakpointObserver, changeDetectorRef);
153190
}
154191
}
155192

‎material.angular.io/src/app/shared/doc-viewer/doc-viewer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class DocViewer implements OnDestroy {
6868

6969
constructor(private _appRef: ApplicationRef,
7070
private _componentFactoryResolver: ComponentFactoryResolver,
71-
private _elementRef: ElementRef,
71+
public _elementRef: ElementRef,
7272
private _http: HttpClient,
7373
private _injector: Injector,
7474
private _viewContainerRef: ViewContainerRef,

0 commit comments

Comments
 (0)