no message

This commit is contained in:
Diamantis Tziotzios 2017-12-07 18:34:48 +02:00
parent 21df6ccdd1
commit daa0853dbc
4 changed files with 13 additions and 10 deletions

View File

@ -28,3 +28,7 @@
.ui-steps.steps-custom .ui-steps-item .ui-steps-title { .ui-steps.steps-custom .ui-steps-item .ui-steps-title {
color: #555555; color: #555555;
} }
.ng-sidebar {
width: 40%;
}

View File

@ -26,7 +26,6 @@
</form> </form>
</div> </div>
</div> </div>
</ng-sidebar-container> </ng-sidebar-container>
</div> </div>

View File

@ -1 +1 @@
<p-progressBar [value]="value"></p-progressBar> <p-progressBar [value]="value" [style]="{'height': '30px'}"></p-progressBar>

View File

@ -7,8 +7,8 @@ import { FormGroup, FormControl, FormArray } from '@angular/forms'
templateUrl: './progress-bar.component.html', templateUrl: './progress-bar.component.html',
}) })
export class ProgressBarComponent implements OnInit { export class ProgressBarComponent implements OnInit {
@Input() formGroup: FormGroup @Input() formGroup: FormGroup
@Input("progressValueAccuracy") public accuracy: number = 2 @Input("progressValueAccuracy") public accuracy: number = 1
constructor(private visibilityRulesService: VisibilityRulesService) { } constructor(private visibilityRulesService: VisibilityRulesService) { }
@ -16,12 +16,12 @@ export class ProgressBarComponent implements OnInit {
ngOnInit() { ngOnInit() {
this.formGroup this.formGroup
.valueChanges .valueChanges
.subscribe(control => { .subscribe(control => {
var progressSoFar = this.countFormControlsWithValue(this.formGroup); var progressSoFar = this.countFormControlsWithValue(this.formGroup);
var total = this.getFormControlDepthLength(this.formGroup); var total = this.getFormControlDepthLength(this.formGroup);
var perc = (progressSoFar / total) * 100; var perc = (progressSoFar / total) * 100;
this.value = Number.parseFloat(perc.toPrecision(this.accuracy)); this.value = Number.parseFloat(perc.toPrecision(this.accuracy));
}) });
} }
countFormControlsWithValue(form: FormGroup): number { countFormControlsWithValue(form: FormGroup): number {