blob: 99b390d2f2a87dadd9366a296d0f37c037cdd960 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { Injectable } from '@angular/core';
import { isNullOrUndefined } from 'util';
import { FormGroup } from '@angular/forms';
import * as _ from 'lodash';
import { createVFModuleInstance, updateVFModuleInstance, updateVNFInstance } from '../../../service.actions';
import { NgRedux } from '@angular-redux/store';
import { AppState } from '../../../store/reducers';
@Injectable()
export class ServiceInstanceDetailsService {
static controlsFieldsStatus = {};
constructor(private store: NgRedux<AppState>) { }
hasApiError(controlName: string, data: Array<any>, serviceInstanceDetailsFormGroup: FormGroup) {
if (!isNullOrUndefined(data)) {
if (!serviceInstanceDetailsFormGroup.controls[controlName].disabled && data.length === 0) {
return true;
}
}
return false;
}
}
|