update odlux and featureaggregator
[ccsdk/features.git] / sdnr / wt / odlux / apps / connectApp / src / actions / infoNetworkElementActions.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
21 import { TopologyNode } from '../models/topologyNetconf';
22 import { connectService } from '../services/connectService';
23
24 /** 
25  * Represents the base action. 
26  */
27 export class BaseAction extends Action { }
28
29 /** 
30  * Represents an action causing the store to load all element Yang capabilities.
31  */
32 export class LoadAllElementInfoAction extends BaseAction { }
33
34 /** 
35  * Represents an action causing the store to update element Yang capabilities. 
36  */
37 export class AllElementInfoLoadedAction extends BaseAction {
38   /**
39    * Initialize this instance.
40    * @param elementInfo The information of the element which is returned.
41    */
42   constructor(public elementInfo: TopologyNode | null, public error?: string) {
43     super();
44   }
45 }
46
47 /** 
48  * Represents an asynchronous thunk  action to load all yang capabilities. 
49  */
50 export const loadAllInfoElementAsync = (nodeId: string) => (dispatch: Dispatch) => {
51   dispatch(new LoadAllElementInfoAction());
52   connectService.infoNetworkElement(nodeId).then(info => {
53     dispatch(new AllElementInfoLoadedAction(info));
54   }, error => {
55     dispatch(new AllElementInfoLoadedAction(null, error));
56   });
57