[AAI] Remove Robby Maharajh & Harish Kajur as committers
[aai/sparky-fe.git] / src / app / MainScreenWrapperActionHelper.js
index 3e22206..3477b03 100644 (file)
@@ -2,8 +2,8 @@
  * ============LICENSE_START=======================================================
  * org.onap.aai
  * ================================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
- * Copyright © 2017 Amdocs
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 Amdocs
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,8 +17,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  * ============LICENSE_END=========================================================
- *
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
  */
 import {
   POST,
@@ -76,8 +74,7 @@ function createOverlayDataFoundEvent(overlayData, paramName, curData, responseEv
 }
 
 function overlayViewData(dataFetchRequest, paramName, curData, responseEventKey) {
-  return dispatch => {
-    dataFetchRequest().then(
+  return dispatch => dataFetchRequest().then(
       (response) => {
         return response.json();
       }
@@ -89,8 +86,7 @@ function overlayViewData(dataFetchRequest, paramName, curData, responseEventKey)
         dispatch(getSetGlobalMessageEvent(ERROR_RETRIEVING_DATA, MESSAGE_LEVEL_DANGER));
         dispatch(createOverlayDataFoundEvent({}, paramName, curData, responseEventKey));
       });
-  };
-}
+};
 
 export function overlayNetworkCallback(urlApi, postBody, paramName, curData, responseEventKey) {
   let dataFetchRequest =
@@ -115,8 +111,7 @@ function createViewDataFoundEvent(viewData, paramName, curViewData) {
 }
 
 function extensibleViewData(dataFetchRequest, paramName, curViewData) {
-  return dispatch => {
-    return dataFetchRequest().then(
+  return dispatch => dataFetchRequest().then(
       (response) => {
         return response.json();
       }
@@ -129,7 +124,6 @@ function extensibleViewData(dataFetchRequest, paramName, curViewData) {
         dispatch(createViewDataFoundEvent({}, paramName, curViewData));
         //To-do: If need to send a flag later on to the view, add a function to have the flag
       });
-  };
 }
 
 export function extensibleViewNetworkCallback(urlApi, postBody, paramName, curViewData) {
@@ -138,10 +132,7 @@ export function extensibleViewNetworkCallback(urlApi, postBody, paramName, curVi
     () => fetchRequestObj(BASE_URL + urlApi, POST,
       POST_HEADER, postBody);
 
-
-  return dispatch => {
-    dispatch(extensibleViewData(dataFetchRequest, paramName, curViewData));
-  };
+  return dispatch => dispatch(extensibleViewData(dataFetchRequest, paramName, curViewData));
 }
 
 export function extensibleViewMessageCallback(msgText, msgSeverity) {