2019-01-18 18:03:45 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2023-12-05 21:36:00 +01:00
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { FormattingModule } from '@app/core/formatting.module';
|
2019-12-11 15:51:03 +01:00
|
|
|
import { DashboardComponent } from '@app/ui/dashboard/dashboard.component';
|
|
|
|
import { DashboardRoutingModule } from '@app/ui/dashboard/dashboard.routing';
|
|
|
|
import { ConfirmationDialogModule } from '@common/modules/confirmation-dialog/confirmation-dialog.module';
|
2023-12-05 21:36:00 +01:00
|
|
|
import { CommonUiModule } from '@common/ui/common-ui.module';
|
|
|
|
import { DescriptionModule } from '../description/description.module';
|
|
|
|
import { DmpModule } from '../dmp/dmp.module';
|
|
|
|
import { DraftsComponent } from './drafts/drafts.component';
|
|
|
|
import { RecentEditedActivityComponent } from './recent-edited-activity/recent-edited-activity.component';
|
|
|
|
import { RecentEditedDescriptionActivityComponent } from './recent-edited-description-activity/recent-edited-description-activity.component';
|
2020-07-01 17:25:16 +02:00
|
|
|
import { RecentEditedDmpActivityComponent } from './recent-edited-dmp-activity/recent-edited-dmp-activity.component';
|
2023-12-28 16:18:49 +01:00
|
|
|
import { StartNewDmpDialogModule } from '../dmp/new/start-new-dmp-dialogue/start-new-dmp-dialog.module';
|
2019-01-18 18:03:45 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2023-12-05 21:36:00 +01:00
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
|
|
|
FormattingModule,
|
|
|
|
DashboardRoutingModule,
|
|
|
|
ConfirmationDialogModule,
|
2023-12-28 16:18:49 +01:00
|
|
|
// DatasetCopyDialogModule,
|
2023-12-05 21:36:00 +01:00
|
|
|
FormsModule,
|
|
|
|
ReactiveFormsModule,
|
|
|
|
|
|
|
|
DmpModule, //TODO: add only listing component to a seperate module
|
2023-12-28 16:18:49 +01:00
|
|
|
DescriptionModule, //TODO: add only listing component to a seperate module
|
|
|
|
StartNewDmpDialogModule
|
2023-12-05 21:36:00 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
DashboardComponent,
|
|
|
|
RecentEditedActivityComponent,
|
|
|
|
RecentEditedDmpActivityComponent,
|
|
|
|
RecentEditedDescriptionActivityComponent,
|
|
|
|
DraftsComponent
|
|
|
|
]
|
2019-01-18 18:03:45 +01:00
|
|
|
})
|
|
|
|
export class DashboardModule { }
|