|
@@ -12,6 +12,7 @@ export default class AdminCustomizeContainer extends Container {
|
|
|
this.appContainer = appContainer;
|
|
this.appContainer = appContainer;
|
|
|
|
|
|
|
|
this.state = {
|
|
this.state = {
|
|
|
|
|
+ // TODO GW-575 set data from apiV3
|
|
|
currentTheme: appContainer.config.themeType,
|
|
currentTheme: appContainer.config.themeType,
|
|
|
currentLayout: appContainer.config.layoutType,
|
|
currentLayout: appContainer.config.layoutType,
|
|
|
currentBehavior: appContainer.config.behaviorType,
|
|
currentBehavior: appContainer.config.behaviorType,
|
|
@@ -25,6 +26,8 @@ export default class AdminCustomizeContainer extends Container {
|
|
|
currentCustomizeScript: appContainer.config.customizeScript,
|
|
currentCustomizeScript: appContainer.config.customizeScript,
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+ this.init();
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -34,6 +37,13 @@ export default class AdminCustomizeContainer extends Container {
|
|
|
return 'AdminCustomizeContainer';
|
|
return 'AdminCustomizeContainer';
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * retrieve customize data
|
|
|
|
|
+ */
|
|
|
|
|
+ init() {
|
|
|
|
|
+ // TODO GW-575 fetch data with apiV3
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Fetch highLight theme
|
|
* Fetch highLight theme
|
|
|
*/
|
|
*/
|