aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/forms/form-validators/video-captions-validators.service.ts
blob: d1b4667bbd164808e072034622696188396d306c (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
import { I18n } from '@ngx-translate/i18n-polyfill'
import { Validators } from '@angular/forms'
import { Injectable } from '@angular/core'
import { BuildFormValidator } from '@app/shared'

@Injectable()
export class VideoCaptionsValidatorsService {
  readonly VIDEO_CAPTION_LANGUAGE: BuildFormValidator
  readonly VIDEO_CAPTION_FILE: BuildFormValidator

  constructor (private i18n: I18n) {

    this.VIDEO_CAPTION_LANGUAGE = {
      VALIDATORS: [ Validators.required ],
      MESSAGES: {
        'required': this.i18n('Video caption language is required.')
      }
    }

    this.VIDEO_CAPTION_FILE = {
      VALIDATORS: [ Validators.required ],
      MESSAGES: {
        'required': this.i18n('Video caption file is required.')
      }
    }
  }
}