2019-01-18 18:03:45 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-12-11 15:51:03 +01:00
|
|
|
import { ExportMethodDialogModule } from '@app/library/export-method-dialog/export-method-dialog.module';
|
|
|
|
import { CardComponent } from '@app/ui/dashboard/card/card.component';
|
|
|
|
import { DashboardComponent } from '@app/ui/dashboard/dashboard.component';
|
|
|
|
import { DashboardRoutingModule } from '@app/ui/dashboard/dashboard.routing';
|
|
|
|
import { DatasetInfoCounterComponent } from '@app/ui/dashboard/dataset-info-counter/dataset-info-counter.component';
|
|
|
|
import { DmpInfoCounterComponent } from '@app/ui/dashboard/dmp-info-counter/dmp-info-counter.component';
|
|
|
|
import { DraftsComponent } from '@app/ui/dashboard/drafts/drafts.component';
|
|
|
|
import { InfoCounterComponent } from '@app/ui/dashboard/info-counter/info-counter.component';
|
|
|
|
import { QuickWizardCreateAdd } from '@app/ui/dashboard/quick-wizard-create-add/quick-wizard-create-add.component';
|
|
|
|
import { RecentActivityComponent } from '@app/ui/dashboard/recent-activity/recent-activity.component';
|
|
|
|
import { RecentEditedActivityComponent } from '@app/ui/dashboard/recent-edited-activity/recent-edited-activity.component';
|
|
|
|
import { RecentVisitedActivityComponent } from '@app/ui/dashboard/recent-visited-activity/recent-visited-activity.component';
|
|
|
|
import { WizardComponent } from '@app/ui/dashboard/wizard/wizard.component';
|
|
|
|
import { CommonUiModule } from '@common/ui/common-ui.module';
|
|
|
|
import { ConfirmationDialogModule } from '@common/modules/confirmation-dialog/confirmation-dialog.module';
|
2020-06-30 18:40:01 +02:00
|
|
|
import { RecentEditedDatasetActivityComponent } from './recent-edited-dataset-activity/recent-edited-dataset-activity.component';
|
2020-07-01 09:56:59 +02:00
|
|
|
import { DatasetCopyDialogModule } from '../dataset/dataset-wizard/dataset-copy-dialogue/dataset-copy-dialogue.module';
|
2020-07-01 17:25:16 +02:00
|
|
|
import { RecentEditedDmpActivityComponent } from './recent-edited-dmp-activity/recent-edited-dmp-activity.component';
|
2020-07-10 15:52:35 +02:00
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
2020-11-09 16:14:10 +01:00
|
|
|
import { FormattingModule } from '@app/core/formatting.module';
|
2019-01-18 18:03:45 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
2020-11-09 16:14:10 +01:00
|
|
|
FormattingModule,
|
2019-06-04 13:34:30 +02:00
|
|
|
DashboardRoutingModule,
|
2019-12-11 15:51:03 +01:00
|
|
|
ExportMethodDialogModule,
|
2020-07-01 09:56:59 +02:00
|
|
|
ConfirmationDialogModule,
|
2020-07-10 15:52:35 +02:00
|
|
|
DatasetCopyDialogModule,
|
|
|
|
FormsModule,
|
|
|
|
ReactiveFormsModule
|
2019-01-18 18:03:45 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
DashboardComponent,
|
|
|
|
RecentActivityComponent,
|
2019-03-01 16:15:25 +01:00
|
|
|
CardComponent,
|
2019-04-24 11:26:53 +02:00
|
|
|
QuickWizardCreateAdd,
|
|
|
|
WizardComponent,
|
|
|
|
InfoCounterComponent,
|
|
|
|
RecentVisitedActivityComponent,
|
|
|
|
RecentEditedActivityComponent,
|
2019-05-15 17:21:04 +02:00
|
|
|
DraftsComponent,
|
|
|
|
DmpInfoCounterComponent,
|
2020-06-30 18:40:01 +02:00
|
|
|
DatasetInfoCounterComponent,
|
2020-07-01 17:25:16 +02:00
|
|
|
RecentEditedDatasetActivityComponent,
|
|
|
|
RecentEditedDmpActivityComponent
|
2019-03-01 16:15:25 +01:00
|
|
|
],
|
|
|
|
entryComponents: [
|
|
|
|
QuickWizardCreateAdd
|
2019-01-18 18:03:45 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class DashboardModule { }
|