|
| 1 | +import { CommonModule } from '@angular/common'; |
1 | 2 | import { NgModule } from '@angular/core'; |
| 3 | +import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
| 4 | +import { TranslateModule } from '@ngx-translate/core'; |
2 | 5 | import { MaterialModule } from 'src/app/modules/material/material.module'; |
3 | | -import { ChoiceComponent } from './unused/choice/choice.component'; |
| 6 | +import { NgZorroModule } from 'src/app/modules/ngzorro/ngzorro.module'; |
| 7 | +import { SafeResoucePipe } from 'src/app/pipes/safe.pipe'; |
| 8 | +import { SharedModule } from '../shared/shared.module'; |
| 9 | +import { BlankComponent } from './blank/blank.component'; |
| 10 | +import { ConsentPageComponent } from './consent/consent-page/consent-page.component'; |
| 11 | +import { NavigationButtonsComponent } from './shared/navigation-buttons/navigation-buttons.component'; |
| 12 | +import { NumpadComponent } from './shared/numpad/numpad.component'; |
| 13 | +import { OptionDisplayComponent } from './shared/option-display/option-display.component'; |
| 14 | +import { RotateDirective } from './shared/Rotate.directive'; |
| 15 | +import { SkipButtonComponent } from './shared/skip-button/skip-button.component'; |
| 16 | +import { SliderComponent } from './shared/slider/slider.component'; |
| 17 | +import { AttentionCheckComponent } from './task-playables/attention-check/attention-check.component'; |
4 | 18 | import { DemandSelectionComponent } from './task-playables/demand-selection/demand-selection.component'; |
5 | 19 | import { DigitSpanComponent } from './task-playables/digit-span/digit-span.component'; |
6 | | -import { NumpadComponent } from './shared/numpad/numpad.component'; |
| 20 | +import { ConfirmDoneDialogComponent } from './task-playables/embedded-page/confirm-done-dialog/confirm-done-dialog.component'; |
| 21 | +import { EmbeddedPageComponent } from './task-playables/embedded-page/embedded-page.component'; |
| 22 | +import { IntroDialogComponent } from './task-playables/embedded-page/intro-dialog/intro-dialog.component'; |
| 23 | +import { ChoicerComponent } from './task-playables/everyday-choice/choicer/choicer.component'; |
| 24 | +import { RaterComponent } from './task-playables/everyday-choice/rater/rater.component'; |
| 25 | +import { FaceNameAssociationComponent } from './task-playables/face-name-association/face-name-association.component'; |
7 | 26 | import { FingerTappingTaskComponent } from './task-playables/finger-tapping/finger-tapping-task.component'; |
| 27 | +import { InfoDisplayComponent } from './task-playables/info-display/info-display.component'; |
| 28 | +import { InformationTaskComponent } from './task-playables/information-task/information-task.component'; |
| 29 | +import { IowaGamblingTaskComponent } from './task-playables/iowa-gambling-task/iowa-gambling-task.component'; |
8 | 30 | import { NBackComponent } from './task-playables/n-back/n-back.component'; |
9 | 31 | import { OddballComponent } from './task-playables/oddball/oddball.component'; |
10 | | -import { PostChoiceComponent } from './unused/post-choice/post-choice.component'; |
11 | | -import { ChoicerComponent } from './task-playables/everyday-choice/choicer/choicer.component'; |
12 | | -import { RatingComponent } from './unused/rating/rating.component'; |
13 | | -import { ShapeGameComponent } from './unused/shape-game/shape-game.component'; |
14 | | -import { TaskDisplayComponent } from './task-playables/task-display/task-display.component'; |
15 | | -import { SliderComponent } from './shared/slider/slider.component'; |
| 32 | +import { ProbabilisticLearningTaskComponent } from './task-playables/probabilistic-learning-task/probabilistic-learning-task.component'; |
| 33 | +import { MatrixComponent } from './task-playables/questionnaire/matrix/matrix.component'; |
| 34 | +import { MultipleChoiceSelectComponent } from './task-playables/questionnaire/multiple-choice-select/multiple-choice-select.component'; |
| 35 | +import { QuestionnaireComponent } from './task-playables/questionnaire/questionnaire.component'; |
| 36 | +import { RadioButtonsComponent } from './task-playables/questionnaire/radio-buttons/radio-buttons.component'; |
| 37 | +import { SliderControlComponent } from './task-playables/questionnaire/slider-control/slider-control.component'; |
| 38 | +import { SartComponent } from './task-playables/sart/sart.component'; |
| 39 | +import { SdmtComponent } from './task-playables/sdmt/sdmt.component'; |
| 40 | +import { SelectOptionComponent } from './task-playables/select-option/select-option.component'; |
16 | 41 | import { SmileyFaceComponent } from './task-playables/smiley-face/smiley-face.component'; |
17 | 42 | import { StroopComponent } from './task-playables/stroop/stroop.component'; |
| 43 | +import { TaskDisplayComponent } from './task-playables/task-display/task-display.component'; |
18 | 44 | import { TaskPlayerComponent } from './task-playables/task-player/task-player.component'; |
19 | 45 | import { TaskSwitchingComponent } from './task-playables/task-switching/task-switching.component'; |
20 | 46 | import { TrailMakingComponent } from './task-playables/trail-making/trail-making.component'; |
21 | | -import { RaterComponent } from './task-playables/everyday-choice/rater/rater.component'; |
22 | | -import { NgZorroModule } from 'src/app/modules/ngzorro/ngzorro.module'; |
23 | | -import { NavigationButtonsComponent } from './shared/navigation-buttons/navigation-buttons.component'; |
24 | | -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
25 | | -import { CommonModule, NgOptimizedImage } from '@angular/common'; |
26 | | -import { RotateDirective } from './shared/Rotate.directive'; |
| 47 | +import { ChoiceComponent } from './unused/choice/choice.component'; |
27 | 48 | import { ColorGameComponent } from './unused/color-game/color-game.component'; |
28 | | -import { EmbeddedPageComponent } from './task-playables/embedded-page/embedded-page.component'; |
29 | | -import { SafeResoucePipe } from 'src/app/pipes/safe.pipe'; |
30 | | -import { SelectOptionComponent } from './task-playables/select-option/select-option.component'; |
31 | | -import { QuestionnaireComponent } from './task-playables/questionnaire/questionnaire.component'; |
32 | | -import { IntroDialogComponent } from './task-playables/embedded-page/intro-dialog/intro-dialog.component'; |
33 | | -import { ConfirmDoneDialogComponent } from './task-playables/embedded-page/confirm-done-dialog/confirm-done-dialog.component'; |
34 | | -import { ConsentPageComponent } from './consent/consent-page/consent-page.component'; |
35 | | -import { SharedModule } from '../shared/shared.module'; |
36 | | -import { InfoDisplayComponent } from './task-playables/info-display/info-display.component'; |
37 | | -import { SartComponent } from './task-playables/sart/sart.component'; |
38 | | -import { TranslateModule } from '@ngx-translate/core'; |
39 | | -import { FaceNameAssociationComponent } from './task-playables/face-name-association/face-name-association.component'; |
40 | | -import { BlankComponent } from './blank/blank.component'; |
41 | | -import { ProbabilisticLearningTaskComponent } from './task-playables/probabilistic-learning-task/probabilistic-learning-task.component'; |
42 | | -import { OptionDisplayComponent } from './shared/option-display/option-display.component'; |
43 | | -import { IowaGamblingTaskComponent } from './task-playables/iowa-gambling-task/iowa-gambling-task.component'; |
44 | | -import { SkipButtonComponent } from './shared/skip-button/skip-button.component'; |
45 | | -import { InformationTaskComponent } from './task-playables/information-task/information-task.component'; |
46 | | -import { MultipleChoiceSelectComponent } from './task-playables/questionnaire/multiple-choice-select/multiple-choice-select.component'; |
47 | | -import { MatrixComponent } from './task-playables/questionnaire/matrix/matrix.component'; |
48 | | -import { SliderControlComponent } from './task-playables/questionnaire/slider-control/slider-control.component'; |
49 | | -import { RadioButtonsComponent } from './task-playables/questionnaire/radio-buttons/radio-buttons.component'; |
50 | | -import { SdmtComponent } from './task-playables/sdmt/sdmt.component'; |
51 | | -import { AttentionCheckComponent } from './task-playables/attention-check/attention-check.component'; |
| 49 | +import { PostChoiceComponent } from './unused/post-choice/post-choice.component'; |
| 50 | +import { RatingComponent } from './unused/rating/rating.component'; |
| 51 | +import { ShapeGameComponent } from './unused/shape-game/shape-game.component'; |
52 | 52 |
|
53 | 53 | @NgModule({ |
54 | 54 | declarations: [ |
@@ -113,7 +113,6 @@ import { AttentionCheckComponent } from './task-playables/attention-check/attent |
113 | 113 | ReactiveFormsModule, |
114 | 114 | SharedModule, |
115 | 115 | TranslateModule, |
116 | | - NgOptimizedImage, |
117 | 116 | ], |
118 | 117 | exports: [EmbeddedPageComponent], |
119 | 118 | }) |
|
0 commit comments