Updated TypeDoc for themed components

This commit is contained in:
lotte
2021-03-17 12:09:50 +01:00
committed by Art Lowel
parent b12e616ff6
commit c19ee0d49e
15 changed files with 43 additions and 57 deletions

View File

@@ -3,14 +3,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
import { BrowseBySwitcherComponent } from './browse-by-switcher.component';
/**
* Themed wrapper for BrowseBySwitcherComponent
*/
@Component({
selector: 'ds-themed-browse-by-switcher',
styleUrls: [],
templateUrl: '../../shared/theme-support/themed.component.html'
})
/**
* Component for determining what Browse-By component to use depending on the metadata (browse ID) provided
*/
export class ThemedBrowseBySwitcherComponent extends ThemedComponent<BrowseBySwitcherComponent> {
protected getComponentName(): string {
return 'BrowseBySwitcherComponent';

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../shared/theme-support/themed.component';
import { CollectionPageComponent } from './collection-page.component';
/**
* Themed wrapper for CollectionPageComponent
*/
@Component({
selector: 'ds-themed-community-page',
styleUrls: [],
templateUrl: '../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedCollectionPageComponent extends ThemedComponent<CollectionPageComponent> {
protected getComponentName(): string {
return 'CollectionPageComponent';

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../shared/theme-support/themed.component';
import { CommunityPageComponent } from './community-page.component';
/**
* Themed wrapper for CommunityPageComponent
*/
@Component({
selector: 'ds-themed-community-page',
styleUrls: [],
templateUrl: '../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedCommunityPageComponent extends ThemedComponent<CommunityPageComponent> {
protected getComponentName(): string {
return 'CommunityPageComponent';

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
import { ObjectNotFoundComponent } from './objectnotfound.component';
/**
* Themed wrapper for ObjectNotFoundComponent
*/
@Component({
selector: 'ds-themed-objnotfound',
styleUrls: [],
templateUrl: '../../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedObjectNotFoundComponent extends ThemedComponent<ObjectNotFoundComponent> {
protected getComponentName(): string {
return 'ObjectNotFoundComponent';

View File

@@ -4,15 +4,14 @@ import { ConfigurationSearchPageComponent } from './configuration-search-page.co
import { Observable } from 'rxjs';
import { Context } from '../core/shared/context.model';
/**
* Themed wrapper for ConfigurationSearchPageComponent
*/
@Component({
selector: 'ds-themed-configuration-search-page',
styleUrls: [],
templateUrl: '../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedConfigurationSearchPageComponent extends ThemedComponent<ConfigurationSearchPageComponent> {
/**
* The configuration to use for the search options

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../shared/theme-support/themed.component';
import { SearchPageComponent } from './search-page.component';
/**
* Themed wrapper for SearchPageComponent
*/
@Component({
selector: 'ds-themed-search-page',
styleUrls: [],
templateUrl: '../shared/theme-support/themed.component.html',
})
/**
* This component represents the whole search page
* It renders search results depending on the current search options
*/
export class ThemedSearchPageComponent extends ThemedComponent<SearchPageComponent> {
protected getComponentName(): string {

View File

@@ -3,8 +3,7 @@ import { ThemedComponent } from '../shared/theme-support/themed.component';
import { CommunityListPageComponent } from './community-list-page.component';
/**
* Page with title and the community list tree, as described in community-list.component;
* navigated to with community-list.page.routing.module
* Themed wrapper for CommunityListPageComponent
*/
@Component({
selector: 'ds-themed-community-list-page',

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../shared/theme-support/themed.component';
import { ForbiddenComponent } from './forbidden.component';
/**
* Themed wrapper for ForbiddenComponent
*/
@Component({
selector: 'ds-themed-forbidden',
styleUrls: [],
templateUrl: '../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedForbiddenComponent extends ThemedComponent<ForbiddenComponent> {
protected getComponentName(): string {
return 'ForbiddenComponent';

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
import { EndUserAgreementComponent } from './end-user-agreement.component';
/**
* Themed wrapper for EndUserAgreementComponent
*/
@Component({
selector: 'ds-themed-end-user-agreement',
styleUrls: [],
templateUrl: '../../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedEndUserAgreementComponent extends ThemedComponent<EndUserAgreementComponent> {
protected getComponentName(): string {

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
import { PrivacyComponent } from './privacy.component';
/**
* Themed wrapper for PrivacyComponent
*/
@Component({
selector: 'ds-themed-privacy',
styleUrls: [],
templateUrl: '../../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedPrivacyComponent extends ThemedComponent<PrivacyComponent> {
protected getComponentName(): string {
return 'PrivacyComponent';

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../shared/theme-support/themed.component';
import { PageNotFoundComponent } from './pagenotfound.component';
/**
* Themed wrapper for PageNotFoundComponent
*/
@Component({
selector: 'ds-themed-search-page',
styleUrls: [],
templateUrl: '../shared/theme-support/themed.component.html',
})
/**
* This component represents the whole search page
* It renders search results depending on the current search options
*/
export class ThemedPageNotFoundComponent extends ThemedComponent<PageNotFoundComponent> {
protected getComponentName(): string {

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
import { CollectionStatisticsPageComponent } from './collection-statistics-page.component';
/**
* Themed wrapper for CollectionStatisticsPageComponent
*/
@Component({
selector: 'ds-themed-collection-statistics-page',
styleUrls: [],
templateUrl: '../../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedCollectionStatisticsPageComponent extends ThemedComponent<CollectionStatisticsPageComponent> {
protected getComponentName(): string {
return 'CollectionStatisticsPageComponent';

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
import { CommunityStatisticsPageComponent } from './community-statistics-page.component';
/**
* Themed wrapper for CommunityStatisticsPageComponent
*/
@Component({
selector: 'ds-themed-collection-statistics-page',
styleUrls: [],
templateUrl: '../../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedCommunityStatisticsPageComponent extends ThemedComponent<CommunityStatisticsPageComponent> {
protected getComponentName(): string {
return 'CommunityStatisticsPageComponent';

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
import { ItemStatisticsPageComponent } from './item-statistics-page.component';
/**
* Themed wrapper for ItemStatisticsPageComponent
*/
@Component({
selector: 'ds-themed-item-statistics-page',
styleUrls: [],
templateUrl: '../../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedItemStatisticsPageComponent extends ThemedComponent<ItemStatisticsPageComponent> {
protected getComponentName(): string {
return 'ItemStatisticsPageComponent';

View File

@@ -2,15 +2,14 @@ import { Component } from '@angular/core';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
import { SiteStatisticsPageComponent } from './site-statistics-page.component';
/**
* Themed wrapper for SiteStatisticsPageComponent
*/
@Component({
selector: 'ds-themed-site-statistics-page',
styleUrls: [],
templateUrl: '../../shared/theme-support/themed.component.html',
})
/**
* Component to render the news section on the home page
*/
export class ThemedSiteStatisticsPageComponent extends ThemedComponent<SiteStatisticsPageComponent> {
protected getComponentName(): string {
return 'SiteStatisticsPageComponent';