2023-02-17 18:40:05 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {RouterModule} from '@angular/router';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2023-07-25 18:09:09 +02:00
|
|
|
import {SharedModule} from '../../shared/shared.module';
|
2023-02-17 18:40:05 +01:00
|
|
|
import {LandingModule} from '../landing-utils/landing.module';
|
|
|
|
import {CiteThisModule} from '../landing-utils/citeThis/citeThis.module';
|
|
|
|
import {IFrameModule} from '../../utils/iframe.module';
|
|
|
|
import {AltMetricsModule} from '../../utils/altmetrics.module';
|
|
|
|
import {PagingModule} from '../../utils/paging.module';
|
Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
|
2023-02-17 18:40:05 +01:00
|
|
|
import {ResultLandingService} from './resultLanding.service';
|
|
|
|
import {ResultLandingComponent} from './resultLanding.component';
|
|
|
|
import {Schema2jsonldModule} from '../../sharedComponents/schema2jsonld/schema2jsonld.module';
|
|
|
|
import {SEOServiceModule} from '../../sharedComponents/SEO/SEOService.module';
|
Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
|
2023-02-17 18:40:05 +01:00
|
|
|
import {DeletedByInferenceModule} from './deletedByInference/deletedByInference.module';
|
|
|
|
import {ShowAuthorsModule} from "../../utils/authors/showAuthors.module";
|
|
|
|
import {HelperModule} from "../../utils/helper/helper.module";
|
|
|
|
import {ResultLandingUtilsModule} from "../landing-utils/resultLandingUtils.module";
|
|
|
|
import {AlertModalModule} from "../../utils/modal/alertModal.module";
|
2020-03-16 14:09:46 +01:00
|
|
|
import {LandingHeaderModule} from "../landing-utils/landing-header/landing-header.module";
|
|
|
|
import {NoLoadPaging} from "../../searchPages/searchUtils/no-load-paging.module";
|
|
|
|
import {ResultPreviewModule} from "../../utils/result-preview/result-preview.module";
|
|
|
|
import {FeedbackModule} from "../feedback/feedback.module";
|
2020-05-20 22:34:29 +02:00
|
|
|
import {TabsModule} from "../../utils/tabs/tabs.module";
|
2020-07-10 10:37:17 +02:00
|
|
|
import {LoadingModule} from "../../utils/loading/loading.module";
|
2022-04-12 14:15:04 +02:00
|
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
2022-04-16 09:47:30 +02:00
|
|
|
import {IconsService} from "../../utils/icons/icons.service";
|
2023-02-17 18:40:05 +01:00
|
|
|
import {cite, fire, graph, landmark, link, link_to, quotes, rocket, versions} from "../../utils/icons/icons";
|
2022-05-04 12:57:13 +02:00
|
|
|
import {InputModule} from "../../sharedComponents/input/input.module";
|
2022-05-19 11:15:52 +02:00
|
|
|
import {EGIDataTransferModule} from "../../utils/dataTransfer/transferData.module";
|
2023-02-17 18:08:44 +01:00
|
|
|
import {RecaptchaModule} from 'ng-recaptcha';
|
|
|
|
import {SdgFosSuggestModule} from '../landing-utils/sdg-fos-suggest/sdg-fos-suggest.module';
|
2023-02-20 16:56:02 +01:00
|
|
|
import {FullScreenModalModule} from "../../utils/modal/full-screen-modal/full-screen-modal.module";
|
2023-03-27 15:32:41 +02:00
|
|
|
import {SafeHtmlPipeModule} from '../../utils/pipes/safeHTMLPipe.module';
|
2023-04-21 11:49:14 +02:00
|
|
|
import {EntityActionsModule} from "../../utils/entity-actions/entity-actions.module";
|
2024-02-28 13:33:44 +01:00
|
|
|
import {ResultLandingRoutingModule} from "./resultLanding-routing.module";
|
2024-03-14 08:28:33 +01:00
|
|
|
import {OrcidCoreModule} from "../../orcid/orcid-core.module";
|
2024-04-16 12:25:54 +02:00
|
|
|
import {SearchTabModule} from "../../utils/tabs/contents/search-tab.module";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2020-03-16 14:09:46 +01:00
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule, LandingModule, SharedModule, RouterModule,
|
2024-02-28 13:33:44 +01:00
|
|
|
ResultLandingRoutingModule,
|
2020-03-16 14:09:46 +01:00
|
|
|
CiteThisModule, PagingModule, IFrameModule,
|
2023-07-25 18:09:09 +02:00
|
|
|
AltMetricsModule, Schema2jsonldModule, SEOServiceModule,
|
2021-01-13 19:30:25 +01:00
|
|
|
DeletedByInferenceModule, ShowAuthorsModule, HelperModule, ResultLandingUtilsModule, AlertModalModule,
|
2024-01-11 11:49:57 +01:00
|
|
|
LandingHeaderModule, NoLoadPaging, ResultPreviewModule, FeedbackModule, TabsModule, LoadingModule,
|
2024-03-14 08:28:33 +01:00
|
|
|
OrcidCoreModule, IconsModule, InputModule, EGIDataTransferModule, RecaptchaModule,
|
2023-04-21 11:49:14 +02:00
|
|
|
SdgFosSuggestModule, FullScreenModalModule, SafeHtmlPipeModule, EntityActionsModule
|
2020-03-16 14:09:46 +01:00
|
|
|
],
|
Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
declarations: [
|
2019-09-05 10:49:33 +02:00
|
|
|
ResultLandingComponent
|
Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
],
|
|
|
|
providers: [
|
2020-11-11 15:43:13 +01:00
|
|
|
ResultLandingService
|
Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
],
|
|
|
|
exports: [
|
2019-09-05 10:49:33 +02:00
|
|
|
ResultLandingComponent
|
Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
]
|
2017-12-19 13:53:46 +01:00
|
|
|
})
|
2022-04-16 09:47:30 +02:00
|
|
|
export class ResultLandingModule {
|
|
|
|
constructor(private iconsService: IconsService) {
|
2023-02-17 18:40:05 +01:00
|
|
|
this.iconsService.registerIcons([link, graph, quotes, cite, link_to, versions, rocket, fire, landmark])
|
2022-04-16 09:47:30 +02:00
|
|
|
}
|
|
|
|
}
|