Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / 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 { Module, 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 action causing the store to update element Yang capabilities Module Features. 
49   */
50 export class AllElementInfoFeatureLoadedAction extends BaseAction {
51   /**
52     * Initialize this instance.
53     * @param elementFeatureInfo The information of the element which is returned.
54     */
55   constructor(public elementFeatureInfo: Module[] | null | undefined, public error?: string) {
56     super();
57   }
58 }
59  
60 /** 
61   * Represents an asynchronous thunk  action to load all yang capabilities. 
62   */
63 export const loadAllInfoElementAsync = (nodeId: string) => (dispatch: Dispatch) => {
64   dispatch(new LoadAllElementInfoAction());
65   connectService.infoNetworkElement(nodeId).then(info => {
66     dispatch(new AllElementInfoLoadedAction(info));
67   }, error => {
68     dispatch(new AllElementInfoLoadedAction(null, error));
69   });
70 }; 
71  
72 /** 
73   * Represents an asynchronous thunk  action to load all yang features. 
74   */
75 export const loadAllInfoElementFeaturesAsync = (nodeId: string) => (dispatch: Dispatch) => {
76   dispatch(new LoadAllElementInfoAction());
77   connectService.infoNetworkElementFeatures(nodeId).then(infoFeatures => {
78     dispatch(new AllElementInfoFeatureLoadedAction(infoFeatures));
79   }, error => {
80     dispatch(new AllElementInfoFeatureLoadedAction(null, error));
81   });
82 };