2020-02-11 12:58:51 +01:00
|
|
|
import {Component, EventEmitter, Input, OnChanges, Output, SimpleChanges} from '@angular/core';
|
|
|
|
import {FormBuilder, FormGroup} from "@angular/forms";
|
|
|
|
import {Filter} from "./searchHelperClasses.class";
|
2020-02-13 15:44:51 +01:00
|
|
|
import {EnvProperties} from "../../utils/properties/env-properties";
|
|
|
|
import {ConfigurationService} from "../../utils/configuration/configuration.service";
|
2020-03-27 13:39:18 +01:00
|
|
|
import {Subject, Subscription} from "rxjs";
|
|
|
|
import {debounceTime} from "rxjs/operators";
|
2020-02-11 12:58:51 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'quick-selections',
|
|
|
|
template: `
|
2020-04-22 15:00:13 +02:00
|
|
|
<form *ngIf="resultTypes || quickFilter" [formGroup]="control" class="uk-text-small uk-margin-small-bottom uk-grid">
|
|
|
|
<div *ngIf="quickFilter" class="uk-margin-small-top uk-padding-remove-left ">
|
2020-02-13 15:44:51 +01:00
|
|
|
<span class="uk-text-bold">{{quickFilter.value}}</span>
|
|
|
|
<mat-slide-toggle
|
|
|
|
class="uk-margin-small-left" formControlName="QFselected" (change)="quickFilterChanged()">
|
2020-02-11 12:58:51 +01:00
|
|
|
</mat-slide-toggle>
|
|
|
|
</div>
|
2020-04-22 15:00:13 +02:00
|
|
|
<div *ngIf="resultTypes && showEntities" class="uk-margin-small-top">
|
2020-02-13 15:44:51 +01:00
|
|
|
<span class="uk-text-muted">Include: </span>
|
|
|
|
<span>
|
|
|
|
<span *ngIf="showPublications" class="uk-margin-small-left"> <input type="checkbox" id="publ" name="Publications" formControlName="publication" (change)="changed()"> Publications </span>
|
2020-03-04 13:42:52 +01:00
|
|
|
<span *ngIf="showDatasets" class="uk-margin-small-left"> <input type="checkbox" formControlName="dataset" (change)="changed()"> Research data </span>
|
2020-02-13 15:44:51 +01:00
|
|
|
<span *ngIf="showSoftware" class="uk-margin-small-left"> <input type="checkbox" formControlName="software" (change)="changed()"> Software </span>
|
2020-03-12 14:49:10 +01:00
|
|
|
<span *ngIf="showOrp" class="uk-margin-small-left"> <input type="checkbox" formControlName="other" (change)="changed()"> Other research products </span>
|
2020-02-11 12:58:51 +01:00
|
|
|
</span>
|
2020-02-13 15:44:51 +01:00
|
|
|
</div>
|
2020-02-11 12:58:51 +01:00
|
|
|
</form>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
|
|
|
|
export class QuickSelectionsComponent implements OnChanges {
|
|
|
|
@Input() resultTypes;
|
|
|
|
@Output() typeChange = new EventEmitter();
|
|
|
|
@Input() isDisabled;
|
|
|
|
@Input() quickFilter: { filter: Filter, selected: boolean, filterId: string, value: string };
|
|
|
|
@Input() QFselected: boolean;
|
|
|
|
control: FormGroup;
|
|
|
|
initialized = false;
|
2020-02-13 15:44:51 +01:00
|
|
|
@Input() properties: EnvProperties;
|
|
|
|
showPublications:boolean= false;
|
|
|
|
showDatasets:boolean= false;
|
|
|
|
showSoftware: boolean = false;
|
|
|
|
showOrp: boolean = false;
|
|
|
|
showEntities = false;
|
2020-03-27 13:39:18 +01:00
|
|
|
resultTypesObs: Subscription ;
|
|
|
|
private clicks = new Subject();
|
2020-02-13 15:44:51 +01:00
|
|
|
constructor(private _fb: FormBuilder, private config: ConfigurationService) {
|
2020-02-11 12:58:51 +01:00
|
|
|
|
|
|
|
this.control = this._fb.group({
|
|
|
|
publication: true,
|
|
|
|
dataset: true,
|
|
|
|
software: true,
|
|
|
|
other: true,
|
|
|
|
QFselected: true
|
|
|
|
});
|
|
|
|
|
2020-02-13 15:44:51 +01:00
|
|
|
|
2020-02-11 12:58:51 +01:00
|
|
|
}
|
|
|
|
|
2020-03-27 13:39:18 +01:00
|
|
|
changed() {
|
2020-02-11 12:58:51 +01:00
|
|
|
if (!this.initialized && this.isDisabled) {
|
|
|
|
this.initialized = true;
|
|
|
|
return;
|
|
|
|
}
|
2020-03-27 13:39:18 +01:00
|
|
|
this.clicks.next();
|
|
|
|
}
|
|
|
|
actuallyChanged(){
|
|
|
|
|
2020-02-11 12:58:51 +01:00
|
|
|
let value = this.control.getRawValue();
|
|
|
|
this.resultTypes.publication = value.publication;
|
|
|
|
this.resultTypes.dataset = value.dataset;
|
|
|
|
this.resultTypes.software = value.software;
|
|
|
|
this.resultTypes.other = value.other;
|
2020-03-27 13:39:18 +01:00
|
|
|
if (this.resultTypes && !this.resultTypes.publication && !this.resultTypes.dataset && !this.resultTypes.software && !this.resultTypes.other) {
|
2020-02-11 12:58:51 +01:00
|
|
|
this.resultTypes.publication = true;
|
|
|
|
this.resultTypes.dataset = true;
|
|
|
|
this.resultTypes.software = true;
|
|
|
|
this.resultTypes.other = true;
|
|
|
|
this.setFormValues();
|
|
|
|
}
|
|
|
|
this.typeChange.emit({});
|
|
|
|
}
|
|
|
|
|
|
|
|
quickFilterChanged() {
|
|
|
|
let value = this.control.getRawValue();
|
|
|
|
this.quickFilter.selected = value.QFselected;
|
2020-02-13 15:44:51 +01:00
|
|
|
if(this.quickFilter.filter) {
|
2020-03-27 13:39:18 +01:00
|
|
|
this.quickFilter.filter.countSelectedValues = 0;
|
2020-02-13 15:44:51 +01:00
|
|
|
if (value.QFselected) {
|
|
|
|
for (let filterValue of this.quickFilter.filter.values) {
|
2020-02-28 11:05:59 +01:00
|
|
|
if((filterValue.name == this.quickFilter.value)) {
|
|
|
|
filterValue.selected = true
|
|
|
|
this.quickFilter.filter.countSelectedValues = 1;
|
|
|
|
}else{
|
|
|
|
filterValue.selected = false;
|
|
|
|
}
|
2020-02-13 15:44:51 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (let filterValue of this.quickFilter.filter.values) {
|
|
|
|
filterValue.selected = false;
|
|
|
|
}
|
2020-02-11 12:58:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
this.typeChange.emit({});
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
if (this.resultTypes) {
|
|
|
|
this.setFormValues();
|
|
|
|
}
|
2020-02-13 15:44:51 +01:00
|
|
|
if(this.properties) {
|
|
|
|
this.config.getCommunityInformation(this.properties, this.properties.adminToolsCommunity).subscribe(data => {
|
|
|
|
var showEntity = {};
|
|
|
|
for (var i = 0; i < data['entities'].length; i++) {
|
|
|
|
showEntity["" + data['entities'][i]["pid"] + ""] = data['entities'][i]["isEnabled"];
|
|
|
|
}
|
|
|
|
this.showPublications = showEntity["publication"];
|
|
|
|
this.showDatasets = showEntity["dataset"];
|
|
|
|
this.showSoftware = showEntity["software"];
|
|
|
|
this.showOrp = showEntity["orp"];
|
|
|
|
this.showEntities = this.showPublications || this.showDatasets || this.showSoftware || this.showOrp;
|
|
|
|
});
|
|
|
|
}
|
2020-03-27 13:39:18 +01:00
|
|
|
this.resultTypesObs = this.clicks.pipe(
|
|
|
|
debounceTime(1000)
|
|
|
|
).subscribe(e =>{this.actuallyChanged()} );
|
|
|
|
|
2020-02-11 12:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ngOnChanges(changes: SimpleChanges): void {
|
|
|
|
if (changes.isDisabled) {
|
|
|
|
if (changes.isDisabled.currentValue == true) {
|
|
|
|
this.control.disable();
|
|
|
|
} else if (changes.isDisabled.currentValue == false) {
|
|
|
|
this.control.enable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (changes.QFselected) {
|
|
|
|
let value = this.control.getRawValue();
|
|
|
|
if (changes.QFselected.currentValue != value.QFselected) {
|
|
|
|
this.setFormValues();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-04-22 15:00:13 +02:00
|
|
|
if (changes.resultTypes) {
|
|
|
|
this.setFormValues();
|
|
|
|
}
|
2020-02-11 12:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
setFormValues() {
|
|
|
|
this.control.setValue({
|
2020-02-11 15:56:20 +01:00
|
|
|
publication: (this.resultTypes && this.resultTypes.publication)?this.resultTypes.publication:null,
|
|
|
|
dataset: (this.resultTypes && this.resultTypes.dataset)?this.resultTypes.dataset:null,
|
|
|
|
software: (this.resultTypes && this.resultTypes.software)?this.resultTypes.software:null,
|
|
|
|
other: (this.resultTypes && this.resultTypes.other)?this.resultTypes.other:null,
|
2020-02-11 12:58:51 +01:00
|
|
|
QFselected: this.QFselected
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|