2019-01-18 18:03:45 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonFormsModule } from '../../common/forms/common-forms.module';
|
|
|
|
import { CommonUiModule } from '../../common/ui/common-ui.module';
|
|
|
|
import { FormattingModule } from '../../core/formatting.module';
|
|
|
|
import { AutoCompleteModule } from '../../library/auto-complete/auto-complete.module';
|
|
|
|
import { ConfirmationDialogModule } from '../../library/confirmation-dialog/confirmation-dialog.module';
|
|
|
|
import { UrlListingModule } from '../../library/url-listing/url-listing.module';
|
|
|
|
import { DmpRoutingModule } from './dmp.routing';
|
|
|
|
import { AddResearcherComponent } from './editor/add-researcher/add-researcher.component';
|
|
|
|
import { AvailableProfilesComponent } from './editor/available-profiles/available-profiles.component';
|
|
|
|
import { DmpEditorComponent } from './editor/dmp-editor.component';
|
2019-02-13 14:44:08 +01:00
|
|
|
import { DmpFinalizeDialogComponent } from './editor/dmp-finalize-dialog/dmp-finalize-dialog.component';
|
|
|
|
import { DynamicDmpFieldResolverComponent } from './editor/dynamic-field-resolver/dynamic-dmp-field-resolver.component';
|
2019-08-01 09:54:40 +02:00
|
|
|
import { DynamicFieldGrantComponent } from './editor/dynamic-fields-grant/dynamic-field-grant/dynamic-field-grant.component';
|
|
|
|
import { DynamicFieldsGrantComponent } from './editor/dynamic-fields-grant/dynamic-fields-grant.component';
|
2019-01-18 18:03:45 +01:00
|
|
|
import { InvitationAcceptedComponent } from './invitation/accepted/dmp-invitation-accepted.component';
|
|
|
|
import { DmpInvitationDialogComponent } from './invitation/dmp-invitation.component';
|
|
|
|
import { DmpCriteriaComponent } from './listing/criteria/dmp-criteria.component';
|
2019-04-25 16:04:54 +02:00
|
|
|
import { DmpUploadDialogue } from './listing/criteria/upload-dialogue/dmp-upload-dialogue.component';
|
2019-01-18 18:03:45 +01:00
|
|
|
import { DmpListingComponent } from './listing/dmp-listing.component';
|
2019-04-25 16:04:54 +02:00
|
|
|
import { DmpListingItemComponent } from './listing/listing-item/dmp-listing-item.component';
|
2019-01-18 18:03:45 +01:00
|
|
|
import { DmpWizardComponent } from './wizard/dmp-wizard.component';
|
|
|
|
import { DmpWizardEditorComponent } from './wizard/editor/dmp-wizard-editor.component';
|
|
|
|
import { DmpWizardDatasetListingComponent } from './wizard/listing/dmp-wizard-dataset-listing.component';
|
2019-05-21 15:42:28 +02:00
|
|
|
import { ExportMethodDialogModule } from '../../library/export-method-dialog/export-method-dialog.module';
|
2019-05-23 17:48:54 +02:00
|
|
|
import { GeneralTabComponent } from './editor/general-tab/general-tab.component';
|
2019-05-28 09:49:09 +02:00
|
|
|
import { PeopleTabComponent } from './editor/people-tab/people-tab.component';
|
2019-08-01 09:54:40 +02:00
|
|
|
import { GrantTabComponent } from './editor/grant-tab/grant-tab.component';
|
2019-05-28 09:49:09 +02:00
|
|
|
import { DatasetsTabComponent } from './editor/datasets-tab/datasets-tab.component';
|
2019-06-11 10:25:32 +02:00
|
|
|
import { DmpOverviewModule } from './overview/dmp-overview.module';
|
2019-08-30 15:02:02 +02:00
|
|
|
import { DmpCloneComponent } from './clone/dmp-clone.component';
|
2019-01-18 18:03:45 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
|
|
|
CommonFormsModule,
|
|
|
|
UrlListingModule,
|
|
|
|
ConfirmationDialogModule,
|
2019-05-21 15:42:28 +02:00
|
|
|
ExportMethodDialogModule,
|
2019-01-18 18:03:45 +01:00
|
|
|
FormattingModule,
|
|
|
|
AutoCompleteModule,
|
2019-06-11 10:25:32 +02:00
|
|
|
DmpRoutingModule,
|
|
|
|
DmpOverviewModule
|
2019-01-18 18:03:45 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
DmpListingComponent,
|
|
|
|
DmpCriteriaComponent,
|
|
|
|
DmpEditorComponent,
|
|
|
|
DmpInvitationDialogComponent,
|
|
|
|
InvitationAcceptedComponent,
|
|
|
|
DmpWizardComponent,
|
|
|
|
DmpWizardEditorComponent,
|
|
|
|
DmpWizardDatasetListingComponent,
|
|
|
|
AddResearcherComponent,
|
|
|
|
AvailableProfilesComponent,
|
2019-02-13 14:44:08 +01:00
|
|
|
DmpFinalizeDialogComponent,
|
|
|
|
DynamicDmpFieldResolverComponent,
|
2019-08-01 09:54:40 +02:00
|
|
|
DynamicFieldsGrantComponent,
|
|
|
|
DynamicFieldGrantComponent,
|
2019-04-25 16:04:54 +02:00
|
|
|
DmpUploadDialogue,
|
2019-05-21 15:42:28 +02:00
|
|
|
DmpListingItemComponent,
|
2019-05-28 09:49:09 +02:00
|
|
|
GeneralTabComponent,
|
|
|
|
PeopleTabComponent,
|
2019-08-01 09:54:40 +02:00
|
|
|
GrantTabComponent,
|
2019-08-30 15:02:02 +02:00
|
|
|
DatasetsTabComponent,
|
|
|
|
DmpCloneComponent
|
2019-01-18 18:03:45 +01:00
|
|
|
],
|
|
|
|
entryComponents: [
|
|
|
|
DmpInvitationDialogComponent,
|
|
|
|
AddResearcherComponent,
|
|
|
|
AvailableProfilesComponent,
|
2019-03-06 11:37:42 +01:00
|
|
|
DmpFinalizeDialogComponent,
|
|
|
|
DmpUploadDialogue
|
2019-01-18 18:03:45 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class DmpModule { }
|