2020-08-06 13:50:08 +02:00
|
|
|
|
import {Component, ElementRef, HostListener, Input, OnDestroy, OnInit, ViewChild} from "@angular/core";
|
2020-04-07 19:09:31 +02:00
|
|
|
|
import {Annotation, AnnotationService} from "./annotation.service";
|
2020-01-28 15:09:32 +01:00
|
|
|
|
import {ResultLandingInfo} from "../../utils/entities/resultLandingInfo";
|
2020-04-07 19:09:31 +02:00
|
|
|
|
import {EnvProperties} from "../../utils/properties/env-properties";
|
2020-07-15 13:32:03 +02:00
|
|
|
|
import {properties} from "../../../../environments/environment";
|
2020-08-06 13:50:08 +02:00
|
|
|
|
import {UserManagementService} from "../../services/user-management.service";
|
|
|
|
|
import {COOKIE} from "../../login/utils/helper.class";
|
|
|
|
|
import {Subscriber} from "rxjs";
|
2020-01-28 15:09:32 +01:00
|
|
|
|
|
|
|
|
|
@Component({
|
2020-03-27 11:06:09 +01:00
|
|
|
|
selector: 'b2note',
|
|
|
|
|
template: `
|
2020-03-30 10:45:08 +02:00
|
|
|
|
<div class="sideInfoTitle uk-margin-small-bottom">Annotations</div>
|
|
|
|
|
<div class="b2note">
|
2020-08-06 13:50:08 +02:00
|
|
|
|
<form ngNoForm *ngIf="pid && user"
|
2020-07-15 13:32:03 +02:00
|
|
|
|
[action]="properties.b2noteAPIURL + 'widget'"
|
2020-03-30 10:45:08 +02:00
|
|
|
|
method="post"
|
|
|
|
|
target="b2note_iframe"
|
|
|
|
|
class="uk-padding-small uk-padding-remove-vertical">
|
|
|
|
|
<!--URL of the annotated record-->
|
|
|
|
|
<input
|
|
|
|
|
type="hidden"
|
|
|
|
|
name="recordurl_tofeed"
|
|
|
|
|
[value]="url">
|
|
|
|
|
<!--URL of the record contents for downloading-->
|
|
|
|
|
<input
|
|
|
|
|
type="hidden"
|
|
|
|
|
name="subject_tofeed"
|
2020-05-25 10:19:27 +02:00
|
|
|
|
[value]="pid">
|
2020-03-30 10:45:08 +02:00
|
|
|
|
<!--PID of the annotated record-->
|
|
|
|
|
<input
|
|
|
|
|
type="hidden"
|
|
|
|
|
name="pid_tofeed"
|
|
|
|
|
[value]="pid">
|
|
|
|
|
<!--URL of the record contents for downloading-->
|
2020-07-15 13:32:03 +02:00
|
|
|
|
<button class="uk-flex uk-flex-middle uk-button"
|
2020-03-30 10:45:08 +02:00
|
|
|
|
(click)="toggleAnnotation($event)"
|
|
|
|
|
type="submit"
|
|
|
|
|
title="Click to annotate this page using B2Note.">
|
|
|
|
|
<img src="assets/common-assets/b2note.png" width="48" height="24">
|
|
|
|
|
<span>add annotation</span>
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
2020-08-06 13:50:08 +02:00
|
|
|
|
<div *ngIf="!pid || !user">
|
|
|
|
|
<button class="uk-flex uk-flex-middle disabled"
|
|
|
|
|
[title]="!pid?'Annotations are only available for resources with a PID (persistent identifier) like DOI, handle, PMID':
|
|
|
|
|
'Annotations are only available for logged in users'">
|
2020-05-29 11:50:49 +02:00
|
|
|
|
<img src="assets/common-assets/b2note.png" width="48" height="24">
|
|
|
|
|
<span>add annotation</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2020-10-12 15:10:07 +02:00
|
|
|
|
<div *ngIf="loading" class="loading-gif uk-margin-medium-top"></div>
|
|
|
|
|
<ul *ngIf="annotations && !loading" class="uk-list uk-list-divider">
|
|
|
|
|
<li *ngFor="let annotation of annotations.slice(0, visibleAnnotations)" uk-grid
|
|
|
|
|
class="uk-flex uk-flex-top uk-margin-remove-left">
|
2020-04-07 19:09:31 +02:00
|
|
|
|
<div [ngClass]="annotation.type" class="uk-width-auto">{{annotation.type}}</div>
|
2020-05-25 11:59:09 +02:00
|
|
|
|
<div [class.uk-width-1-3]="annotation.urls" [class.uk-width-1-6@s]="annotation.urls">{{annotation.text}}</div>
|
2020-04-07 19:09:31 +02:00
|
|
|
|
<ul class="uk-width-expand uk-list uk-margin-remove-top" *ngIf="annotation.urls">
|
2020-10-12 15:10:07 +02:00
|
|
|
|
<li *ngFor="let url of annotation.urls.slice(0, annotation.urlSize)"><a [href]="url"
|
|
|
|
|
target="_blank">{{url}}</a></li>
|
|
|
|
|
<li *ngIf="annotation.urlSize < annotation.urls.length"><a
|
|
|
|
|
(click)="annotation.urlSize = annotation.urls.length">+ {{annotation.urls.length - annotation.urlSize}}
|
|
|
|
|
more</a></li>
|
2020-04-07 19:09:31 +02:00
|
|
|
|
</ul>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<div *ngIf="visibleAnnotations < annotations.length" class="uk-margin-medium-top uk-text-center">
|
2020-10-12 15:10:07 +02:00
|
|
|
|
<button class="uk-button uk-button-primary"
|
|
|
|
|
(click)="visibleAnnotations = (visibleAnnotations + annotationSize)">Load More
|
|
|
|
|
</button>
|
2020-04-07 19:09:31 +02:00
|
|
|
|
</div>
|
2020-03-30 10:45:08 +02:00
|
|
|
|
</div>
|
2020-04-08 16:24:30 +02:00
|
|
|
|
<div [class.uk-hidden]="!visible">
|
|
|
|
|
<div class="widget-container" cdkDrag>
|
2020-04-07 19:09:31 +02:00
|
|
|
|
<!--Close button, should be bound to hide the widget-->
|
|
|
|
|
<button type="button" class="close" aria-label="Close" (click)="toggleAnnotation($event)">
|
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
|
</button>
|
|
|
|
|
<!--The glorious iframe with the running app!-->
|
2020-08-06 13:50:08 +02:00
|
|
|
|
<iframe #iframe id="b2note_iframe" name="b2note_iframe" class="b2note-iframe">
|
2020-04-07 19:09:31 +02:00
|
|
|
|
</iframe>
|
|
|
|
|
</div>
|
2020-03-27 11:06:09 +01:00
|
|
|
|
</div>`,
|
|
|
|
|
styleUrls: ['annotation.css']
|
2020-01-28 15:09:32 +01:00
|
|
|
|
})
|
|
|
|
|
export class AnnotationComponent implements OnInit, OnDestroy {
|
2020-03-27 11:06:09 +01:00
|
|
|
|
|
|
|
|
|
@Input()
|
|
|
|
|
public landingInfo: ResultLandingInfo = null;
|
|
|
|
|
@Input()
|
|
|
|
|
public id: string = null;
|
2020-07-15 13:32:03 +02:00
|
|
|
|
public properties: EnvProperties = properties;
|
2020-03-27 11:06:09 +01:00
|
|
|
|
public url: string = null;
|
|
|
|
|
public pid: string = null;
|
|
|
|
|
public keywords: string[] = [];
|
|
|
|
|
public visible: boolean = false;
|
2020-04-07 19:09:31 +02:00
|
|
|
|
public annotations: Annotation[] = [];
|
2020-05-29 11:50:49 +02:00
|
|
|
|
public annotationSize: number = 3;
|
2020-08-06 13:50:08 +02:00
|
|
|
|
public user;
|
2020-04-07 19:09:31 +02:00
|
|
|
|
public visibleAnnotations: number;
|
2020-10-12 15:10:07 +02:00
|
|
|
|
public loading: boolean = false;
|
2020-08-06 13:50:08 +02:00
|
|
|
|
@ViewChild('iframe') iframe: ElementRef;
|
|
|
|
|
private subscriptions: any[] = [];
|
2020-03-27 11:06:09 +01:00
|
|
|
|
|
2020-08-06 13:50:08 +02:00
|
|
|
|
constructor(private annotationService: AnnotationService,
|
|
|
|
|
private userManagementService: UserManagementService) {
|
2020-03-27 11:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 13:32:03 +02:00
|
|
|
|
@HostListener('window:message', ['$event'])
|
|
|
|
|
public onChange(event) {
|
2020-10-12 15:10:07 +02:00
|
|
|
|
if (this.properties.b2noteAPIURL.includes(event.origin)) {
|
|
|
|
|
if (event.data === "B2NOTE loaded") {
|
|
|
|
|
let token = COOKIE.getCookie('AccessToken');
|
|
|
|
|
this.iframe.nativeElement.contentWindow.postMessage({token: token}, this.properties.b2noteAPIURL);
|
2020-08-06 13:50:08 +02:00
|
|
|
|
} else {
|
|
|
|
|
this.getAnnotations();
|
|
|
|
|
}
|
2020-07-15 13:32:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-27 11:06:09 +01:00
|
|
|
|
ngOnInit(): void {
|
2020-08-06 13:50:08 +02:00
|
|
|
|
this.subscriptions.push(this.userManagementService.getUserInfo().subscribe(user => {
|
|
|
|
|
this.user = user;
|
|
|
|
|
}));
|
2020-04-07 19:09:31 +02:00
|
|
|
|
this.visibleAnnotations = this.annotationSize;
|
2020-03-27 11:06:09 +01:00
|
|
|
|
if (typeof window !== "undefined") {
|
|
|
|
|
let id = this.id;
|
|
|
|
|
this.url = window.location.href;
|
|
|
|
|
if (this.landingInfo.deletedByInferenceIds) {
|
|
|
|
|
id = this.landingInfo.deletedByInferenceIds[0];
|
|
|
|
|
this.url = this.url.replace(this.id, id);
|
|
|
|
|
}
|
2020-05-05 12:37:36 +02:00
|
|
|
|
if (this.landingInfo.identifiers && this.landingInfo.identifiers.size > 0) {
|
|
|
|
|
if (this.landingInfo.identifiers.get('doi')) {
|
|
|
|
|
this.pid = this.landingInfo.identifiers.get('doi')[0];
|
|
|
|
|
} else {
|
|
|
|
|
const key: string = this.landingInfo.identifiers.keys().next().value;
|
|
|
|
|
if (key) {
|
|
|
|
|
this.pid = this.landingInfo.identifiers.get(key)[0];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-12 15:10:07 +02:00
|
|
|
|
if (this.pid) {
|
2020-07-15 13:32:03 +02:00
|
|
|
|
this.getAnnotations();
|
2020-05-29 11:50:49 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-06 13:50:08 +02:00
|
|
|
|
private clearSubscriptions() {
|
|
|
|
|
this.subscriptions.forEach(subscription => {
|
|
|
|
|
if (subscription instanceof Subscriber) {
|
|
|
|
|
subscription.unsubscribe();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.subscriptions = [];
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 13:32:03 +02:00
|
|
|
|
private getAnnotations() {
|
2020-10-12 15:10:07 +02:00
|
|
|
|
if(!this.annotations || this.annotations.length === 0) {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
}
|
2020-07-15 13:32:03 +02:00
|
|
|
|
this.annotationService.getAllAnnotations(this.properties, this.pid).subscribe(annotations => {
|
|
|
|
|
this.annotations = annotations;
|
|
|
|
|
this.annotations.forEach(annotation => {
|
|
|
|
|
annotation.urlSize = 3;
|
|
|
|
|
});
|
2020-10-12 15:10:07 +02:00
|
|
|
|
this.loading = false;
|
2020-07-15 13:32:03 +02:00
|
|
|
|
});
|
2020-03-27 11:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnDestroy(): void {
|
2020-08-06 13:50:08 +02:00
|
|
|
|
this.clearSubscriptions();
|
2020-03-27 11:06:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public toggleAnnotation(event) {
|
|
|
|
|
if (this.visible) {
|
2020-03-30 10:45:08 +02:00
|
|
|
|
event.preventDefault();
|
2020-01-28 15:09:32 +01:00
|
|
|
|
}
|
2020-03-27 11:06:09 +01:00
|
|
|
|
this.visible = !this.visible;
|
|
|
|
|
}
|
2020-05-25 10:19:27 +02:00
|
|
|
|
}
|