mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 13:03:04 +00:00
56434: property docs for entity-page-fields components
This commit is contained in:
@@ -21,7 +21,14 @@ import { isNotEmpty } from '../../../../shared/empty.util';
|
|||||||
* The component for displaying metadata and relations of an item with entity type Journal Volume
|
* The component for displaying metadata and relations of an item with entity type Journal Volume
|
||||||
*/
|
*/
|
||||||
export class JournalVolumePageFieldsComponent extends EntityPageFieldsComponent {
|
export class JournalVolumePageFieldsComponent extends EntityPageFieldsComponent {
|
||||||
|
/**
|
||||||
|
* The journals related to this journal volume
|
||||||
|
*/
|
||||||
journals$: Observable<Item[]>;
|
journals$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The journal issues related to this journal volume
|
||||||
|
*/
|
||||||
issues$: Observable<Item[]>;
|
issues$: Observable<Item[]>;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
@@ -21,9 +21,19 @@ import { isNotEmpty } from '../../../../shared/empty.util';
|
|||||||
* The component for displaying metadata and relations of an item with entity type Organisation Unit
|
* The component for displaying metadata and relations of an item with entity type Organisation Unit
|
||||||
*/
|
*/
|
||||||
export class OrgUnitPageFieldsComponent extends EntityPageFieldsComponent implements OnInit {
|
export class OrgUnitPageFieldsComponent extends EntityPageFieldsComponent implements OnInit {
|
||||||
|
/**
|
||||||
|
* The people related to this organisation unit
|
||||||
|
*/
|
||||||
people$: Observable<Item[]>;
|
people$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The projects related to this organisation unit
|
||||||
|
*/
|
||||||
projects$: Observable<Item[]>;
|
projects$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The publications related to this organisation unit
|
||||||
|
*/
|
||||||
publications$: Observable<Item[]>;
|
publications$: Observable<Item[]>;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
@@ -22,10 +22,29 @@ import { isNotEmpty } from '../../../../shared/empty.util';
|
|||||||
* The component for displaying metadata and relations of an item with entity type Person
|
* The component for displaying metadata and relations of an item with entity type Person
|
||||||
*/
|
*/
|
||||||
export class PersonPageFieldsComponent extends EntityPageFieldsComponent {
|
export class PersonPageFieldsComponent extends EntityPageFieldsComponent {
|
||||||
|
/**
|
||||||
|
* The publications related to this person
|
||||||
|
*/
|
||||||
publications$: Observable<Item[]>;
|
publications$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The projects related to this person
|
||||||
|
*/
|
||||||
projects$: Observable<Item[]>;
|
projects$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The organisation units related to this person
|
||||||
|
*/
|
||||||
orgUnits$: Observable<Item[]>;
|
orgUnits$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The applied fixed filter
|
||||||
|
*/
|
||||||
fixedFilter$: Observable<string>;
|
fixedFilter$: Observable<string>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The query used for applying the fixed filter
|
||||||
|
*/
|
||||||
fixedFilterQuery: string;
|
fixedFilterQuery: string;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
@@ -21,8 +21,19 @@ import { isNotEmpty } from '../../../../shared/empty.util';
|
|||||||
* The component for displaying metadata and relations of an item with entity type Project
|
* The component for displaying metadata and relations of an item with entity type Project
|
||||||
*/
|
*/
|
||||||
export class ProjectPageFieldsComponent extends EntityPageFieldsComponent implements OnInit {
|
export class ProjectPageFieldsComponent extends EntityPageFieldsComponent implements OnInit {
|
||||||
|
/**
|
||||||
|
* The people related to this project
|
||||||
|
*/
|
||||||
people$: Observable<Item[]>;
|
people$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The publications related to this project
|
||||||
|
*/
|
||||||
publications$: Observable<Item[]>;
|
publications$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The organisation units related to this project
|
||||||
|
*/
|
||||||
orgUnits$: Observable<Item[]>;
|
orgUnits$: Observable<Item[]>;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
@@ -22,9 +22,24 @@ import {
|
|||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
})
|
})
|
||||||
export class PublicationPageFieldsComponent extends EntityPageFieldsComponent implements OnInit {
|
export class PublicationPageFieldsComponent extends EntityPageFieldsComponent implements OnInit {
|
||||||
|
/**
|
||||||
|
* The authors related to this publication
|
||||||
|
*/
|
||||||
authors$: Observable<Item[]>;
|
authors$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The projects related to this publication
|
||||||
|
*/
|
||||||
projects$: Observable<Item[]>;
|
projects$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The organisation units related to this publication
|
||||||
|
*/
|
||||||
orgUnits$: Observable<Item[]>;
|
orgUnits$: Observable<Item[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The journal issues related to this publication
|
||||||
|
*/
|
||||||
journalIssues$: Observable<Item[]>;
|
journalIssues$: Observable<Item[]>;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
Reference in New Issue
Block a user