Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / apps / mediatorApp / src / actions / avaliableMediatorServersActions.ts
1 /**
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt odlux
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 import { Action } from '../../../../framework/src/flux/action';
19 import { Dispatch } from '../../../../framework/src/flux/store';
20 import { AddSnackbarNotification } from '../../../../framework/src/actions/snackbarActions';
21
22 import { MediatorServer } from '../models/mediatorServer';
23 import { avaliableMediatorServersReloadAction } from '../handlers/avaliableMediatorServersHandler';
24 import mediatorService from '../services/mediatorService';
25
26 /** Represents the base action. */
27 export class BaseAction extends Action { }
28
29 /** Represents an async thunk action that will add a server to the avaliable mediator servers. */
30 export const addAvaliableMediatorServerAsyncActionCreator = (server: MediatorServer) => (dispatch: Dispatch) => {
31     mediatorService.insertMediatorServer(server).then(_ => {
32       window.setTimeout(() => {
33         dispatch(avaliableMediatorServersReloadAction);
34         dispatch(new AddSnackbarNotification({ message: `Successfully added [${ server.name }]`, options: { variant: 'success' } }));
35       }, 900);
36     });
37   };
38
39   /** Represents an async thunk action that will add a server to the avaliable mediator servers. */
40 export const updateAvaliableMediatorServerAsyncActionCreator = (server: MediatorServer) => (dispatch: Dispatch) => {
41   mediatorService.updateMediatorServer(server).then(_ => {
42     window.setTimeout(() => {
43       dispatch(avaliableMediatorServersReloadAction);
44       dispatch(new AddSnackbarNotification({ message: `Successfully updated [${ server.name }]`, options: { variant: 'success' } }));
45     }, 900);
46   });
47 };
48   
49   /** Represents an async thunk action that will delete a server from the avaliable mediator servers. */
50   export const removeAvaliableMediatorServerAsyncActionCreator = (server: MediatorServer) => (dispatch: Dispatch) => {
51     mediatorService.deleteMediatorServer(server).then(_ => {
52       window.setTimeout(() => {
53         dispatch(avaliableMediatorServersReloadAction);
54         dispatch(new AddSnackbarNotification({ message: `Successfully removed [${ server.name }]`, options: { variant: 'success' } }));
55       }, 900);
56     });
57   };
58