mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
64 lines
2.6 KiB
TypeScript
64 lines
2.6 KiB
TypeScript
import { Component } from '@angular/core';
|
|
import { Location, LocationStrategy, PathLocationStrategy } from '@angular/common';
|
|
|
|
import { Observable } from 'rxjs';
|
|
|
|
import { ViewMode } from '../../../../core/shared/view-mode.model';
|
|
import { RemoteData } from '../../../../core/data/remote-data';
|
|
import { WorkflowItem } from '../../../../core/submission/models/workflowitem.model';
|
|
import { ClaimedTask } from '../../../../core/tasks/models/claimed-task-object.model';
|
|
import { MyDspaceItemStatusType } from '../../../object-collection/shared/mydspace-item-status/my-dspace-item-status-type';
|
|
import { listableObjectComponent } from '../../../object-collection/shared/listable-object/listable-object.decorator';
|
|
import { ClaimedTaskSearchResult } from '../../../object-collection/shared/claimed-task-search-result.model';
|
|
import { SearchResultListElementComponent } from '../../search-result-list-element/search-result-list-element.component';
|
|
import { followLink } from '../../../utils/follow-link-config.model';
|
|
import { LinkService } from '../../../../core/cache/builders/link.service';
|
|
import { TruncatableService } from '../../../truncatable/truncatable.service';
|
|
|
|
/**
|
|
* This component renders claimed task object for the search result in the list view.
|
|
*/
|
|
@Component({
|
|
selector: 'ds-claimed-search-result-list-element',
|
|
styleUrls: ['../../search-result-list-element/search-result-list-element.component.scss'],
|
|
templateUrl: './claimed-search-result-list-element.component.html',
|
|
providers: [Location, { provide: LocationStrategy, useClass: PathLocationStrategy }]
|
|
})
|
|
|
|
@listableObjectComponent(ClaimedTaskSearchResult, ViewMode.ListElement)
|
|
export class ClaimedSearchResultListElementComponent extends SearchResultListElementComponent<ClaimedTaskSearchResult, ClaimedTask> {
|
|
|
|
/**
|
|
* A boolean representing if to show submitter information
|
|
*/
|
|
public showSubmitter = true;
|
|
|
|
/**
|
|
* Represent item's status
|
|
*/
|
|
public status = MyDspaceItemStatusType.VALIDATION;
|
|
|
|
/**
|
|
* The workflowitem object that belonging to the result object
|
|
*/
|
|
public workflowitemRD$: Observable<RemoteData<WorkflowItem>>;
|
|
|
|
constructor(
|
|
protected linkService: LinkService,
|
|
protected truncatableService: TruncatableService
|
|
) {
|
|
super(truncatableService);
|
|
}
|
|
|
|
/**
|
|
* Initialize all instance variables
|
|
*/
|
|
ngOnInit() {
|
|
super.ngOnInit();
|
|
this.linkService.resolveLinks(this.dso, followLink('workflowitem', null, true, true, true,
|
|
followLink('item'), followLink('submitter')
|
|
), followLink('action'));
|
|
this.workflowitemRD$ = this.dso.workflowitem as Observable<RemoteData<WorkflowItem>>;
|
|
}
|
|
}
|