aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/form-validators/video-comment-validators.service.ts
blob: 97c8e967e8982ae838d7774904e2b5e24c039a6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { I18n } from '@ngx-translate/i18n-polyfill'
import { Validators } from '@angular/forms'
import { Injectable } from '@angular/core'
import { BuildFormValidator } from './form-validator.service'

@Injectable()
export class VideoCommentValidatorsService {
  readonly VIDEO_COMMENT_TEXT: BuildFormValidator

  constructor (private i18n: I18n) {
    this.VIDEO_COMMENT_TEXT = {
      VALIDATORS: [ Validators.required, Validators.minLength(1), Validators.maxLength(3000) ],
      MESSAGES: {
        'required': this.i18n('Comment is required.'),
        'minlength': this.i18n('Comment must be at least 2 characters long.'),
        'maxlength': this.i18n('Comment cannot be more than 3000 characters long.')
      }
    }
  }
}