1
1
import {
2
2
Component ,
3
+ ElementRef ,
4
+ HostBinding ,
3
5
Input ,
4
- NgModuleFactory , OnInit , QueryList ,
6
+ NgModuleFactory ,
7
+ OnInit ,
8
+ QueryList ,
5
9
Type ,
6
10
ViewChildren ,
7
11
ɵNgModuleFactory
@@ -53,6 +57,7 @@ export class ExampleViewer implements OnInit {
53
57
@Input ( ) showCompactToggle = false ;
54
58
55
59
/** String key of the currently displayed example. */
60
+ @HostBinding ( 'attr.id' )
56
61
@Input ( )
57
62
get example ( ) { return this . _example ; }
58
63
set example ( exampleName : string ) {
@@ -75,7 +80,8 @@ export class ExampleViewer implements OnInit {
75
80
76
81
constructor (
77
82
private readonly snackbar : MatSnackBar ,
78
- private readonly clipboard : Clipboard ) { }
83
+ private readonly clipboard : Clipboard ,
84
+ private readonly elementRef : ElementRef < HTMLElement > ) { }
79
85
80
86
ngOnInit ( ) {
81
87
if ( this . file ) {
@@ -152,6 +158,17 @@ export class ExampleViewer implements OnInit {
152
158
} ) ;
153
159
}
154
160
161
+ _copyLink ( ) {
162
+ // Reconstruct the URL using `origin + pathname` so we drop any pre-existing hash.
163
+ const fullUrl = location . origin + location . pathname + '#' + this . _example ;
164
+
165
+ if ( this . clipboard . copy ( fullUrl ) ) {
166
+ this . snackbar . open ( 'Link copied' , '' , { duration : 2500 } ) ;
167
+ } else {
168
+ this . snackbar . open ( 'Link copy failed. Please try again!' , '' , { duration : 2500 } ) ;
169
+ }
170
+ }
171
+
155
172
/** Loads the component and module factory for the currently selected example. */
156
173
private async _loadExampleComponent ( ) {
157
174
const { componentName, module} = EXAMPLE_COMPONENTS [ this . _example ] ;
@@ -170,6 +187,13 @@ export class ExampleViewer implements OnInit {
170
187
// class symbol to Ivy's module factory constructor. There is no equivalent for View Engine,
171
188
// where factories are stored in separate files. Hence the API is currently Ivy-only.
172
189
this . _exampleModuleFactory = new ɵNgModuleFactory ( moduleExports [ module . name ] ) ;
190
+
191
+ // Since the data is loaded asynchronously, we can't count on the native behavior
192
+ // that scrolls the element into view automatically. We do it ourselves while giving
193
+ // the page some time to render.
194
+ if ( typeof location !== 'undefined' && location . hash . slice ( 1 ) === this . _example ) {
195
+ setTimeout ( ( ) => this . elementRef . nativeElement . scrollIntoView ( ) , 300 ) ;
196
+ }
173
197
}
174
198
175
199
private _generateExampleTabs ( ) {
0 commit comments