1
0
Fork 0
peertube/client/src/app/shared/shared-forms/dynamic-form-field.componen...

27 lines
704 B
TypeScript

import { Component, Input } from '@angular/core'
import { FormGroup } from '@angular/forms'
import { RegisterClientFormFieldOptions } from '@shared/models'
@Component({
selector: 'my-dynamic-form-field',
templateUrl: './dynamic-form-field.component.html',
styleUrls: [ './dynamic-form-field.component.scss' ]
})
export class DynamicFormFieldComponent {
@Input() form: FormGroup
@Input() formErrors: any
@Input() setting: RegisterClientFormFieldOptions
hasDedicatedFormError () {
const dedicated = new Set<RegisterClientFormFieldOptions['type']>([
'input-checkbox',
'input',
'select',
'input-textarea'
])
return dedicated.has(this.setting.type)
}
}