Project

General

Profile

1 45402 konstantin
<div class="uk-container uk-margin-top person">
2 45390 konstantin
    <div *ngIf="warningMessage.length > 0" class="uk-alert uk-alert-warning" role="alert">{{warningMessage}}</div>
3
    <div *ngIf="errorMessage.length > 0" class="uk-alert uk-alert-danger" role="alert">{{errorMessage}}</div>
4 43769 argiro.kok
5 45390 konstantin
    <div *ngIf="personInfo != null" class="uk-grid">
6
        <div class="uk-width-7-10">
7
            <h2>{{personInfo.fullname}}</h2>
8 43769 argiro.kok
9 45401 argiro.kok
            <dl class="uk-description-list-horizontal custom-description-list-horizontal">
10 45390 konstantin
                <dt *ngIf="personInfo.secondnames != undefined && personInfo.secondnames != ''">Last name: </dt>
11
                <dd *ngIf="personInfo.secondnames != undefined && personInfo.secondnames != ''">{{personInfo.secondnames}}</dd>
12
                <dt *ngIf="personInfo.firstname != undefined && personInfo.firstname != ''">First name: </dt>
13
                <dd *ngIf="personInfo.firstname != undefined && personInfo.firstname != ''">{{personInfo.firstname}}</dd>
14
                <dt *ngIf="personInfo.country != undefined && personInfo.country != ''">Country: </dt>
15
                <dd *ngIf="personInfo.country != undefined && personInfo.country != ''">{{personInfo.country}}</dd>
16
            </dl>
17 43769 argiro.kok
18 45390 konstantin
            <ul class="uk-tab" data-uk-switcher="{connect:'#tab-content'}">
19
                <li class="uk-active">
20
                    <a href="#publicationsTab">
21
                        Publications
22
                        <span class="uk-badge uk-badge-notification">
23 45855 argiro.kok
                            {{fetchPublications.searchUtils.totalResults}}
24 45390 konstantin
                        </span>
25
                    </a>
26
                </li>
27
                <li (click)="searchDatasetsInit()">
28
                    <a href="#researchDataTab">
29
                        Research Data
30
                        <span class="uk-badge uk-badge-notification">
31 45855 argiro.kok
                            {{fetchDatasets.searchUtils.totalResults}}
32 45390 konstantin
                        </span>
33
                    </a>
34
                </li>
35
            </ul>
36 43769 argiro.kok
37 45390 konstantin
            <ul id="tab-content" class="uk-switcher uk-margin">
38
                <li id="publicationsTab">
39 43769 argiro.kok
40 45855 argiro.kok
                    <div *ngIf="fetchPublications.searchUtils.totalResults == 0" class = "uk-alert">
41 45390 konstantin
                        There are no publications
42
                    </div>
43 43769 argiro.kok
44 45855 argiro.kok
                    <div *ngIf="fetchPublications.searchUtils.totalResults > 0">
45 45390 konstantin
                        <p>
46
                            The results below are discovered through our pilot algorithms.
47 46163 argiro.kok
                            <a href="mailto:feedback@openaire.eu">Let us know how we are doing!</a>
48 45390 konstantin
                        </p>
49 44072 konstantin
50 46094 konstantin
                        <div class = "uk-text-right" *ngIf = "fetchPublications.searchUtils.totalResults > 10" >
51
                            <!--a [href] = "linkToSearchPublications"-->
52
                            <a [queryParams]="{personId: personId, pe: 'and'}" routerLinkActive="router-link-active" [routerLink]="linkToSearchPublications">
53
                                View all {{fetchPublications.searchUtils.totalResults}} results
54
                            </a>
55
                        </div>
56 45898 konstantin
                        <search-result  [(results)]="fetchPublications.results"
57
                                        [(status)]= "fetchPublications.searchUtils.status"
58
                                        type="publication" urlParam="articleId">
59
                        </search-result>
60 45390 konstantin
                    </div>
61
                </li>
62 43769 argiro.kok
63 45390 konstantin
                <li id="researchDataTab">
64 45855 argiro.kok
                    <div *ngIf="fetchDatasets.searchUtils.totalResults == 0" class = "uk-alert">
65 45390 konstantin
                        There are no research data
66
                    </div>
67 44072 konstantin
68 45855 argiro.kok
                    <div *ngIf="fetchDatasets.searchUtils.totalResults > 0">
69 45390 konstantin
                        <p>
70
                            The results below are discovered through our pilot algorithms.
71 46163 argiro.kok
                            <a href="mailto:feedback@openaire.eu">Let us know how we are doing!</a>
72 45390 konstantin
                        </p>
73 44072 konstantin
74 46094 konstantin
                        <div class = "uk-text-right" *ngIf = "fetchDatasets.searchUtils.totalResults > 10" >
75
                            <!--a [href] = "linkToSearchDatasets"-->
76
                            <a [queryParams]="{personId: personId, pe: 'and'}" routerLinkActive="router-link-active" [routerLink]="linkToSearchDatasets">
77
                                View all {{fetchDatasets.searchUtils.totalResults}} results
78
                            </a>
79
                        </div>
80 45898 konstantin
                        <search-result  [(results)]="fetchDatasets.results"
81
                                        [(status)]= "fetchDatasets.status"
82
                                        type="dataset" urlParam="datasetId">
83
                        </search-result>
84 45390 konstantin
                    </div>
85
                </li>
86
            </ul>
87
        </div>
88 43769 argiro.kok
89 45390 konstantin
        <div class="uk-width-3-10">
90
            <ul class="uk-list uk-list-striped">
91
                <li>
92 46163 argiro.kok
                  <dl class="uk-description-list-line">
93
                      <dt  >Share - Bookmark
94
                      </dt>
95
                      <dd>
96 46237 argiro.kok
                        <addThis ></addThis>
97 46163 argiro.kok
                      </dd>
98
                  </dl>
99 45390 konstantin
                </li>
100
            </ul>
101 43769 argiro.kok
        </div>
102
    </div>
103
</div>