summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/components/form-async/form-async.component.ts
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2018-08-29 17:01:32 +0300
committerIttay Stern <ittay.stern@att.com>2019-02-18 18:35:30 +0200
commit6f900cc45d7dd7f97430812b86b5c1d1693c8ae3 (patch)
tree936005c364dc5a7264d6304d4777c3d83494db22 /vid-webpack-master/src/app/components/form-async/form-async.component.ts
parent67d99f816cc583643c35193197594cf78d8ce60a (diff)
merge from ecomp a88f0072 - Modern UI
Issue-ID: VID-378 Change-Id: Ibcb23dd27f550cf32ce2fe0239f0f496ae014ff6 Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-webpack-master/src/app/components/form-async/form-async.component.ts')
-rw-r--r--vid-webpack-master/src/app/components/form-async/form-async.component.ts80
1 files changed, 0 insertions, 80 deletions
diff --git a/vid-webpack-master/src/app/components/form-async/form-async.component.ts b/vid-webpack-master/src/app/components/form-async/form-async.component.ts
deleted file mode 100644
index e71c4446b..000000000
--- a/vid-webpack-master/src/app/components/form-async/form-async.component.ts
+++ /dev/null
@@ -1,80 +0,0 @@
-import {Component, Input, OnInit, ViewChild} from '@angular/core';
-import { NgRedux, select } from '@angular-redux/store';
-import { Observable } from "rxjs/Observable";
-import { updateProductFamilies } from "../../service.actions";
-import { AppState } from "../../store/reducers";
-import {
- loadProductFamiliesAction, loadLcpTenant, loadAicZones,
- loadCategoryParameters
-} from '../../services/aaiService/aai.actions';
-import { LcpRegionsAndTenants } from "../../shared/models/lcpRegionsAndTenants";
-import {NgForm} from "@angular/forms";
-import {SelectOption} from "../../shared/models/selectOption";
-import {VNFModel} from "../../shared/models/vnfModel";
-
-@Component({
- selector: "formasync",
- templateUrl: "form-async.template.html",
- styleUrls: ["form-async.style.scss"],
-
-})
-
-export class formasync implements OnInit {
-
- constructor(private store: NgRedux<AppState>) { }
-
- @ViewChild('form') form: NgForm;
-
- @Input()
- set model(model: VNFModel) {
- if (model) {
- this.isUserProvidedNaming = model.isUserProvidedNaming;
- }
- };
-
- @select(['service', 'productFamilies'])
- readonly productFamilies: Observable<any>;
-
- @select(['service', 'lcpRegionsAndTenants'])
- readonly lcpRegionsAndTenants: Observable<any>;
-
- @select(['service', 'lcpRegionsAndTenants', 'lcpRegionList'])
- readonly lcpRegions: Observable<any>;
-
- @select(['service', 'aicZones'])
- readonly aicZones: Observable<any>;
-
- @select(['service', 'categoryParameters', 'platformList'])
- readonly platformList: Observable<any>;
-
- @select(['service', 'categoryParameters', 'lineOfBusinessList'])
- readonly lineOfBusinessList: Observable<any>;
-
- rollbackOnFailure = [
- new SelectOption({id: 'true', name: 'Rollback'}),
- new SelectOption({id: 'false', name: 'Don\'t Rollback'})
- ];
- tenants = [];
-
- serviceInstance: any = {
- rollback:'true'
- };
-
- isUserProvidedNaming: boolean = false;
-
- onLcpSelect(newValue: string) {
- let value: LcpRegionsAndTenants = undefined;
- this.lcpRegionsAndTenants.subscribe(data => value = data);
- this.tenants = value.lcpRegionsTenantsMap[newValue];
- }
-
- ngOnInit() {
- this.store.dispatch(loadProductFamiliesAction());
- this.store.dispatch(loadLcpTenant());
- this.store.dispatch(loadAicZones());
- this.store.dispatch(loadCategoryParameters());
- }
-}
-
-
-