Project

General

Profile

1
<div class="uk-grid-margin uk-grid uk-grid-stack" uk-grid="">
2
  <div class="uk-width-1-1@m uk-first-column">
3

    
4
    <h1 class="uk-h2">Aggregation history for {{ repoName }}</h1>
5

    
6
    <!-- TOP HELP CONTENT -->
7
    <help-content #topHelperContent [position]="'top'"
8
                  [ngClass]="topHelperContent.isPresent()?'uk-margin-medium-top uk-margin-medium-bottom':'clear-style'">
9
    </help-content>
10

    
11
    <div class="uk-container uk-container-large uk-margin-medium-top uk-margin-medium-bottom">
12
      <div class="uk-grid">
13

    
14
        <!-- LEFT HELP CONTENT -->
15
        <aside-help-content #leftHelperContent [position]="'left'"
16
                            [ngClass]="leftHelperContent.isPresent()?'tm-sidebar uk-width-1-4@m uk-first-column':'clear-style'">
17
        </aside-help-content>
18

    
19
        <!-- MIDDLE -->
20
        <div class=" uk-width-expand@m">
21

    
22
          <div *ngIf="errorMessage" class="uk-alert uk-alert-danger">{{ errorMessage }}</div>
23
          <div *ngIf="loadingMessage" class="loading-big">
24
            <div class="loader-big" style="text-align: center; padding-top: 170px; color: rgb(47, 64, 80); font-weight: bold;">
25
              {{ loadingMessage }}
26
            </div>
27
            <div class="whiteFilm"></div>
28
          </div>
29
          <div *ngIf="noAggregations">{{ noAggregations }}</div>
30
          <div *ngIf="aggregationsMap && years && (years.length > 0) && !noAggregations">
31
            <div *ngFor="let year of years" class="uk-width-1-1@m">
32
              <ul class="uk-list uk-list-striped">
33
                <h4>{{ year }}</h4>
34
                <li *ngFor="let aggr of aggregationsMap[year]">
35
                  <div class="uk-grid uk-child-width-1-4">
36
                    <div><span *ngIf="aggr.date">{{ aggr.date | date : "yyyy-MM-dd" }}</span></div>
37
                    <div><span *ngIf="aggr.aggregationStage">Aggregation stage: {{ aggr.aggregationStage }}</span></div>
38
                    <div><span *ngIf="aggr.collectionMode">CollectionMode: {{ aggr.collectionMode }}</span></div>
39
                    <div><span *ngIf="aggr.numberOfRecords">Number of records: {{ aggr.numberOfRecords }}</span></div>
40
                    <div><span *ngIf="aggr.indexedVersion !== null">Is the indexed version: {{ (aggr.indexedVersion === true) ? 'Yes': 'No' }}</span></div>
41
                  </div>
42
                </li>
43
              </ul>
44
              <hr>
45
            </div>
46
          </div>
47

    
48
          <div *ngIf="repo" class="uk-inline">
49
            <div class="uk-float-right" style="z-index: 100; bottom: 30px; position: fixed; right: 30px;">
50
              <button [routerLink]="['/compatibility/monitor', repo.id]"
51
                      style="box-shadow: 0 1px 10px #444444"
52
                      class="uk-button uk-button-primary">
53
                Go back
54
              </button>
55
            </div>
56
          </div>
57

    
58
        </div>
59

    
60
        <!-- RIGHT HELP CONTENT -->
61
        <aside-help-content #rightHelperContent [position]="'right'"
62
                            [ngClass]="rightHelperContent.isPresent()?'tm-sidebar uk-width-1-4@m uk-first-column':'clear-style'">
63
        </aside-help-content>
64

    
65
      </div>
66
    </div>
67

    
68

    
69
    <!-- BOTTOM HELP CONTENT -->
70
    <help-content #bottomHelperContent [position]="'bottom'"
71
                  [ngClass]="bottomHelperContent.isPresent()?'uk-margin-medium-top uk-margin-medium-bottom':'clear-style'">
72
    </help-content>
73

    
74

    
75
  </div>
76
</div>
(1-1/17)