Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / framework / src / actions / navigationActions.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 "../flux/action";
19
20 export abstract class NavigationAction extends Action { }
21
22 export class NavigateToApplication<TState = { }> extends NavigationAction {
23  
24   constructor(public applicationName: string, public href?: string, public state?: TState, public replace: boolean = false ) {
25     super();
26     
27   }
28 }
29
30 export class PushAction<TState = { }> extends NavigationAction {
31   constructor(public href: string, public state?: TState) {
32     super();
33
34   }
35 }
36
37 export class ReplaceAction<TState = { }> extends NavigationAction {
38   constructor(public href: string, public state?: TState) {
39     super();
40
41   }
42 }
43
44 export class GoAction extends NavigationAction {
45   constructor(public index: number) {
46     super();
47
48   }
49 }
50
51 export class GoBackAction extends NavigationAction {
52
53 }
54
55 export class GoForwardeAction extends NavigationAction {
56
57 }
58
59 export class LocationChanged extends NavigationAction {
60   constructor(public pathname: string, public search: string, public hash: string ) {
61     super();
62     
63   }
64