summaryrefslogtreecommitdiffstats
path: root/public/src/app/store/store.ts
diff options
context:
space:
mode:
authorManor, Yanir (ym903w) <ym903w@intl.att.com>2018-10-21 11:00:42 +0300
committerManor, Yanir (ym903w) <ym903w@intl.att.com>2018-10-21 11:00:42 +0300
commita0c5a22d123f1bdaa8ec7bfbf75f76cbe2ace29a (patch)
tree456198ada103cd23bd57f40b6475fb3c9a86fef5 /public/src/app/store/store.ts
parent29ffa5ef26f82002bf894b9288e9a369a144388d (diff)
Update code to latest
Change-Id: I76b37c2d6d333204899c9bc87f310e5b607a5e73 Issue-ID: DCAEGEN2-836 Signed-off-by: Manor, Yanir (ym903w) <ym903w@intl.att.com>
Diffstat (limited to 'public/src/app/store/store.ts')
-rw-r--r--public/src/app/store/store.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/public/src/app/store/store.ts b/public/src/app/store/store.ts
index 5ae4f24..5bd8c3e 100644
--- a/public/src/app/store/store.ts
+++ b/public/src/app/store/store.ts
@@ -7,7 +7,11 @@ import { groupBy, prop, compose, values } from 'ramda';
export class Store {
@observable sdcParmas;
@observable isOwner;
+ @observable viewOnly = false;
@observable mcUuid;
+ @observable mcName;
+ @observable submittedMcUuid;
+ @observable monitoringComponents = new Array();
@observable cdump;
@observable tabsProperties;
@observable tabIndex = 0;
@@ -22,6 +26,7 @@ export class Store {
@observable ifrmaeMessenger;
@observable waitForSave = false;
@observable displaySDCDialog = false;
+ @observable displayRevertDialog = false;
// error dialog
@observable displayErrorDialog = false;
@observable ErrorContent = [];
@@ -140,10 +145,13 @@ export class Store {
return x;
});
});
+ this.expandAdvancedSetting = [];
nodes.map(() => {
this.expandAdvancedSetting.push(false);
this.expandImports.push(false);
});
+ // console.log('this.tabIndex', this.tabIndex);
+ // console.log('this.expandAdvancedSetting', this.expandAdvancedSetting);
console.log('tabsProperties: %o', this.tabsProperties.toJS());
}