2019-03-07 16:43:10 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {RouterModule} from '@angular/router';
|
2018-03-07 14:18:30 +01:00
|
|
|
|
2019-03-07 16:43:10 +01:00
|
|
|
import {SubjectsEditFormComponent} from './subjects-edit-form.component';
|
2018-03-07 14:18:30 +01:00
|
|
|
|
2019-03-07 16:43:10 +01:00
|
|
|
import {SubjectsService} from '../subjects.service';
|
|
|
|
import {SubjectsEditFormRoutingModule} from './subjects-edit-form-routing.module';
|
2021-05-19 13:40:29 +02:00
|
|
|
import {PageContentModule} from '../../../openaireLibrary/dashboard/sharedComponents/page-content/page-content.module';
|
|
|
|
import {IconsModule} from '../../../openaireLibrary/utils/icons/icons.module';
|
|
|
|
import {IconsService} from '../../../openaireLibrary/utils/icons/icons.service';
|
|
|
|
import {add, check_circle_outlined, close, edit, remove} from '../../../openaireLibrary/utils/icons/icons';
|
|
|
|
import {AlertModalModule} from '../../../openaireLibrary/utils/modal/alertModal.module';
|
|
|
|
import {NoLoadPaging} from '../../../openaireLibrary/searchPages/searchUtils/no-load-paging.module';
|
|
|
|
import {LoadingModule} from '../../../openaireLibrary/utils/loading/loading.module';
|
|
|
|
import {InputModule} from '../../../openaireLibrary/sharedComponents/input/input.module';
|
|
|
|
import {CommunityInfoModule} from '../../community-info/community-info.module';
|
|
|
|
import {SearchInputModule} from '../../../openaireLibrary/sharedComponents/search-input/search-input.module';
|
2022-07-04 14:13:33 +02:00
|
|
|
import {FullScreenModalModule} from 'src/app/openaireLibrary/utils/modal/full-screen-modal/full-screen-modal.module';
|
2018-03-07 14:18:30 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2019-03-07 16:43:10 +01:00
|
|
|
imports: [
|
2022-07-04 14:13:33 +02:00
|
|
|
SubjectsEditFormRoutingModule, CommonModule, FormsModule, RouterModule, PageContentModule, IconsModule, AlertModalModule, NoLoadPaging, LoadingModule, InputModule, CommunityInfoModule, SearchInputModule, FullScreenModalModule
|
2018-03-07 14:18:30 +01:00
|
|
|
],
|
2019-03-07 16:43:10 +01:00
|
|
|
declarations: [
|
2018-10-30 16:31:16 +01:00
|
|
|
SubjectsEditFormComponent
|
2019-03-07 16:43:10 +01:00
|
|
|
],
|
|
|
|
providers: [
|
2021-05-19 13:40:29 +02:00
|
|
|
SubjectsService
|
2019-03-07 16:43:10 +01:00
|
|
|
],
|
2018-03-07 14:18:30 +01:00
|
|
|
exports: [
|
2018-10-30 16:31:16 +01:00
|
|
|
SubjectsEditFormComponent
|
2018-03-07 14:18:30 +01:00
|
|
|
]
|
|
|
|
})
|
2021-05-19 13:40:29 +02:00
|
|
|
export class SubjectsEditFormModule {
|
|
|
|
constructor(private iconsService: IconsService) {
|
|
|
|
this.iconsService.registerIcons([add, edit, remove, close])
|
|
|
|
}
|
|
|
|
}
|