|
1 | 1 | <div class="docs-example-viewer-wrapper">
|
2 |
| - <div class="docs-example-viewer-title" *ngIf="view !== 'snippet'"> |
3 |
| - <div class="docs-example-viewer-title-spacer">{{exampleData?.title}}</div> |
| 2 | + @switch (view) { |
| 3 | + @case ('full') { |
| 4 | + <div class="docs-example-viewer-source"> |
| 5 | + <mat-tab-group animationDuration="0ms" [(selectedIndex)]="selectedTab" mat-stretch-tabs="false"> |
| 6 | + @for (tabName of _getExampleTabNames(); track tabName) { |
| 7 | + <mat-tab [label]="tabName"> |
| 8 | + <div class="button-bar"> |
| 9 | + <button mat-icon-button type="button" (click)="copySource(snippet, selectedTab)" |
| 10 | + class="docs-example-source-copy docs-example-button" matTooltip="Copy example source" |
| 11 | + title="Copy example source" aria-label="Copy example source to clipboard"> |
| 12 | + <mat-icon>content_copy</mat-icon> |
| 13 | + </button> |
| 14 | + </div> |
| 15 | + <code-snippet [source]="exampleTabs[tabName]"></code-snippet> |
| 16 | + </mat-tab> |
| 17 | + } |
| 18 | + </mat-tab-group> |
| 19 | + </div> |
| 20 | + } |
4 | 21 |
|
5 |
| - <button |
6 |
| - mat-icon-button |
7 |
| - type="button" |
8 |
| - [attr.aria-label]="'Copy link to ' + exampleData?.title + ' example to the clipboard'" |
9 |
| - matTooltip="Copy link to example" |
10 |
| - (click)="_copyLink()"> |
11 |
| - <mat-icon>link</mat-icon> |
12 |
| - </button> |
13 |
| - |
14 |
| - <button mat-icon-button type="button" (click)="toggleCompactView()" matTooltip="View snippet only" |
15 |
| - aria-label="View less" *ngIf="showCompactToggle"> |
16 |
| - <mat-icon> |
17 |
| - <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" focusable="false"> |
18 |
| - <path |
19 |
| - d="M15.41,10H20v2h-8V4h2v4.59L20.59,2L22,3.41L15.41,10z M4,12v2h4.59L2,20.59L3.41,22L10,15.41V20h2v-8H4z"/> |
20 |
| - </svg> |
21 |
| - </mat-icon> |
22 |
| - </button> |
23 |
| - |
24 |
| - <button mat-icon-button type="button" (click)="toggleSourceView()" |
25 |
| - [matTooltip]="view === 'demo' ? 'View code' : 'Hide code'" aria-label="View source"> |
26 |
| - <mat-icon>code</mat-icon> |
27 |
| - </button> |
28 |
| - |
29 |
| - <stack-blitz-button [example]="example"></stack-blitz-button> |
30 |
| - </div> |
31 |
| - |
32 |
| - <div class="docs-example-viewer-source" *ngIf="view === 'full'"> |
33 |
| - <mat-tab-group animationDuration="0ms" [(selectedIndex)]="selectedTab" mat-stretch-tabs="false"> |
34 |
| - <mat-tab *ngFor="let tabName of _getExampleTabNames()" [label]="tabName"> |
| 22 | + @case ('snippet') { |
| 23 | + <div class="docs-example-viewer-source-compact"> |
35 | 24 | <div class="button-bar">
|
36 |
| - <button mat-icon-button type="button" (click)="copySource(snippet, selectedTab)" |
37 |
| - class="docs-example-source-copy docs-example-button" matTooltip="Copy example source" |
| 25 | + <button mat-icon-button type="button" (click)="copySource(snippet)" |
| 26 | + class="docs-example-source-copy docs-example-button" matTooltip="Copy snippet" |
38 | 27 | title="Copy example source" aria-label="Copy example source to clipboard">
|
39 | 28 | <mat-icon>content_copy</mat-icon>
|
40 | 29 | </button>
|
| 30 | + <button mat-icon-button type="button" (click)="toggleCompactView()" |
| 31 | + class="docs-example-compact-toggle docs-example-button" matTooltip="View full example" |
| 32 | + aria-label="View less"> |
| 33 | + <mat-icon> |
| 34 | + <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" focusable="false"> |
| 35 | + <polygon points="13,3 13,5 17.59,5 5,17.59 5,13 3,13 3,21 11,21 11,19 6.41,19 19,6.41 19,11 21,11 21,3"/> |
| 36 | + </svg> |
| 37 | + </mat-icon> |
| 38 | + </button> |
41 | 39 | </div>
|
42 |
| - <code-snippet [source]="exampleTabs[tabName]"></code-snippet> |
43 |
| - </mat-tab> |
44 |
| - </mat-tab-group> |
45 |
| - </div> |
46 | 40 |
|
47 |
| - <div class="docs-example-viewer-source-compact" *ngIf="view === 'snippet'"> |
48 |
| - <div class="button-bar"> |
49 |
| - <button mat-icon-button type="button" (click)="copySource(snippet)" |
50 |
| - class="docs-example-source-copy docs-example-button" matTooltip="Copy snippet" |
51 |
| - title="Copy example source" aria-label="Copy example source to clipboard"> |
52 |
| - <mat-icon>content_copy</mat-icon> |
53 |
| - </button> |
54 |
| - <button mat-icon-button type="button" (click)="toggleCompactView()" |
55 |
| - class="docs-example-compact-toggle docs-example-button" matTooltip="View full example" |
56 |
| - aria-label="View less"> |
57 |
| - <mat-icon> |
58 |
| - <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" focusable="false"> |
59 |
| - <polygon points="13,3 13,5 17.59,5 5,17.59 5,13 3,13 3,21 11,21 11,19 6.41,19 19,6.41 19,11 21,11 21,3"/> |
60 |
| - </svg> |
61 |
| - </mat-icon> |
62 |
| - </button> |
63 |
| - </div> |
64 |
| - <code-snippet *ngIf="fileUrl" [source]="fileUrl"></code-snippet> |
65 |
| - </div> |
| 41 | + @if (fileUrl) { |
| 42 | + <code-snippet [source]="fileUrl"/> |
| 43 | + } |
| 44 | + </div> |
| 45 | + } |
| 46 | + |
| 47 | + @default { |
| 48 | + <div class="docs-example-viewer-title"> |
| 49 | + <div class="docs-example-viewer-title-spacer">{{exampleData?.title}}</div> |
| 50 | + |
| 51 | + <button |
| 52 | + mat-icon-button |
| 53 | + type="button" |
| 54 | + [attr.aria-label]="'Copy link to ' + exampleData?.title + ' example to the clipboard'" |
| 55 | + matTooltip="Copy link to example" |
| 56 | + (click)="_copyLink()"> |
| 57 | + <mat-icon>link</mat-icon> |
| 58 | + </button> |
| 59 | + |
| 60 | + @if (showCompactToggle) { |
| 61 | + <button mat-icon-button |
| 62 | + (click)="toggleCompactView()" |
| 63 | + matTooltip="View snippet only" |
| 64 | + aria-label="View less"> |
| 65 | + <mat-icon> |
| 66 | + <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" focusable="false"> |
| 67 | + <path |
| 68 | + d="M15.41,10H20v2h-8V4h2v4.59L20.59,2L22,3.41L15.41,10z M4,12v2h4.59L2,20.59L3.41,22L10,15.41V20h2v-8H4z"/> |
| 69 | + </svg> |
| 70 | + </mat-icon> |
| 71 | + </button> |
| 72 | + } |
| 73 | + |
| 74 | + <button mat-icon-button type="button" (click)="toggleSourceView()" |
| 75 | + [matTooltip]="view === 'demo' ? 'View code' : 'Hide code'" aria-label="View source"> |
| 76 | + <mat-icon>code</mat-icon> |
| 77 | + </button> |
| 78 | + |
| 79 | + <stack-blitz-button [example]="example"></stack-blitz-button> |
| 80 | + </div> |
| 81 | + } |
| 82 | + } |
66 | 83 |
|
67 |
| - <div class="docs-example-viewer-body" *ngIf="view !== 'snippet'"> |
68 |
| - <ng-template *ngIf="_exampleComponentType && !example?.includes('harness')" |
69 |
| - [ngComponentOutlet]="_exampleComponentType"></ng-template> |
70 |
| - <div *ngIf="example?.includes('harness')"> |
71 |
| - This example contains tests. Open in Stackblitz to run the tests. |
| 84 | + @if (view !== 'snippet') { |
| 85 | + <div class="docs-example-viewer-body"> |
| 86 | + @if (_exampleComponentType && !example?.includes('harness')) { |
| 87 | + <ng-template [ngComponentOutlet]="_exampleComponentType"/> |
| 88 | + } @else { |
| 89 | + <div>This example contains tests. Open in Stackblitz to run the tests.</div> |
| 90 | + } |
72 | 91 | </div>
|
73 |
| - </div> |
| 92 | + } |
74 | 93 | </div>
|
0 commit comments