summaryrefslogtreecommitdiffstats
path: root/src/app/MainScreenWrapperActionHelper.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/MainScreenWrapperActionHelper.js')
-rw-r--r--src/app/MainScreenWrapperActionHelper.js102
1 files changed, 94 insertions, 8 deletions
diff --git a/src/app/MainScreenWrapperActionHelper.js b/src/app/MainScreenWrapperActionHelper.js
index 7918ec9..bcf78e3 100644
--- a/src/app/MainScreenWrapperActionHelper.js
+++ b/src/app/MainScreenWrapperActionHelper.js
@@ -1,26 +1,44 @@
/*
- * ============LICENSE_START=======================================================
- * org.onap.aai
- * ================================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+ * ============LICENSE_START===================================================
+ * SPARKY (AAI UI service)
+ * ============================================================================
+ * Copyright © 2017 AT&T Intellectual Property.
* Copyright © 2017 Amdocs
- * ================================================================================
+ * All rights reserved.
+ * ============================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
- * http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
- * ============LICENSE_END=========================================================
+ * ============LICENSE_END=====================================================
*
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ECOMP and OpenECOMP are trademarks
+ * and service marks of AT&T Intellectual Property.
*/
+
import {aaiActionTypes} from './MainScreenWrapperConstants.js';
+import {
+ POST,
+ POST_HEADER,
+ BASE_URL,
+ ERROR_RETRIEVING_DATA
+} from 'app/networking/NetworkConstants.js';
+import {
+ MESSAGE_LEVEL_DANGER
+} from 'utils/GlobalConstants.js';
+import {fetchRequestObj} from 'app/networking/NetworkCalls.js';
+
+import {
+ getSetGlobalMessageEvent,
+ getClearGlobalMessageEvent
+} from 'app/globalInlineMessageBar/GlobalInlineMessageBarActions.js';
function createWindowSizeChangeEvent() {
return {
@@ -48,3 +66,71 @@ export function showMainMenu(show) {
dispatch(createShowMenuEvent(show));
};
}
+
+function createViewDataFoundEvent(viewData, paramName, curViewData) {
+ var obj = {};
+ obj['data'] = {};
+ obj['data']['paramName'] = paramName;
+ obj['data']['viewData'] = viewData;
+ obj['data']['curViewData'] = curViewData;
+ obj['type'] = aaiActionTypes.EXTENSIBLE_VIEW_NETWORK_CALLBACK_RESPONSE_RECEIVED;
+
+ return obj;
+}
+
+function extensibleViewData(dataFetchRequest, paramName, curViewData) {
+ return dispatch => {
+ return dataFetchRequest().then(
+ (response) => {
+ return response.json();
+ }
+ ).then(
+ (responseJson) => {
+ dispatch(createViewDataFoundEvent(responseJson, paramName, curViewData));
+ }).catch(
+ () => {
+ dispatch(getSetGlobalMessageEvent(ERROR_RETRIEVING_DATA, MESSAGE_LEVEL_DANGER));
+ 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) {
+
+ let dataFetchRequest =
+ () => fetchRequestObj(BASE_URL + urlApi, POST,
+ POST_HEADER, postBody);
+
+
+ return dispatch => {
+ dispatch(extensibleViewData(dataFetchRequest, paramName, curViewData));
+ };
+}
+
+export function extensibleViewMessageCallback(msgText, msgSeverity) {
+ if (msgText.length > 0) {
+ return dispatch => {
+ dispatch(
+ getSetGlobalMessageEvent(msgText, msgSeverity));
+ };
+ } else {
+ return dispatch => {
+ dispatch(getClearGlobalMessageEvent());
+ };
+ }
+}
+
+export function clearExtensibleViewData() {
+ return {
+ type: aaiActionTypes.EXTENSIBLE_VIEW_NETWORK_CALLBACK_CLEAR_DATA,
+ data: {}
+ };
+}
+
+export function setSecondaryTitle(title) {
+ return {
+ type: aaiActionTypes.SET_SECONDARY_TITLE,
+ data: title
+ };
+}