]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
0d4d0e770b10c96371f4b1f1cb0bcdcaa1d5382d
[ceph-ci.git] /
1 import { Component, ElementRef, EventEmitter, Input, OnInit, Output } from '@angular/core';
2 import { AbstractControl, FormGroup, FormGroupDirective, NgForm } from '@angular/forms';
3
4 import * as _ from 'lodash';
5
6 import { Icons } from '../../../shared/enum/icons.enum';
7
8 /**
9  * This component will render a submit button with the given label.
10  *
11  * The button will disabled itself and show a loading icon when the user clicks
12  * it, usually initiating a request to the server, and it will stay in that
13  * state until the request is finished.
14  *
15  * To indicate that the request failed, returning the button to the enable
16  * state, you need to insert an error in the form with the 'cdSubmitButton' key.
17  * p.e.: this.rbdForm.setErrors({'cdSubmitButton': true});
18  *
19  * It will also check if the form is valid, when clicking the button, and will
20  * focus on the first invalid input.
21  *
22  * @export
23  * @class SubmitButtonComponent
24  * @implements {OnInit}
25  */
26 @Component({
27   selector: 'cd-submit-button',
28   templateUrl: './submit-button.component.html',
29   styleUrls: ['./submit-button.component.scss']
30 })
31 export class SubmitButtonComponent implements OnInit {
32   @Input()
33   form: FormGroup | NgForm;
34
35   @Input()
36   type = 'submit';
37
38   @Input()
39   disabled = false;
40
41   // A CSS class string to apply to the button's main element.
42   @Input()
43   btnClass: string;
44
45   @Output()
46   submitAction = new EventEmitter();
47
48   loading = false;
49   icons = Icons;
50
51   constructor(private elRef: ElementRef) {}
52
53   ngOnInit() {
54     this.form.statusChanges.subscribe(() => {
55       if (_.has(this.form.errors, 'cdSubmitButton')) {
56         this.loading = false;
57         _.unset(this.form.errors, 'cdSubmitButton');
58         // Handle Reactive forms.
59         if (this.form instanceof AbstractControl) {
60           (<AbstractControl>this.form).updateValueAndValidity();
61         }
62       }
63     });
64   }
65
66   submit($event: any) {
67     this.focusButton();
68
69     // Special handling for Template driven forms.
70     if (this.form instanceof FormGroupDirective) {
71       (<FormGroupDirective>this.form).onSubmit($event);
72     }
73
74     if (this.form.invalid) {
75       this.focusInvalid();
76       return;
77     }
78
79     this.loading = true;
80     this.submitAction.emit();
81   }
82
83   focusButton() {
84     this.elRef.nativeElement.offsetParent.querySelector(`button[type="${this.type}"]`).focus();
85   }
86
87   focusInvalid() {
88     const target = this.elRef.nativeElement.offsetParent.querySelector(
89       'input.ng-invalid, select.ng-invalid'
90     );
91
92     if (target) {
93       target.focus();
94     }
95   }
96 }