aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/shared-form.module.ts
blob: 19d812948661b609895084130bae4c1f1906f527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import { NgModule } from '@angular/core'
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
import { BatchDomainsValidatorsService } from '@app/shared/shared-forms/form-validators/batch-domains-validators.service'
import { SharedGlobalIconModule } from '../shared-icons'
import { SharedMainModule } from '../shared-main/shared-main.module'
import {
  CustomConfigValidatorsService,
  FormValidatorService,
  InstanceValidatorsService,
  LoginValidatorsService,
  ResetPasswordValidatorsService,
  UserValidatorsService,
  AbuseValidatorsService,
  VideoAcceptOwnershipValidatorsService,
  VideoBlockValidatorsService,
  VideoCaptionsValidatorsService,
  VideoChangeOwnershipValidatorsService,
  VideoChannelValidatorsService,
  VideoCommentValidatorsService,
  VideoPlaylistValidatorsService,
  VideoValidatorsService
} from './form-validators'
import { InputReadonlyCopyComponent } from './input-readonly-copy.component'
import { MarkdownTextareaComponent } from './markdown-textarea.component'
import { PeertubeCheckboxComponent } from './peertube-checkbox.component'
import { PreviewUploadComponent } from './preview-upload.component'
import { ReactiveFileComponent } from './reactive-file.component'
import { TextareaAutoResizeDirective } from './textarea-autoresize.directive'
import { TimestampInputComponent } from './timestamp-input.component'
import { SelectChannelComponent } from './select-channel.component'
import { SelectOptionsComponent } from './select-options.component'
import { SelectTagsComponent } from './select-tags.component'

@NgModule({
  imports: [
    FormsModule,
    ReactiveFormsModule,

    SharedMainModule,
    SharedGlobalIconModule
  ],

  declarations: [
    InputReadonlyCopyComponent,
    MarkdownTextareaComponent,
    PeertubeCheckboxComponent,
    PreviewUploadComponent,
    ReactiveFileComponent,
    TextareaAutoResizeDirective,
    TimestampInputComponent,
    SelectChannelComponent,
    SelectOptionsComponent,
    SelectTagsComponent
  ],

  exports: [
    FormsModule,
    ReactiveFormsModule,

    InputReadonlyCopyComponent,
    MarkdownTextareaComponent,
    PeertubeCheckboxComponent,
    PreviewUploadComponent,
    ReactiveFileComponent,
    TextareaAutoResizeDirective,
    TimestampInputComponent,
    SelectChannelComponent,
    SelectOptionsComponent,
    SelectTagsComponent
  ],

  providers: [
    CustomConfigValidatorsService,
    FormValidatorService,
    LoginValidatorsService,
    InstanceValidatorsService,
    LoginValidatorsService,
    ResetPasswordValidatorsService,
    UserValidatorsService,
    AbuseValidatorsService,
    VideoAcceptOwnershipValidatorsService,
    VideoBlockValidatorsService,
    VideoCaptionsValidatorsService,
    VideoChangeOwnershipValidatorsService,
    VideoChannelValidatorsService,
    VideoCommentValidatorsService,
    VideoPlaylistValidatorsService,
    VideoValidatorsService,
    BatchDomainsValidatorsService
  ]
})
export class SharedFormModule { }