-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathannotation-menu.component.html
More file actions
58 lines (56 loc) · 1.83 KB
/
Copy pathannotation-menu.component.html
File metadata and controls
58 lines (56 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
@let proofs = proofs$ | async;
<ul ngbNav #nav="ngbNav" [(activeId)]="active" class="nav-tabs flex-nowrap">
<li [ngbNavItem]="1">
<button ngbNavLink>
<fa-icon
[icon]="faSquarePollHorizontal"
class="me-2"
aria-hidden="true"
/>
<span i18n>Syntactic parses</span>
</button>
<ng-template ngbNavContent>
<la-annotation-parse-results />
</ng-template>
</li>
<li [ngbNavItem]="2">
<button ngbNavLink>
<b class="me-2" aria-hidden>⊤</b>
<span i18n>Proof / Entailment</span>
</button>
<ng-template ngbNavContent>
<section class="overflow-x-scroll">
@if (proofs) {
<la-tableau-svg [tree]="proofs.entailment"></la-tableau-svg>
} @else {
<la-no-data dataType="proof" />
}
</section>
</ng-template>
</li>
<li [ngbNavItem]="3">
<button ngbNavLink>
<b class="me-2" aria-hidden>⊥</b>
<span i18n>Proof / Contradiction</span>
</button>
<ng-template ngbNavContent>
<section class="overflow-x-scroll">
@if (proofs) {
<la-tableau-svg [tree]="proofs.contradiction"></la-tableau-svg>
} @else {
<la-no-data dataType="proof" />
}
</section>
</ng-template>
</li>
<li [ngbNavItem]="4">
<button ngbNavLink>
<fa-icon [icon]="faPenNib" class="me-2" aria-hidden="true" />
<span i18n>Comments / History</span>
</button>
<ng-template ngbNavContent>
<la-annotation-comments />
</ng-template>
</li>
</ul>
<div [ngbNavOutlet]="nav" class="mt-2"></div>