1
1
import { BreakpointObserver } from '@angular/cdk/layout' ;
2
2
import { CommonModule } from '@angular/common' ;
3
3
import {
4
+ ChangeDetectorRef ,
4
5
Component ,
5
6
Directive ,
6
7
NgModule ,
7
8
OnDestroy ,
8
9
OnInit ,
10
+ QueryList ,
9
11
ViewChild ,
12
+ ViewChildren ,
10
13
ViewEncapsulation ,
11
14
} from '@angular/core' ;
12
15
import { MatTabsModule } from '@angular/material/tabs' ;
13
16
import { ActivatedRoute , Params , Router , RouterModule } from '@angular/router' ;
14
17
import { combineLatest , Observable , ReplaySubject , Subject } from 'rxjs' ;
15
- import { map , takeUntil } from 'rxjs/operators' ;
18
+ import { map , skip , takeUntil } from 'rxjs/operators' ;
16
19
import { DocViewerModule } from '../../shared/doc-viewer/doc-viewer-module' ;
17
20
import { DocItem , DocumentationItems } from '../../shared/documentation-items/documentation-items' ;
18
21
import { TableOfContents } from '../../shared/table-of-contents/table-of-contents' ;
19
22
import { TableOfContentsModule } from '../../shared/table-of-contents/table-of-contents.module' ;
20
23
import { ComponentPageTitle } from '../page-title/page-title' ;
21
24
import { NavigationFocusModule } from '../../shared/navigation-focus/navigation-focus' ;
25
+ import { DocViewer } from '../../shared/doc-viewer/doc-viewer' ;
26
+
22
27
23
28
@Component ( {
24
29
selector : 'app-component-viewer' ,
@@ -74,14 +79,23 @@ export class ComponentViewer implements OnDestroy {
74
79
@Directive ( )
75
80
export class ComponentBaseView implements OnInit , OnDestroy {
76
81
@ViewChild ( 'toc' ) tableOfContents : TableOfContents ;
82
+ @ViewChildren ( DocViewer ) viewers : QueryList < DocViewer > ;
77
83
78
84
showToc : Observable < boolean > ;
79
85
80
86
destroyed = new Subject < void > ( ) ;
81
87
82
- constructor ( public componentViewer : ComponentViewer , breakpointObserver : BreakpointObserver ) {
88
+ constructor (
89
+ public componentViewer : ComponentViewer ,
90
+ breakpointObserver : BreakpointObserver ,
91
+ private changeDetectorRef : ChangeDetectorRef ) {
83
92
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
+ ) ;
85
99
}
86
100
87
101
ngOnInit ( ) {
@@ -90,6 +104,17 @@ export class ComponentBaseView implements OnInit, OnDestroy {
90
104
this . tableOfContents . resetHeaders ( ) ;
91
105
}
92
106
} ) ;
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
+ } ) ;
93
118
}
94
119
95
120
ngOnDestroy ( ) {
@@ -110,8 +135,12 @@ export class ComponentBaseView implements OnInit, OnDestroy {
110
135
encapsulation : ViewEncapsulation . None ,
111
136
} )
112
137
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 ) ;
115
144
}
116
145
117
146
getOverviewDocumentUrl ( doc : DocItem ) {
@@ -132,8 +161,12 @@ export class ComponentOverview extends ComponentBaseView {
132
161
encapsulation : ViewEncapsulation . None ,
133
162
} )
134
163
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 ) ;
137
170
}
138
171
139
172
getApiDocumentUrl ( doc : DocItem ) {
@@ -148,8 +181,12 @@ export class ComponentApi extends ComponentBaseView {
148
181
encapsulation : ViewEncapsulation . None ,
149
182
} )
150
183
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 ) ;
153
190
}
154
191
}
155
192
0 commit comments