|
1 | | -<app-operator-header [operatorName]="operatorName" |
| 1 | +<div *ngIf="operator"> |
| 2 | + <app-operator-header [operatorName]="operatorName" |
2 | 3 | [operatorSignature]="signature" |
3 | 4 | [id]="operatorName" |
4 | 5 | class="operator-header"> |
5 | | -</app-operator-header> |
6 | | -<section class="main-operator-container mat-typography"> |
7 | | - <h3 class="short-description" |
8 | | - [innerHTML]="shortDescription"> |
9 | | - </h3> |
10 | | - <app-operator-extras class="margin-bottom-16" |
11 | | - *ngIf="shortDescriptionExtras" |
12 | | - [operatorExtras]="shortDescriptionExtras"> |
13 | | - </app-operator-extras> |
14 | | - <app-marble-diagram class="margin-bottom-32" |
15 | | - [operatorName]="operatorName" |
16 | | - [useInteractiveMarbles]="useInteractiveMarbles" |
17 | | - [url]="marbleUrl"> |
18 | | - </app-marble-diagram> |
19 | | - <app-operator-examples [operatorExamples]="examples" |
20 | | - (copyToClipboard)="copyToClipboard($event)" |
21 | | - class="margin-bottom-16"> |
22 | | - </app-operator-examples> |
23 | | - <app-operator-parameters [operatorParameters]="parameters" |
24 | | - *ngIf="parameters?.length"> |
25 | | - </app-operator-parameters> |
26 | | - <app-operator-walkthrough class="margin-bottom-16" |
27 | | - [operatorWalkthrough]="walkthrough"> |
28 | | - </app-operator-walkthrough> |
29 | | - <app-operator-extras class="margin-bottom-16" |
30 | | - *ngIf="walkthroughExtras" |
31 | | - [operatorExtras]="walkthroughExtras"> |
32 | | - </app-operator-extras> |
33 | | - <app-related-operators [relatedOperators]="relatedOperators"> |
34 | | - </app-related-operators> |
35 | | - <app-additional-resources [additionalResources]="additionalResources" |
36 | | - [sourceUrl]="sourceUrl" |
37 | | - [specsUrl]="specsUrl"> |
38 | | - </app-additional-resources> |
39 | | -</section> |
| 6 | + </app-operator-header> |
| 7 | + <div *ngIf="noTranslation" class="operator-info-warning"> |
| 8 | + <mat-icon>language</mat-icon> <span>{{ 'OPERATOR.NO_TRANSLATION' | translate}}</span> |
| 9 | + </div> |
| 10 | + <section class="main-operator-container mat-typography"> |
| 11 | + <h3 class="short-description" |
| 12 | + [innerHTML]="shortDescription"> |
| 13 | + </h3> |
| 14 | + <app-operator-extras class="margin-bottom-16" |
| 15 | + *ngIf="shortDescriptionExtras" |
| 16 | + [operatorExtras]="shortDescriptionExtras"> |
| 17 | + </app-operator-extras> |
| 18 | + <app-marble-diagram class="margin-bottom-32" |
| 19 | + [operatorName]="operatorName" |
| 20 | + [useInteractiveMarbles]="useInteractiveMarbles" |
| 21 | + [url]="marbleUrl"> |
| 22 | + </app-marble-diagram> |
| 23 | + <app-operator-examples [operatorExamples]="examples" |
| 24 | + (copyToClipboard)="copyToClipboard($event)" |
| 25 | + class="margin-bottom-16"> |
| 26 | + </app-operator-examples> |
| 27 | + <app-operator-parameters [operatorParameters]="parameters" |
| 28 | + *ngIf="parameters?.length"> |
| 29 | + </app-operator-parameters> |
| 30 | + <app-operator-walkthrough class="margin-bottom-16" |
| 31 | + [operatorWalkthrough]="walkthrough"> |
| 32 | + </app-operator-walkthrough> |
| 33 | + <app-operator-extras class="margin-bottom-16" |
| 34 | + *ngIf="walkthroughExtras" |
| 35 | + [operatorExtras]="walkthroughExtras"> |
| 36 | + </app-operator-extras> |
| 37 | + <app-related-operators [relatedOperators]="relatedOperators"> |
| 38 | + </app-related-operators> |
| 39 | + <app-additional-resources [additionalResources]="additionalResources" |
| 40 | + [sourceUrl]="sourceUrl" |
| 41 | + [specsUrl]="specsUrl"> |
| 42 | + </app-additional-resources> |
| 43 | + </section> |
| 44 | +</div> |
| 45 | + |
0 commit comments