Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import client from '@/api/loginAPI.js';
const state = {
token: null,
status: undefined,
};
const getters = {
getStatus: state => state.status,
};
export const POST_TOKEN = 'POST_TOKEN';
const actions = {
[POST_TOKEN]: async ({ state, commit }) => {
const data = { token: state.token };
await client.validationRegistration(data).then(response => {
commit('SET_STATUS', response);
});
},
};
export const SET_STATUS = 'SET_STATUS';
export const SET_TOKEN = 'SET_TOKEN';
const mutations = {
[SET_TOKEN]: (state, value) => {
state.token = value;
},
[SET_STATUS]: (state, response) => {
if (response === true) {
state.status = true;
} else {
state.status = false;
}
},
};
export default {
namespaced: true,
state,
getters,
actions,
mutations,
};