Newer
Older
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
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { NotificationService } from '../../notification.service';
@Component({
selector: 'app-docservers',
templateUrl: './docservers.component.html',
styleUrls: ['./docservers.component.scss']
})
export class DocserversComponent implements OnInit {
stepFormGroup: FormGroup;
docserversPath: string = '/opt/maaarch/docservers/';
constructor(
private _formBuilder: FormBuilder,
private notify: NotificationService,
) {
this.stepFormGroup = this._formBuilder.group({
firstCtrl: ['', Validators.required],
});
}
ngOnInit(): void {
}
isValidStep() {
return this.stepFormGroup === undefined ? false : this.stepFormGroup.valid;
}
getFormGroup() {
return this.stepFormGroup;
}
checkAvailability() {
this.stepFormGroup.controls['firstCtrl'].setValue('success');
this.notify.success('Le chemin est disponible');
}
}