ff9ef0663106ae4731ae4803ff658507b3ddfe41
[ccsdk/features.git] / sdnr / wt / odlux / framework / src / services / applicationApi.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 { Event } from '../common/event';
19 import { ApplicationStore } from '../store/applicationStore';
20
21 let resolveApplicationStoreInitialized: (store: ApplicationStore) => void;
22 let applicationStore: ApplicationStore | null = null;
23 const applicationStoreInitialized: Promise<ApplicationStore> = new Promise((resolve) => resolveApplicationStoreInitialized = resolve);
24
25 const loginEvent = new Event();
26 const logoutEvent = new Event();
27
28 export const onLogin = () => {
29   loginEvent.invoke();
30 }
31
32 export const onLogout = () => {
33   document.cookie = "JSESSIONID=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
34   logoutEvent.invoke();
35 }
36
37 export const setApplicationStore = (store: ApplicationStore) => {
38   if (!applicationStore && store) {
39     applicationStore = store;
40     resolveApplicationStoreInitialized(store);
41   }
42 }
43
44 export const applicationApi = {
45   get applicationStore(): ApplicationStore | null {
46     return applicationStore;
47   },
48
49   get applicationStoreInitialized(): Promise<ApplicationStore> {
50     return applicationStoreInitialized;
51   },
52
53   get loginEvent() {
54     return loginEvent;
55   },
56
57   get logoutEvent() {
58     return logoutEvent;
59   }
60 };
61
62 export default applicationApi;