2019-07-23 14:23:12 +02:00
|
|
|
import {Component, Input} from '@angular/core';
|
|
|
|
import {Meta, Title} from '@angular/platform-browser';
|
2019-09-13 09:01:19 +02:00
|
|
|
import {User} from "../../login/utils/helper.class";
|
|
|
|
import {UserManagementService} from "../../services/user-management.service";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Component({
|
2019-07-23 14:23:12 +02:00
|
|
|
selector: 'my-claims',
|
|
|
|
template: `
|
|
|
|
<div id="tm-main" class=" uk-section uk-padding-remove-top uk-margin-small-top tm-middle">
|
|
|
|
<div class="uk-grid" >
|
|
|
|
<div class="tm-main uk-width-1-1@s uk-width-1-1@m uk-width-1-1@l uk-row-first ">
|
|
|
|
|
2019-10-01 10:26:17 +02:00
|
|
|
<div class="uk-container">
|
|
|
|
<div class="uk-article-title custom-article-title">
|
2019-07-23 14:23:12 +02:00
|
|
|
My links
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class=" ">
|
|
|
|
Manage your links in OpenAIRE
|
|
|
|
</div>
|
|
|
|
<div>
|
2019-09-13 09:01:19 +02:00
|
|
|
<displayClaims *ngIf="user" [user]="user" [enableDelete]=true [myClaims]=true [isAdmin]=false [showUserEmail]=false
|
2019-08-02 16:55:32 +02:00
|
|
|
[claimsInfoURL]=claimsInfoURL [communityId]=communityId
|
|
|
|
[piwikSiteId]="piwikSiteId" title="My links">
|
|
|
|
</displayClaims>
|
2019-07-23 14:23:12 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-23 14:23:12 +02:00
|
|
|
`
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
})
|
2019-07-23 14:23:12 +02:00
|
|
|
export class MyClaimsComponent {
|
|
|
|
@Input() claimsInfoURL: string;
|
2019-07-24 17:46:49 +02:00
|
|
|
@Input() communityId:string;
|
2019-08-02 16:55:32 +02:00
|
|
|
@Input() piwikSiteId = null;
|
2019-09-13 09:01:19 +02:00
|
|
|
@Input() userInfoURL: string;
|
|
|
|
public user: User = null;
|
2018-06-29 13:01:48 +02:00
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
constructor(private userManagementService: UserManagementService) {}
|
2019-07-23 14:23:12 +02:00
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
ngOnInit() {
|
|
|
|
this.userManagementService.getUserInfo(this.userInfoURL).subscribe(user => {
|
|
|
|
this.user = user;
|
|
|
|
});
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
}
|