summaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
authorkirankumarb07 <kirankumarb@ami.com>2023-01-12 13:20:30 +0300
committerKiran Kumar Ballapalli <kirankumarb@ami.com>2023-02-18 17:28:29 +0300
commitb89eed27d5b1bc60a46ce88ab1322e12137425b2 (patch)
tree26628866f051f6a6d5b11d9bc589e0cc4457161c /src/store
parente8cb2c6a81e8abb75cb63c10c29008d868e7fef2 (diff)
downloadwebui-vue-b89eed27d5b1bc60a46ce88ab1322e12137425b2.tar.xz
Closed KVM new window after WEBUI logged out
Description: When KVM is opened in new window, after WEB UI is logged out, opened KVM window is not getting closed. It remains opened and accessible. Root Cause: There is not handle to close the KVM new window after the WEB UI logged out. Fix: Added the KVM window opened information in store, and checked that information to close the window. Tested: Step 1: Login to WEB UI Step 2: Navigate to Operations -> KVM Step 3: Open KVM in new window Step 4: Click Logout in WEB UI Result: After successful log out, KVM new window is closed as expected. Change-Id: Iab8e54d3088a08fb0ae9b581b2647fc0ab5460bd Signed-off-by: Kirankumar Ballapalli <kirankumarb@ami.com>
Diffstat (limited to 'src/store')
-rw-r--r--src/store/modules/Authentication/AuthenticanStore.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/store/modules/Authentication/AuthenticanStore.js b/src/store/modules/Authentication/AuthenticanStore.js
index 07d5ee8b..88fb54b8 100644
--- a/src/store/modules/Authentication/AuthenticanStore.js
+++ b/src/store/modules/Authentication/AuthenticanStore.js
@@ -5,11 +5,13 @@ import router from '@/router';
const AuthenticationStore = {
namespaced: true,
state: {
+ consoleWindow: null,
authError: false,
xsrfCookie: Cookies.get('XSRF-TOKEN'),
isAuthenticatedCookie: Cookies.get('IsAuthenticated'),
},
getters: {
+ consoleWindow: (state) => state.consoleWindow,
authError: (state) => state.authError,
isLoggedIn: (state) => {
return (
@@ -33,6 +35,7 @@ const AuthenticationStore = {
state.xsrfCookie = undefined;
state.isAuthenticatedCookie = undefined;
},
+ setConsoleWindow: (state, window) => (state.consoleWindow = window),
},
actions: {
login({ commit }, { username, password }) {
@@ -48,7 +51,10 @@ const AuthenticationStore = {
logout({ commit }) {
api
.post('/logout', { data: [] })
- .then(() => commit('logout'))
+ .then(() => {
+ commit('setConsoleWindow', false);
+ commit('logout');
+ })
.then(() => router.go('/login'))
.catch((error) => console.log(error));
},