import {Component, OnInit, Output, EventEmitter, Input, ViewChild} from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import {ActivatedRoute, Router} from '@angular/router'; import { RecentActivityType } from '@app/core/common/enum/recent-activity-type'; import { Principal } from '@app/core/model/auth/principal'; import { DataTableRequest, DataTableMultiTypeRequest } from '@app/core/model/data-table/data-table-request'; import { DmpListingModel } from '@app/core/model/dmp/dmp-listing'; import { DmpCriteria } from '@app/core/query/dmp/dmp-criteria'; import { AuthService } from '@app/core/services/auth/auth.service'; import { DmpService } from '@app/core/services/dmp/dmp.service'; import { SnackBarNotificationLevel, UiNotificationService } from '@app/core/services/notification/ui-notification-service'; import { EnumUtils } from '@app/core/services/utilities/enum-utils.service'; import { ConfirmationDialogComponent } from '@common/modules/confirmation-dialog/confirmation-dialog.component'; import { BaseComponent } from '@common/base/base.component'; import { TranslateService } from '@ngx-translate/core'; import * as FileSaver from 'file-saver'; import { takeUntil, map, debounceTime } from 'rxjs/operators'; import { DmpInvitationDialogComponent } from '@app/ui/dmp/invitation/dmp-invitation-dialog.component'; import { DmpStatus } from '@app/core/common/enum/dmp-status'; import { DatasetService } from '@app/core/services/dataset/dataset.service'; import { DatasetListingModel } from '@app/core/model/dataset/dataset-listing'; import { Role } from '@app/core/common/enum/role'; import { RecentActivityModel } from '@app/core/model/recent-activity/recent-activity.model'; import { DashboardService } from '@app/core/services/dashboard/dashboard.service'; import { RecentActivityCriteria } from '@app/core/query/recent-activity/recent-activity-criteria'; import { RecentDmpModel } from '@app/core/model/recent-activity/recent-dmp-activity.model'; import { RecentDatasetModel } from '@app/core/model/recent-activity/recent-dataset-activity.model'; import { UserInfoListingModel } from '@app/core/model/user/user-info-listing'; import { DatasetWizardService } from '@app/core/services/dataset-wizard/dataset-wizard.service'; import { FormControl, FormBuilder, FormGroup } from '@angular/forms'; import { DatasetCopyDialogueComponent } from '@app/ui/dataset/dataset-wizard/dataset-copy-dialogue/dataset-copy-dialogue.component'; import { RecentActivityOrder } from '@app/core/common/enum/recent-activity-order'; import { Location } from '@angular/common'; import { LockService } from '@app/core/services/lock/lock.service'; import { DatasetUrlListing } from '@app/core/model/dataset/dataset-url-listing'; import { DmpEditorModel } from '@app/ui/dmp/editor/dmp-editor.model'; import { GrantTabModel } from '@app/ui/dmp/editor/grant-tab/grant-tab-model'; import { ProjectFormModel } from '@app/ui/dmp/editor/grant-tab/project-form-model'; import { FunderFormModel } from '@app/ui/dmp/editor/grant-tab/funder-form-model'; import { ExtraPropertiesFormModel } from '@app/ui/dmp/editor/general-tab/extra-properties-form.model'; import { DmpModel } from '@app/core/model/dmp/dmp'; import { CloneDialogComponent } from '@app/ui/dmp/clone/clone-dialog/clone-dialog.component'; import { MatomoService } from '@app/core/services/matomo/matomo-service'; import { HttpClient } from '@angular/common/http'; import { isNullOrUndefined } from '@app/utilities/enhancers/utils'; import { DmpProfileService } from '@app/core/services/dmp/dmp-profile.service'; import { DmpBlueprintDefinition, SystemFieldType } from '@app/core/model/dmp/dmp-blueprint/dmp-blueprint'; @Component({ selector: 'app-recent-edited-activity', templateUrl: './recent-edited-activity.component.html', styleUrls: ['./recent-edited-activity.component.css'] }) export class RecentEditedActivityComponent extends BaseComponent implements OnInit { @Output() totalCountRecentEdited: EventEmitter = new EventEmitter(); @ViewChild("results") resultsContainer; allRecentActivities: RecentActivityModel[]; recentActivityTypeEnum = RecentActivityType; dmpModel: DmpEditorModel; isDraft: boolean; totalCount: number; startIndex: number = 0; dmpOffset: number = 0; datasetOffset: number = 0; offsetLess: number = 0; pageSize: number = 5; dmpFormGroup: FormGroup; hasMoreActivity:boolean = true; public formGroup = new FormBuilder().group({ like: new FormControl(), order: new FormControl() }); publicMode = false; order = RecentActivityOrder; page: number = 1; @Input() isActive: boolean = false; constructor( private route: ActivatedRoute, private router: Router, public enumUtils: EnumUtils, private authentication: AuthService, private dmpService: DmpService, private dmpProfileService: DmpProfileService, private dashboardService: DashboardService, private language: TranslateService, private dialog: MatDialog, private uiNotificationService: UiNotificationService, private datasetWizardService: DatasetWizardService, private location: Location, private lockService: LockService, private httpClient: HttpClient, private matomoService: MatomoService ) { super(); } ngOnInit() { this.matomoService.trackPageView('Recent Edited Activity'); this.route.queryParams.subscribe(params => { if(this.isActive) { let page = (params['page'] === undefined) ? 1 : +params['page']; this.page = (page <= 0) ? 1 : page; this.datasetOffset = (this.page-1)*this.pageSize; this.dmpOffset = (this.page-1)*this.pageSize; if(this.page > 1) { this.offsetLess = (this.page-2)*this.pageSize; } let order = params['order']; if (this.isAuthenticated()) { if(order === undefined || (order != this.order.MODIFIED && order != this.order.LABEL && order != this.order.STATUS)) { order = this.order.MODIFIED; } } else { if(order === undefined || (order != this.order.PUBLISHED && order != this.order.LABEL)) { order = this.order.PUBLISHED; } } this.formGroup.get('order').setValue(order); let keyword = (params['keyword'] === undefined || params['keyword'].length <= 0) ? "" : params['keyword']; this.formGroup.get("like").setValue(keyword); this.updateUrl(); } }); if (this.isAuthenticated()) { if(!this.formGroup.get('order').value) { this.formGroup.get('order').setValue(this.order.MODIFIED); } const fields: Array = [((this.formGroup.get('order').value === 'status') || (this.formGroup.get('order').value === 'label') ? '+' : "-") + this.formGroup.get('order').value]; const allDataTableRequest: DataTableMultiTypeRequest = new DataTableMultiTypeRequest(this.dmpOffset, this.datasetOffset, 5, { fields: fields }); allDataTableRequest.criteria = new RecentActivityCriteria(); allDataTableRequest.criteria.like = this.formGroup.get('like').value; allDataTableRequest.criteria.order = this.formGroup.get('order').value; this.dashboardService .getRecentActivity(allDataTableRequest) .pipe(takeUntil(this._destroyed)) .subscribe(response => { this.allRecentActivities = response; this.allRecentActivities.forEach(recentActivity => { if (recentActivity.type === RecentActivityType.Dataset) { // this.datasetOffset = this.datasetOffset + 1; this.datasetOffset = this.page*this.pageSize; } else if (recentActivity.type === RecentActivityType.Dmp) { // this.dmpOffset = this.dmpOffset + 1; this.dmpOffset = this.page*this.pageSize; } }); this.totalCountRecentEdited.emit(this.allRecentActivities.length); if(this.allRecentActivities.length == 0 && this.page > 1) { let queryParams = { type: "recent", page: 1, order: this.formGroup.get("order").value }; if(this.formGroup.get("like").value) { queryParams['keyword'] = this.formGroup.get("like").value; } this.router.navigate(["/home"], { queryParams: queryParams }) } }); this.formGroup.get('like').valueChanges .pipe(takeUntil(this._destroyed), debounceTime(500)) .subscribe(x => { this.refresh() }); this.formGroup.get('order').valueChanges .pipe(takeUntil(this._destroyed)) .subscribe(x => { this.refresh() }); } else { this.publicMode = true; if(!this.formGroup.get('order').value) { this.formGroup.get('order').setValue(this.order.PUBLISHED); } const allDataTableRequest = this.setPublicDataTableRequest(); this.dashboardService .getRecentActivity(allDataTableRequest) .pipe(takeUntil(this._destroyed)) .subscribe(response => { this.allRecentActivities = response; this.allRecentActivities.forEach(recentActivity => { if (recentActivity.type === RecentActivityType.Dataset) { // this.datasetOffset = this.datasetOffset + 1; this.datasetOffset = this.page*this.pageSize; } else if (recentActivity.type === RecentActivityType.Dmp) { // this.dmpOffset = this.dmpOffset + 1; this.dmpOffset = this.page*this.pageSize; } }); this.totalCountRecentEdited.emit(this.allRecentActivities.length); if(this.allRecentActivities.length == 0 && this.page > 1) { let queryParams = { type: "recent", page: 1, order: this.formGroup.get("order").value }; if(this.formGroup.get("like").value) { queryParams['keyword'] = this.formGroup.get("like").value; } this.router.navigate(["/home"], { queryParams: queryParams }) } }); this.formGroup.get('like').valueChanges .pipe(takeUntil(this._destroyed), debounceTime(500)) .subscribe(x => { this.refresh() }); this.formGroup.get('order').valueChanges .pipe(takeUntil(this._destroyed)) .subscribe(x => { this.refresh() }); } } ngOnChanges() { if(this.isActive) { this.updateUrl(); } } updateUrl() { let parameters = ""; parameters += (this.page != 1 ? "&page="+this.page : ""); parameters += (((this.formGroup.get("order").value != this.order.MODIFIED && !this.publicMode) || (this.formGroup.get("order").value != this.order.PUBLISHED && this.publicMode)) ? "&order="+this.formGroup.get("order").value : ""); parameters += (this.formGroup.get("like").value ? ("&keyword="+this.formGroup.get("like").value) : ""); if(parameters) { parameters = "?type=recent" + parameters; } this.location.go(this.router.url.split('?')[0]+parameters); } getDatasets(activity: RecentDmpModel): DatasetUrlListing[] { return activity.datasets; } getGroupId(activity: RecentDmpModel): string { return activity.groupId; } getDmp(activity: RecentDatasetModel): String { return activity.dmp; } getDmpId(activity: RecentDatasetModel): String { return activity.dmpId; } private setPublicDataTableRequest(fields?: Array): DataTableMultiTypeRequest { const criteria = new RecentActivityCriteria(); criteria.like = this.formGroup.get("like").value ? this.formGroup.get("like").value : ""; if (!fields) { fields = new Array('-publishedAt'); } const dataTableRequest: DataTableMultiTypeRequest = new DataTableMultiTypeRequest(this.dmpOffset, this.datasetOffset, this.pageSize, { fields: fields }); dataTableRequest.criteria = criteria; return dataTableRequest; } // getPublic(activity: RecentDmpModel): boolean { // return activity.isPublic; // } // getUsers(activity: RecentDmpModel): UserInfoListingModel[] { // return activity.users; // } public isAuthenticated(): boolean { return !!this.authentication.current(); } isUserOwner(activity: DmpListingModel): boolean { const principal: Principal = this.authentication.current(); if (principal) return !!activity.users.find(x => (x.role === Role.Owner) && (principal.id === x.id)); } editClicked(dmp: DmpListingModel) { this.router.navigate(['/plans/edit/' + dmp.id]); } deleteDmpClicked(dmp: DmpListingModel) { this.lockService.checkLockStatus(dmp.id).pipe(takeUntil(this._destroyed)) .subscribe(lockStatus => { if (!lockStatus) { this.openDeleteDmpDialog(dmp); } else { this.openDmpLockedByUserDialog(); } }); } cloneOrNewVersionClicked(dmp: RecentActivityModel, isNewVersion: boolean) { this.dmpService.getSingle(dmp.id).pipe(map(data => data as DmpModel)) .pipe(takeUntil(this._destroyed)) .subscribe(data => { this.dmpModel = new DmpEditorModel(); this.dmpModel.grant = new GrantTabModel(); this.dmpModel.project = new ProjectFormModel(); this.dmpModel.funder = new FunderFormModel(); this.dmpModel.extraProperties = new ExtraPropertiesFormModel(); this.dmpModel.fromModel(data); this.dmpModel.status = DmpStatus.Draft; this.dmpFormGroup = this.dmpModel.buildForm(); if (!isNullOrUndefined(this.formGroup.get('profile').value)) { this.dmpProfileService.getSingleBlueprint(this.formGroup.get('profile').value) .pipe(takeUntil(this._destroyed)) .subscribe(result => { this.checkForGrant(result.definition); this.checkForFunder(result.definition); this.checkForProject(result.definition); }); } if (!isNewVersion) { this.dmpFormGroup.get('label').setValue(dmp.title + " New"); } this.openCloneDialog(isNewVersion); }); } private checkForGrant(blueprint: DmpBlueprintDefinition) { let hasGrant = false; blueprint.sections.forEach(section => section.fields.forEach( field => { if (field.category as unknown === 'SYSTEM' && field.type === SystemFieldType.GRANT) { hasGrant = true; } } )); if (!hasGrant) { this.formGroup.removeControl('grant'); } } private checkForFunder(blueprint: DmpBlueprintDefinition) { let hasFunder = false; blueprint.sections.forEach(section => section.fields.forEach( field => { if (field.category as unknown === 'SYSTEM' && field.type === SystemFieldType.FUNDER) { hasFunder = true; } } )); if (!hasFunder) { this.formGroup.removeControl('funder'); } } private checkForProject(blueprint: DmpBlueprintDefinition) { let hasProject = false; blueprint.sections.forEach(section => section.fields.forEach( field => { if (field.category as unknown === 'SYSTEM' && field.type === SystemFieldType.PROJECT) { hasProject = true; } } )); if (!hasProject) { this.formGroup.removeControl('project'); } } openCloneDialog(isNewVersion: boolean) { const dialogRef = this.dialog.open(CloneDialogComponent, { maxWidth: '700px', maxHeight: '80vh', data: { formGroup: this.dmpFormGroup, datasets: this.dmpFormGroup.get('datasets').value, isNewVersion: isNewVersion, confirmButton: this.language.instant('DMP-EDITOR.CLONE-DIALOG.SAVE'), cancelButton: this.language.instant('DMP-EDITOR.CLONE-DIALOG.CANCEL'), } }); dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => { if (result) { if (!isNewVersion) { this.dmpService.clone(this.dmpFormGroup.getRawValue(), this.dmpFormGroup.get('id').value) .pipe(takeUntil(this._destroyed)) .subscribe( complete => this.onCloneOrNewVersionCallbackSuccess(complete), error => this.onCloneOrNewVersionCallbackError(error) ); } else if (isNewVersion) { this.dmpService.newVersion(this.dmpFormGroup.getRawValue(), this.dmpFormGroup.get('id').value) .pipe(takeUntil(this._destroyed)) .subscribe( complete => this.onCloneOrNewVersionCallbackSuccess(complete), error => this.onCloneOrNewVersionCallbackError(error) ); } } }); } openDeleteDmpDialog(dmp: DmpListingModel) { const dialogRef = this.dialog.open(ConfirmationDialogComponent, { maxWidth: '300px', restoreFocus: false, data: { message: this.language.instant('GENERAL.CONFIRMATION-DIALOG.DELETE-ITEM'), confirmButton: this.language.instant('GENERAL.CONFIRMATION-DIALOG.ACTIONS.DELETE'), cancelButton: this.language.instant('GENERAL.CONFIRMATION-DIALOG.ACTIONS.CANCEL'), isDeleteConfirmation: true } }); dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => { if (result) { this.dmpService.delete(dmp.id) .pipe(takeUntil(this._destroyed)) .subscribe( complete => this.onDeleteCallbackSuccess(), error => this.onDeleteCallbackError(error) ); } }); } openDmpLockedByUserDialog() { const dialogRef = this.dialog.open(ConfirmationDialogComponent, { maxWidth: '400px', restoreFocus: false, data: { message: this.language.instant('DMP-EDITOR.ACTIONS.LOCK') } }); } openShareDialog(rowId: any, rowName: any) { const dialogRef = this.dialog.open(DmpInvitationDialogComponent, { // height: '250px', // width: '700px', autoFocus: false, restoreFocus: false, data: { dmpId: rowId, dmpName: rowName } }); } isDraftDmp(activity: DmpListingModel) { return activity.status == DmpStatus.Draft; } onCallbackSuccess(): void { this.uiNotificationService.snackBarNotification(this.language.instant('GENERAL.SNACK-BAR.SUCCESSFUL-UPDATE'), SnackBarNotificationLevel.Success); this.router.navigate(['/plans']); } reloadPage(): void { const path = this.location.path(); this.router.navigateByUrl('/reload', { skipLocationChange: true }).then(() => { this.router.navigate([path]); }); } onDeleteCallbackSuccess(): void { this.uiNotificationService.snackBarNotification(this.language.instant('GENERAL.SNACK-BAR.SUCCESSFUL-DELETE'), SnackBarNotificationLevel.Success); this.reloadPage(); } onDeleteCallbackError(error) { this.uiNotificationService.snackBarNotification(error.error.message ? this.language.instant(error.error.message) : this.language.instant('GENERAL.SNACK-BAR.UNSUCCESSFUL-DELETE'), SnackBarNotificationLevel.Error); } onCloneOrNewVersionCallbackSuccess(dmpId: String): void { this.uiNotificationService.snackBarNotification(this.language.instant('GENERAL.SNACK-BAR.SUCCESSFUL-UPDATE'), SnackBarNotificationLevel.Success); this.router.navigate(['/plans/edit/', dmpId]); } onCloneOrNewVersionCallbackError(error: any) { this.uiNotificationService.snackBarNotification(error.error.message ? this.language.instant(error.error.message) : this.language.instant('GENERAL.SNACK-BAR.UNSUCCESSFUL-CLONE'), SnackBarNotificationLevel.Error); } redirect(id: string, type: RecentActivityType) { switch (type) { case RecentActivityType.Grant: { this.router.navigate(["grants/edit/" + id]); return; } case RecentActivityType.Dataset: { if (this.isAuthenticated()) { this.router.navigate(['../datasets/overview/' + id]); } else { this.router.navigate(['../explore/publicOverview', id]); } return; } case RecentActivityType.Dmp: { if (this.isAuthenticated()) { this.router.navigate(['../plans/overview/' + id]); } else { this.router.navigate(['../explore-plans/publicOverview', id]); } return; } default: throw new Error("Unsupported Activity Type "); } } navigateToUrl(id: string, type: RecentActivityType): string[] { switch (type) { case RecentActivityType.Grant: { return ["grants/edit/" + id]; } case RecentActivityType.Dataset: { if (this.isAuthenticated()) { return ['../datasets/overview/' + id]; } else { return ['../explore/publicOverview', id]; } } case RecentActivityType.Dmp: { if (this.isAuthenticated()) { return ['../plans/overview/' + id]; } else { return ['../explore-plans/publicOverview', id]; } } default: throw new Error("Unsupported Activity Type "); } } roleDisplay(value: any) { const principal: Principal = this.authentication.current(); let role: number; if (principal) { value.forEach(element => { if (principal.id === element.id) { role = element.role; } }); } if (role === 0) { return this.language.instant('DMP-LISTING.OWNER'); } else if (role === 1) { return this.language.instant('DMP-LISTING.MEMBER'); } else { return this.language.instant('DMP-LISTING.OWNER'); } } // dmpProfileDisplay(value: any) { // if (value != null) { // return value; // } // else { // return "--"; // } // } downloadXml(id: string) { this.dmpService.downloadXML(id) .pipe(takeUntil(this._destroyed)) .subscribe(response => { const blob = new Blob([response.body], { type: 'application/xml' }); const filename = this.getFilenameFromContentDispositionHeader(response.headers.get('Content-Disposition')); FileSaver.saveAs(blob, filename); this.matomoService.trackDownload('dmps', "xml", id); }); } downloadDocx(id: string) { this.dmpService.downloadDocx(id) .pipe(takeUntil(this._destroyed)) .subscribe(response => { const blob = new Blob([response.body], { type: 'application/msword' }); const filename = this.getFilenameFromContentDispositionHeader(response.headers.get('Content-Disposition')); FileSaver.saveAs(blob, filename); this.matomoService.trackDownload('dmps', "docx", id); }); } downloadPdf(id: string) { this.dmpService.downloadPDF(id) .pipe(takeUntil(this._destroyed)) .subscribe(response => { const blob = new Blob([response.body], { type: 'application/pdf' }); const filename = this.getFilenameFromContentDispositionHeader(response.headers.get('Content-Disposition')); FileSaver.saveAs(blob, filename); this.matomoService.trackDownload('dmps', "pdf", id); }); } downloadJson(id: string) { this.dmpService.downloadJson(id) .pipe(takeUntil(this._destroyed)) .subscribe(response => { const blob = new Blob([response.body], { type: 'application/json' }); const filename = this.getFilenameFromContentDispositionHeader(response.headers.get('Content-Disposition')); FileSaver.saveAs(blob, filename); this.matomoService.trackDownload('dmps', "json", id); }, async error => { this.onExportCallbackError(error); }); } async onExportCallbackError(error: any) { const errorJsonText = await error.error.text(); const errorObj = JSON.parse(errorJsonText); this.uiNotificationService.snackBarNotification(errorObj.message, SnackBarNotificationLevel.Error); } downloadPDF(dataset: DatasetListingModel): void { this.datasetWizardService.downloadPDF(dataset.id as string) .pipe(takeUntil(this._destroyed)) .subscribe(response => { const blob = new Blob([response.body], { type: 'application/pdf' }); const filename = this.getFilenameFromContentDispositionHeader(response.headers.get('Content-Disposition')); FileSaver.saveAs(blob, filename); this.matomoService.trackDownload('datasets', "pdf", dataset.id); }); } downloadDOCX(dataset: DatasetListingModel): void { this.datasetWizardService.downloadDOCX(dataset.id as string) .pipe(takeUntil(this._destroyed)) .subscribe(response => { const blob = new Blob([response.body], { type: 'application/msword' }); const filename = this.getFilenameFromContentDispositionHeader(response.headers.get('Content-Disposition')); FileSaver.saveAs(blob, filename); this.matomoService.trackDownload('datasets', "docx", dataset.id); }); } downloadXML(dataset: DatasetListingModel): void { this.datasetWizardService.downloadXML(dataset.id as string) .pipe(takeUntil(this._destroyed)) .subscribe(response => { const blob = new Blob([response.body], { type: 'application/xml' }); const filename = this.getFilenameFromContentDispositionHeader(response.headers.get('Content-Disposition')); FileSaver.saveAs(blob, filename); this.matomoService.trackDownload('datasets', "xml", dataset.id); }); } getFilenameFromContentDispositionHeader(header: string): string { const regex: RegExp = new RegExp(/filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/g); const matches = header.match(regex); let filename: string; for (let i = 0; i < matches.length; i++) { const match = matches[i]; if (match.includes('filename="')) { filename = match.substring(10, match.length - 1); break; } else if (match.includes('filename=')) { filename = match.substring(9); break; } } return filename; } // newVersion(id: String, label: String) { // let url = this.router.createUrlTree(['/plans/new_version/', id, { dmpLabel: label }]); // window.open(url.toString(), '_blank'); // } viewVersions(rowId: String, rowLabel: String, activity: DmpListingModel) { if (activity.public && !this.isUserOwner(activity)) { let url = this.router.createUrlTree(['/explore-plans/versions/', rowId, { groupLabel: rowLabel }]); window.open(url.toString(), '_blank'); // this.router.navigate(['/explore-plans/versions/' + rowId], { queryParams: { groupLabel: rowLabel } }); } else { let url = this.router.createUrlTree(['/plans/versions/', rowId, { groupLabel: rowLabel }]); window.open(url.toString(), '_blank'); // this.router.navigate(['/plans/versions/' + rowId], { queryParams: { groupLabel: rowLabel } }); } } openDmpSearchDialogue(dataset: RecentDatasetModel) { const formControl = new FormControl(); const dialogRef = this.dialog.open(DatasetCopyDialogueComponent, { width: '500px', restoreFocus: false, data: { formControl: formControl, datasetId: dataset.id, datasetProfileId: dataset.profile.id, datasetProfileExist: false, confirmButton: this.language.instant('DATASET-WIZARD.DIALOGUE.COPY'), cancelButton: this.language.instant('DATASET-WIZARD.DIALOGUE.CANCEL') } }); dialogRef.afterClosed().pipe(takeUntil(this._destroyed)) .subscribe(result => { if (result && result.datasetProfileExist) { const newDmpId = result.formControl.value.id; // let url = this.router.createUrlTree(['/datasets/copy/', result.datasetId, { newDmpId: newDmpId }]); // window.open(url.toString(), '_blank'); this.router.navigate(['/datasets/copy/' + result.datasetId], { queryParams: { newDmpId: newDmpId } }); } }); } deleteDatasetClicked(id: string) { this.lockService.checkLockStatus(id).pipe(takeUntil(this._destroyed)) .subscribe(lockStatus => { if (!lockStatus) { this.openDeleteDatasetDialog(id); } else { this.openDatasetLockedByUserDialog(); } }); } openDeleteDatasetDialog(id: string): void { const dialogRef = this.dialog.open(ConfirmationDialogComponent, { maxWidth: '300px', restoreFocus: false, data: { message: this.language.instant('GENERAL.CONFIRMATION-DIALOG.DELETE-ITEM'), confirmButton: this.language.instant('GENERAL.CONFIRMATION-DIALOG.ACTIONS.DELETE'), cancelButton: this.language.instant('GENERAL.CONFIRMATION-DIALOG.ACTIONS.CANCEL'), isDeleteConfirmation: true } }); dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => { if (result) { this.datasetWizardService.delete(id) .pipe(takeUntil(this._destroyed)) .subscribe( complete => this.onDeleteCallbackSuccess(), error => this.onDeleteCallbackError(error) ); } }); } openDatasetLockedByUserDialog() { const dialogRef = this.dialog.open(ConfirmationDialogComponent, { maxWidth: '400px', restoreFocus: false, data: { message: this.language.instant('DATASET-WIZARD.ACTIONS.LOCK') } }); } refresh(): void { this.datasetOffset = 0; this.dmpOffset = 0; this.page = 1; this.updateUrl(); const fields: Array = [((this.formGroup.get('order').value === 'status') || (this.formGroup.get('order').value === 'label') ? '+' : "-") + this.formGroup.get('order').value]; // const fields: Array = ["-modified"]; this.startIndex = 0; const allDataTableRequest: DataTableMultiTypeRequest = new DataTableMultiTypeRequest(0, 0, this.pageSize, { fields: fields }); allDataTableRequest.criteria = new RecentActivityCriteria(); allDataTableRequest.criteria.like = this.formGroup.get("like").value; allDataTableRequest.criteria.order = this.formGroup.get("order").value; this.dashboardService .getRecentActivity(allDataTableRequest) .pipe(takeUntil(this._destroyed)) .subscribe(response => { this.allRecentActivities = response; this.allRecentActivities.forEach(recentActivity => { if (recentActivity.type === RecentActivityType.Dataset) { // this.datasetOffset = this.datasetOffset + 1; this.datasetOffset = this.page*this.pageSize; } else if (recentActivity.type === RecentActivityType.Dmp) { // this.dmpOffset = this.dmpOffset + 1; this.dmpOffset = this.page*this.pageSize; } }); if(response.length< this.pageSize) { this.hasMoreActivity = false; } else { this.hasMoreActivity = true; } this.totalCountRecentEdited.emit(this.allRecentActivities.length); }); } public loadNextOrPrevious(more: boolean = true) { const fields: Array = [((this.formGroup.get('order').value === 'status') || (this.formGroup.get('order').value === 'label') ? '+' : "-") + this.formGroup.get('order').value]; // const fields: Array = ["-modified"]; let request; if(more) { request = new DataTableMultiTypeRequest(this.dmpOffset, this.datasetOffset, this.pageSize, {fields: fields}); } else { request = new DataTableMultiTypeRequest(this.offsetLess, this.offsetLess, this.pageSize, {fields: fields}); } request.criteria = new RecentActivityCriteria(); request.criteria.like = this.formGroup.get("like").value ? this.formGroup.get("like").value : ""; request.criteria.order = this.formGroup.get("order").value; this.dashboardService.getRecentActivity(request).pipe(takeUntil(this._destroyed)).subscribe(result => { if (!result || result.length == 0) { this.hasMoreActivity = false; // return []; } else { this.page = this.page + (more ? 1 : -1); this.updateUrl(); // if(more) { // result.forEach(recentActivity => { // if (recentActivity.type === RecentActivityType.Dataset) { // this.datasetOffset = this.datasetOffset + 1; this.datasetOffset = this.page * this.pageSize; // } else if (recentActivity.type === RecentActivityType.Dmp) { // this.dmpOffset = this.dmpOffset + 1; this.dmpOffset = this.page * this.pageSize; // } // }); // } if (this.page > 1) { this.offsetLess = (this.page - 2) * this.pageSize; } if(result.length < this.pageSize) { this.hasMoreActivity = false; } else { this.hasMoreActivity = true; } // this.allRecentActivities = this.allRecentActivities.concat(result); // this.allRecentActivities = this.allRecentActivities.length > 0 ? this.mergeTwoSortedLists(this.allRecentActivities, result, this.formGroup.get('order').value) : result; this.allRecentActivities = result; this.totalCountRecentEdited.emit(this.allRecentActivities.length); if (more) { this.resultsContainer.nativeElement.scrollIntoView(); } } }); } private mergeTwoSortedLists(arr1: RecentActivityModel[], arr2: RecentActivityModel[], order: string): RecentActivityModel[] { let merged = []; let index1 = 0; let index2 = 0; let current = 0; while (current < (arr1.length + arr2.length)) { let isArr1Depleted = index1 >= arr1.length; let isArr2Depleted = index2 >= arr2.length; if (order === 'modified') { if (!isArr1Depleted && (isArr2Depleted || (new Date(arr1[index1].modified) > new Date(arr2[index2].modified)))) { merged[current] = arr1[index1]; index1++; } else { merged[current] = arr2[index2]; index2++; } } else if (order === 'created') { if (!isArr1Depleted && (isArr2Depleted || (new Date(arr1[index1].created) > new Date(arr2[index2].created)))) { merged[current] = arr1[index1]; index1++; } else { merged[current] = arr2[index2]; index2++; } } else if (order === 'label') { if (!isArr1Depleted && (isArr2Depleted || (arr1[index1].title.localeCompare(arr2[index2].title)))) { merged[current] = arr1[index1]; index1++; } else { merged[current] = arr2[index2]; index2++; } } else if (order === 'status') { if (!isArr1Depleted && (isArr2Depleted || (arr1[index1].status < arr2[index2].status))) { merged[current] = arr1[index1]; index1++; } else { merged[current] = arr2[index2]; index2++; } } else if (order === "publishedAt") { if (!isArr1Depleted && (isArr2Depleted || (new Date(arr1[index1].publishedAt) > new Date(arr2[index2].publishedAt)))) { merged[current] = arr1[index1]; index1++; } else { merged[current] = arr2[index2]; index2++; } } current++; } return merged; } // advancedClicked(dmp: DmpListingModel) { // const dialogRef = this.dialog.open(ExportMethodDialogComponent, { // maxWidth: '500px', // data: { // message: "Download as:", // XMLButton: "XML", // documentButton: "Document", // pdfButton: "PDF", // jsonButton: "JSON" // } // }); // dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => { // if (result == "pdf") { // this.downloadPDF(dmp.id); // } else if (result == "xml") { // this.downloadXml(dmp.id); // } else if (result == "doc") { // this.downloadDocx(dmp.id); // } else if (result == "json") { // this.downloadJson(dmp.id) // } // }); // } }