mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 13:03:04 +00:00
30 lines
1.3 KiB
TypeScript
30 lines
1.3 KiB
TypeScript
import { Component } from '@angular/core';
|
|
import { MetadataRepresentationListElementComponent } from '../metadata-representation-list-element.component';
|
|
import { VALUE_LIST_BROWSE_DEFINITION } from '../../../../core/shared/value-list-browse-definition.resource-type';
|
|
import { RouterLink } from '@angular/router';
|
|
import { NgIf } from '@angular/common';
|
|
|
|
@Component({
|
|
selector: 'ds-plain-text-metadata-list-element',
|
|
templateUrl: './plain-text-metadata-list-element.component.html',
|
|
standalone: true,
|
|
imports: [NgIf, RouterLink]
|
|
})
|
|
/**
|
|
* A component for displaying MetadataRepresentation objects in the form of plain text
|
|
* It will simply use the value retrieved from MetadataRepresentation.getValue() to display as plain text
|
|
*/
|
|
export class PlainTextMetadataListElementComponent extends MetadataRepresentationListElementComponent {
|
|
/**
|
|
* Get the appropriate query parameters for this browse link, depending on whether the browse definition
|
|
* expects 'startsWith' (eg browse by date) or 'value' (eg browse by title)
|
|
*/
|
|
getQueryParams() {
|
|
let queryParams = {startsWith: this.mdRepresentation.getValue()};
|
|
if (this.mdRepresentation.browseDefinition.getRenderType() === VALUE_LIST_BROWSE_DEFINITION.value) {
|
|
return {value: this.mdRepresentation.getValue()};
|
|
}
|
|
return queryParams;
|
|
}
|
|
}
|