50 lines
2.3 KiB
TypeScript
50 lines
2.3 KiB
TypeScript
/* This module contains all common components for Publication & Daasets Landing Pages */
|
|
import { NgModule} from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { RouterModule } from '@angular/router';
|
|
import {PagingModule} from '../../utils/paging.module';
|
|
import {ShowIdentifiersComponent} from './showIdentifiers.component';
|
|
import {ShowSubjectsComponent} from './showSubjects.component';
|
|
import {FundedByComponent} from './fundedBy.component';
|
|
import {AvailableOnComponent} from './availableOn.component';
|
|
import {TabTableComponent} from './tabTable.component';
|
|
import {ShowPublisherComponent} from "./showPublisher.component";
|
|
import {ShowPublisherModule} from "./showPublisher.module";
|
|
import {RelatedToComponent} from "./relatedTo.component";
|
|
import {FosComponent} from "./fos.component";
|
|
import {SdgComponent} from "./sdg.component";
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
|
import {AlertModalModule} from "../../utils/modal/alertModal.module";
|
|
import { SearchInputModule } from '../../sharedComponents/search-input/search-input.module';
|
|
import {EntityMetadataComponent} from "./entity-metadata.component";
|
|
import {IconsService} from "../../utils/icons/icons.service";
|
|
import {closed_access, open_access, unknown_access} from "../../utils/icons/icons";
|
|
import {FullScreenModalModule} from "../../utils/modal/full-screen-modal/full-screen-modal.module";
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule, FormsModule, RouterModule, PagingModule, ShowPublisherModule, IconsModule, AlertModalModule,
|
|
SearchInputModule, FullScreenModalModule
|
|
],
|
|
declarations: [
|
|
ShowIdentifiersComponent,ShowSubjectsComponent,
|
|
FundedByComponent,AvailableOnComponent,TabTableComponent,
|
|
RelatedToComponent, FosComponent, SdgComponent,
|
|
EntityMetadataComponent
|
|
],
|
|
providers:[
|
|
],
|
|
exports: [
|
|
ShowIdentifiersComponent, ShowSubjectsComponent,
|
|
FundedByComponent,AvailableOnComponent, TabTableComponent, ShowPublisherComponent,
|
|
RelatedToComponent, FosComponent, SdgComponent, EntityMetadataComponent
|
|
]
|
|
})
|
|
export class ResultLandingUtilsModule {
|
|
constructor(private iconsService: IconsService) {
|
|
this.iconsService.registerIcons([open_access, closed_access, unknown_access]);
|
|
}
|
|
}
|