summaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2019-12-11 15:16:40 +0300
committerDerick Montague <derick.montague@ibm.com>2020-01-27 17:38:19 +0300
commitfded0d11289f737a845abb5ee8bb10725f870cf3 (patch)
tree71d3957557de1d261e40dc1db102e6661936f4c5 /src/store
parentf3ab8bc86bd10e6d7398970db07d91a28485359d (diff)
downloadwebui-vue-fded0d11289f737a845abb5ee8bb10725f870cf3.tar.xz
Add singlequote override and fix files
Based on phosphor-webui and JavaScript common practices we are setting ESLint to required single quote for JS files and double quote for SCSS files. This commit adds the ESLint override to the prettier rules and runs the npm lint script that fixes the files that violate the rule. Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: I50cba77b2d0797595ce94258029608efa8665005
Diffstat (limited to 'src/store')
-rw-r--r--src/store/api.js2
-rw-r--r--src/store/index.js10
-rw-r--r--src/store/modules/AccessControl/LocalUserMangementStore.js16
-rw-r--r--src/store/modules/Authentication/AuthenticanStore.js32
-rw-r--r--src/store/modules/GlobalStore.js8
5 files changed, 34 insertions, 34 deletions
diff --git a/src/store/api.js b/src/store/api.js
index c50bcbee..da6f3982 100644
--- a/src/store/api.js
+++ b/src/store/api.js
@@ -1,4 +1,4 @@
-import Axios from "axios";
+import Axios from 'axios';
const api = Axios.create({
withCredentials: true
diff --git a/src/store/index.js b/src/store/index.js
index b4be6ccd..4ef1c9d0 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -1,9 +1,9 @@
-import Vue from "vue";
-import Vuex from "vuex";
+import Vue from 'vue';
+import Vuex from 'vuex';
-import GlobalStore from "./modules/GlobalStore";
-import AuthenticationStore from "./modules/Authentication/AuthenticanStore";
-import LocalUserManagementStore from "./modules/AccessControl/LocalUserMangementStore";
+import GlobalStore from './modules/GlobalStore';
+import AuthenticationStore from './modules/Authentication/AuthenticanStore';
+import LocalUserManagementStore from './modules/AccessControl/LocalUserMangementStore';
Vue.use(Vuex);
diff --git a/src/store/modules/AccessControl/LocalUserMangementStore.js b/src/store/modules/AccessControl/LocalUserMangementStore.js
index de79a2d7..815c1661 100644
--- a/src/store/modules/AccessControl/LocalUserMangementStore.js
+++ b/src/store/modules/AccessControl/LocalUserMangementStore.js
@@ -1,4 +1,4 @@
-import api from "../../api";
+import api from '../../api';
const LocalUserManagementStore = {
namespaced: true,
@@ -18,12 +18,12 @@ const LocalUserManagementStore = {
actions: {
getUsers({ commit }) {
api
- .get("/redfish/v1/AccountService/Accounts")
- .then(response => response.data.Members.map(user => user["@odata.id"]))
+ .get('/redfish/v1/AccountService/Accounts')
+ .then(response => response.data.Members.map(user => user['@odata.id']))
.then(userIds => api.all(userIds.map(user => api.get(user))))
.then(users => {
const userData = users.map(user => user.data);
- commit("setUsers", userData);
+ commit('setUsers', userData);
})
.catch(error => console.log(error));
},
@@ -35,8 +35,8 @@ const LocalUserManagementStore = {
Enabled: status
};
api
- .post("/redfish/v1/AccountService/Accounts", data)
- .then(() => dispatch("getUsers"))
+ .post('/redfish/v1/AccountService/Accounts', data)
+ .then(() => dispatch('getUsers'))
.catch(error => console.log(error));
},
updateUser(
@@ -50,13 +50,13 @@ const LocalUserManagementStore = {
if (status !== undefined) data.Enabled = status;
api
.patch(`/redfish/v1/AccountService/Accounts/${originalUsername}`, data)
- .then(() => dispatch("getUsers"))
+ .then(() => dispatch('getUsers'))
.catch(error => console.log(error));
},
deleteUser({ dispatch }, username) {
api
.delete(`/redfish/v1/AccountService/Accounts/${username}`)
- .then(() => dispatch("getUsers"))
+ .then(() => dispatch('getUsers'))
.catch(error => console.log(error));
}
}
diff --git a/src/store/modules/Authentication/AuthenticanStore.js b/src/store/modules/Authentication/AuthenticanStore.js
index 3512e2da..88456e95 100644
--- a/src/store/modules/Authentication/AuthenticanStore.js
+++ b/src/store/modules/Authentication/AuthenticanStore.js
@@ -1,11 +1,11 @@
-import api from "../../api";
-import Cookies from "js-cookie";
+import api from '../../api';
+import Cookies from 'js-cookie';
const AuthenticationStore = {
namespaced: true,
state: {
- status: "",
- cookie: Cookies.get("XSRF-TOKEN")
+ status: '',
+ cookie: Cookies.get('XSRF-TOKEN')
},
getters: {
authStatus: state => state.status,
@@ -13,35 +13,35 @@ const AuthenticationStore = {
},
mutations: {
authRequest(state) {
- state.status = "loading";
+ state.status = 'loading';
},
authSuccess(state) {
- state.status = "authenticated";
- state.cookie = Cookies.get("XSRF-TOKEN");
+ state.status = 'authenticated';
+ state.cookie = Cookies.get('XSRF-TOKEN');
},
authError(state) {
- state.status = "error";
+ state.status = 'error';
},
logout(state) {
- state.status = "";
- Cookies.remove("XSRF-TOKEN");
+ state.status = '';
+ Cookies.remove('XSRF-TOKEN');
}
},
actions: {
login({ commit }, auth) {
- commit("authRequest");
+ commit('authRequest');
return api
- .post("/login", { data: auth })
- .then(() => commit("authSuccess"))
+ .post('/login', { data: auth })
+ .then(() => commit('authSuccess'))
.catch(error => {
- commit("authError");
+ commit('authError');
throw new Error(error);
});
},
logout({ commit }) {
api
- .post("/logout", { data: [] })
- .then(() => commit("logout"))
+ .post('/logout', { data: [] })
+ .then(() => commit('logout'))
.catch(error => console.log(error));
}
}
diff --git a/src/store/modules/GlobalStore.js b/src/store/modules/GlobalStore.js
index 332c8017..8cf2e8eb 100644
--- a/src/store/modules/GlobalStore.js
+++ b/src/store/modules/GlobalStore.js
@@ -1,9 +1,9 @@
-import api from "../api";
+import api from '../api';
const GlobalStore = {
namespaced: true,
state: {
- hostName: "--",
+ hostName: '--',
hostStatus: null
},
getters: {
@@ -22,10 +22,10 @@ const GlobalStore = {
actions: {
getHostName({ commit }) {
api
- .get("/xyz/openbmc_project/network/config/attr/HostName")
+ .get('/xyz/openbmc_project/network/config/attr/HostName')
.then(response => {
const hostName = response.data.data;
- commit("setHostName", hostName);
+ commit('setHostName', hostName);
})
.catch(error => console.log(error));
}