summaryrefslogtreecommitdiffstats
path: root/rulemgt-frontend/pom.xml
AgeCommit message (Expand)AuthorFilesLines
2021-06-03Removed Dependency: httpclienttang peng1-1/+1
2021-04-07Fixed the Start-up Failure in the Dualstack Env1.3.3GuangrongFu1-1/+1
2021-03-25Replace the UI Certs1.3.2GuangrongFu1-1/+1
2021-03-25Bumped Version to 1.3.11.3.1GuangrongFu1-1/+1
2021-02-23Updated the Container Version to 1.3.0GuangrongFu1-1/+1
2020-10-23Register Holmes to MSB Using Ordinary HTTPS RequestGuangrongFu1-1/+1
2020-10-10Bumped the version to 1.2.8tang peng1-1/+1
2020-06-22Updated to Java 11GuangrongFu1-2/+4
2019-10-12Bumped the version to 1.2.75.0.2-ONAPelaltoGuangrongFu1-1/+1
2019-05-07Bumped the version of the component to 1.2.6GuangrongFu1-1/+1
2019-04-28Ajusted the version of the componentGuangrongFu1-1/+1
2019-03-14Bumped the versiontangpeng1-1/+1
2018-11-07Upgraded the Version to 1.2.3GuangrongFu1-1/+1
2018-11-01Modified the Docker TaggingGuangrongFu1-1/+1
2018-10-19Fixed Holmes Service Reg ProblemGuangrongFu1-1/+1
2018-10-17Update Dependency Versions to 1.2.1GuangrongFu1-1/+1
2018-08-22Updated the version to 1.2.0-SNAPSHOTGuangrongFu1-1/+1
2018-07-21Added the frontend moduleGuangrongFu1-23/+45
2018-07-20Made the directory a maven projectGuangrongFu1-0/+114
========== * 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 * * 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===================================================== * * 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 { type: aaiActionTypes.AAI_WINDOW_RESIZE }; } function createShowMenuEvent(show) { return { type: aaiActionTypes.AAI_SHOW_MENU, data: { showMenu: show } }; } export function windowResize() { return dispatch => { dispatch(createWindowSizeChangeEvent()); }; } export function showMainMenu(show) { return dispatch => { 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 }; }