Project

General

Profile

1
<div class="uk-grid uk-grid-stack">
2
  <div class="uk-width-expand@m uk-first-column">
3
    <div *ngIf="loadingMessage" class="loading-big">
4
      <div class="loader-big" style="text-align: center; padding-top: 170px; color: rgb(47, 64, 80); font-weight: bold;">
5
        {{ loadingMessage }}
6
      </div>
7
      <div class="whiteFilm"></div>
8
    </div>
9
    <div *ngIf="errorMessage" class="uk-alert uk-alert-danger">{{ errorMessage }}</div>
10
    <div *ngIf="repo" class="uk-margin-medium-bottom">
11
      <h1 class="uk-article-title">
12
        <a id="updateLogoURL" (click)="datasourceUpdateForm.updateLogoUrl(repo.logoUrl)">
13
          <img *ngIf="!logoURL" src="/assets/imgs/yourLogoHere.jpg" style="margin-right: 15px; margin-top:-8px" width="60">
14
          <img *ngIf="logoURL" src="{{ logoURL }}" style="margin-right: 15px; margin-top:-8px" width="60">
15
        </a>
16
        {{ repo.officialName }}
17
      </h1>
18
    </div>
19
    <div *ngIf="repo">
20
      <div>
21
        <ul class="uk-margin el-nav uk-tab" uk-switcher="connect: .uk-switcher">
22
          <li routerLinkActive="uk-active">
23
            <a href="#">Update Information</a>
24
          </li>
25
          <li routerLinkActive="uk-active">
26
            <a href="#">Update Interfaces</a>
27
          </li>
28
        </ul>
29
        <ul class="uk-switcher">
30
          <li class="el-item">
31
            <div>
32
              <datasource-update-form #datasourceUpdateForm
33
                                      [selectedRepo]="repo"
34
                                      [showButton]=true
35
                                      (emittedUrl)="getNewLogoUrl($event)"></datasource-update-form>
36
            </div>
37
          </li>
38
          <li class="el-item">
39
            <div *ngIf="repo && repoInterfaces" class="uk-width-1-1@m uk-first-column">
40
              <form [formGroup]="group">
41
                <form-repeat [component]="updateDatasourceInterfaces"
42
                             [parentGroup]="group"
43
                             [description]="interfaceFormDesc"
44
                             [name]="'datasource-interface-form'"
45
                             [data]="repoInterfaces"
46
                             [otherData]="repo">
47
                </form-repeat>
48
              </form>
49
            </div>
50
          </li>
51
        </ul>
52
      </div>
53
    </div>
54
  </div>
55
<!--  <div class="tm-sidebar uk-width-1-4@m">
56
    <div>
57
      <div class="uk-card uk-card-body uk-card-default sidemenu"><h3>Info / Help</h3>
58
        <p>You have access to edit&nbsp;the following repository listed on the left.&nbsp;Fields marked with * are mandatory.
59
          &nbsp;Hover over each field to find more information about it.</p>
60
        <p>The official repository administrator (his/her email address being retrieved from the OAI-PMH verb Identify) will be contacted and informed about the update request.
61
          So please make sure that you are either this person or have access to the email address, or that you have notified them.</p>
62
        <p>For any problems or questions please contact the <a href="https://www.openaire.eu/support/helpdesk" target="_blank">OpenAIRE helpdesk</a>.</p>
63
      </div>
64
    </div>
65
  </div>-->
66
  <aside-help-content #rightHelperContent [position]="'right'"
67
                      [ngClass]="rightHelperContent.isPresent()?'tm-sidebar uk-width-1-4@m uk-first-column':'clear-style'">
68
  </aside-help-content>
69
</div>
(3-3/10)