release v2.0.0 #4
12
src/App.vue
12
src/App.vue
|
@ -65,7 +65,7 @@
|
||||||
:items="lifeTimes"
|
:items="lifeTimes"
|
||||||
item-text="text"
|
item-text="text"
|
||||||
item-value="value"
|
item-value="value"
|
||||||
v-model="selectLifeTime"
|
v-model="selectLifetime"
|
||||||
return-object
|
return-object
|
||||||
/>
|
/>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
|
@ -90,7 +90,7 @@ export default {
|
||||||
render: 0,
|
render: 0,
|
||||||
timer: null,
|
timer: null,
|
||||||
change: false,
|
change: false,
|
||||||
selectLifeTime: { text: '30 Minuten', value: 1800 },
|
selectLifetime: { text: '30 Minuten', value: 1800 },
|
||||||
lifeTimes: [
|
lifeTimes: [
|
||||||
{
|
{
|
||||||
text: '5 Minuten',
|
text: '5 Minuten',
|
||||||
|
@ -140,20 +140,20 @@ export default {
|
||||||
}),
|
}),
|
||||||
created() {
|
created() {
|
||||||
if (this.isLoggedIn) {
|
if (this.isLoggedIn) {
|
||||||
this.getLifeTime()
|
this.getLifetime()
|
||||||
}
|
}
|
||||||
this.timer = setInterval(this.test, 1000)
|
this.timer = setInterval(this.test, 1000)
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
...mapActions(['setLifeTime', 'saveLifeTime', 'logout', 'getLifeTime']),
|
...mapActions(['setLifetime', 'saveLifetime', 'logout', 'getLifetime']),
|
||||||
test() {
|
test() {
|
||||||
if (this.isLoggedIn) {
|
if (this.isLoggedIn) {
|
||||||
if (this.lifeTime == 0) this.logout()
|
if (this.lifeTime == 0) this.logout()
|
||||||
this.setLifeTime(this.lifeTime - 1)
|
this.setLifetime(this.lifeTime - 1)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
save() {
|
save() {
|
||||||
this.saveLifeTime(this.selectLifeTime.value)
|
this.saveLifetime(this.selectLifetime.value)
|
||||||
this.change = false
|
this.change = false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
//const main = 'https://192.168.5.128:5000/'
|
//const main = 'https://192.168.5.128:5000/'
|
||||||
//const main = 'http://localhost:5000/'
|
//const main = 'http://localhost:5000/'
|
||||||
//const main = 'http://192.168.5.118:5000/'
|
//const main = 'http://192.168.5.118:5000/'
|
||||||
const main = 'https://groeger-clan.duckdns.org:5000/'
|
//const main = 'https://groeger-clan.duckdns.org:5000/'
|
||||||
//const main = 'https://flaschengeist.wu5.de:5000/'
|
const main = 'https://flaschengeist.wu5.de:5000/'
|
||||||
|
|
||||||
const url = {
|
const url = {
|
||||||
login: main + 'login',
|
login: main + 'login',
|
||||||
|
@ -25,8 +25,8 @@ const url = {
|
||||||
finanzerSendOneMail: main + 'finanzerSendOneMail',
|
finanzerSendOneMail: main + 'finanzerSendOneMail',
|
||||||
userMain: main + 'user/main',
|
userMain: main + 'user/main',
|
||||||
userAddAmount: main + 'user/addAmount',
|
userAddAmount: main + 'user/addAmount',
|
||||||
saveLifeTime: main + 'saveLifeTime',
|
saveLifetime: main + 'setLifetime',
|
||||||
getLifeTime: main + 'getLifeTime',
|
getLifetime: main + 'getLifetime',
|
||||||
resetPassword: main + 'passwordReset',
|
resetPassword: main + 'passwordReset',
|
||||||
freeDrinkListConfig: main + 'freeDrinkListConfig',
|
freeDrinkListConfig: main + 'freeDrinkListConfig',
|
||||||
freeDrinkListHistory: main + 'freeDrinkListHistory',
|
freeDrinkListHistory: main + 'freeDrinkListHistory',
|
||||||
|
|
|
@ -160,14 +160,14 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setUsers', response.data)
|
commit('setUsers', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
}
|
}
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) {
|
if (e.response.status === 401) {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
location.reload()
|
location.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -191,7 +191,7 @@ const actions = {
|
||||||
amount: data.amount,
|
amount: data.amount,
|
||||||
error: false
|
error: false
|
||||||
})
|
})
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(typeof e)
|
console.log(typeof e)
|
||||||
for (const [key, value] of Object.entries(e)) {
|
for (const [key, value] of Object.entries(e)) {
|
||||||
|
@ -207,7 +207,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) {
|
if (e.response.status === 401) {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
location.reload()
|
location.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -230,14 +230,14 @@ const actions = {
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
commit('setUsers', { [response.data.username]: response.data })
|
commit('setUsers', { [response.data.username]: response.data })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
}
|
}
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) {
|
if (e.response.status === 401) {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
location.reload()
|
location.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -259,14 +259,14 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setAllUsers', response.data)
|
commit('setAllUsers', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
}
|
}
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.data === 401) {
|
if (e.response.data === 401) {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
location.reload()
|
location.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -285,14 +285,14 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('setUsers', { [response.data.username]: response.data })
|
commit('setUsers', { [response.data.username]: response.data })
|
||||||
commit('updateMessage', { date: data.date, storno: true })
|
commit('updateMessage', { date: data.date, storno: true })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
}
|
}
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) {
|
if (e.response.status === 401) {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
location.reload()
|
location.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -311,7 +311,7 @@ const actions = {
|
||||||
}
|
}
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) {
|
if (e.response.status === 401) {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
location.reload()
|
location.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -330,7 +330,7 @@ const actions = {
|
||||||
}
|
}
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) {
|
if (e.response.status === 401) {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
location.reload()
|
location.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -356,7 +356,7 @@ const actions = {
|
||||||
}
|
}
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) {
|
if (e.response.status === 401) {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
location.reload()
|
location.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -257,7 +257,7 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setAllUsers', response.data)
|
commit('setAllUsers', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.message == 'Network Error') {
|
if (err.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -276,7 +276,7 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setUsers', response.data)
|
commit('setUsers', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.message == 'Network Error') {
|
if (err.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -310,7 +310,7 @@ const actions = {
|
||||||
locked: response.data.locked,
|
locked: response.data.locked,
|
||||||
username: data.user.username
|
username: data.user.username
|
||||||
})
|
})
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.message == 'Network Error') {
|
if (err.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -341,7 +341,7 @@ const actions = {
|
||||||
locked: response.data.locked,
|
locked: response.data.locked,
|
||||||
username: data.user.username
|
username: data.user.username
|
||||||
})
|
})
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.message == 'Network Error') {
|
if (err.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -361,7 +361,7 @@ const actions = {
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
commit('updateUsers', response.data)
|
commit('updateUsers', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -384,7 +384,7 @@ const actions = {
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
commit('updateUsers', response.data)
|
commit('updateUsers', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -403,7 +403,7 @@ const actions = {
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
commit('setUsers', response.data)
|
commit('setUsers', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -421,7 +421,7 @@ const actions = {
|
||||||
timeout: 60000
|
timeout: 60000
|
||||||
})
|
})
|
||||||
commit('setMails', response.data)
|
commit('setMails', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -440,7 +440,7 @@ const actions = {
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
commit('setMail', response.data)
|
commit('setMail', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
|
@ -265,7 +265,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
commit('setJobInvitesLoading', false)
|
commit('setJobInvitesLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -283,7 +283,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
commit('setJobInvitesFromMe', response.data)
|
commit('setJobInvitesFromMe', response.data)
|
||||||
commit('setJobInvitesLoading', false)
|
commit('setJobInvitesLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -312,7 +312,7 @@ const actions = {
|
||||||
from_me: false
|
from_me: false
|
||||||
})
|
})
|
||||||
commit('setDayLoading', { date, getters, value: false })
|
commit('setDayLoading', { date, getters, value: false })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
commit('setJobInvitesLoading', false)
|
commit('setJobInvitesLoading', false)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
|
@ -342,7 +342,7 @@ const actions = {
|
||||||
getters
|
getters
|
||||||
})
|
})
|
||||||
commit('setDayLoading', { date, getters, value: false })
|
commit('setDayLoading', { date, getters, value: false })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
commit('setJobInvitesLoading', false)
|
commit('setJobInvitesLoading', false)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
|
@ -360,7 +360,7 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('updateJobInviteToMe', response.data)
|
commit('updateJobInviteToMe', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
commit('setJobInvitesLoading', false)
|
commit('setJobInvitesLoading', false)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
|
|
|
@ -265,7 +265,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
commit('setJobRequestsLoading', false)
|
commit('setJobRequestsLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -283,7 +283,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
commit('setJobRequestsFromMe', response.data)
|
commit('setJobRequestsFromMe', response.data)
|
||||||
commit('setJobRequestsLoading', false)
|
commit('setJobRequestsLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -311,7 +311,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateJobRequestToMe', response.data)
|
commit('updateJobRequestToMe', response.data)
|
||||||
commit('setJobRequestsLoading', false)
|
commit('setJobRequestsLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
|
@ -46,7 +46,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
commit('setJobkinds', response.data)
|
commit('setJobkinds', response.data)
|
||||||
commit('setJobkindsLoading', false)
|
commit('setJobkindsLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -65,7 +65,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateJobKind', response.data)
|
commit('updateJobKind', response.data)
|
||||||
commit('setJobkindsLoading', false)
|
commit('setJobkindsLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -84,7 +84,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateJobKind', response.data)
|
commit('updateJobKind', response.data)
|
||||||
commit('setJobkindsLoading', false)
|
commit('setJobkindsLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -103,7 +103,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('deleteJobKind', data)
|
commit('deleteJobKind', data)
|
||||||
commit('setJobkindsLoading', false)
|
commit('setJobkindsLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
|
@ -306,7 +306,7 @@ const actions = {
|
||||||
users: response.data,
|
users: response.data,
|
||||||
username: rootState.login.user.username
|
username: rootState.login.user.username
|
||||||
})
|
})
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -383,7 +383,7 @@ const actions = {
|
||||||
getters
|
getters
|
||||||
})
|
})
|
||||||
commit('setDayNotLoading', { date, getters })
|
commit('setDayNotLoading', { date, getters })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -412,7 +412,7 @@ const actions = {
|
||||||
getters
|
getters
|
||||||
})
|
})
|
||||||
commit('setDayNotLoading', { date, getters })
|
commit('setDayNotLoading', { date, getters })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -429,7 +429,7 @@ const actions = {
|
||||||
{ ...data },
|
{ ...data },
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
|
@ -34,7 +34,7 @@ const mutations = {
|
||||||
} else {
|
} else {
|
||||||
state.user.username = data.username
|
state.user.username = data.username
|
||||||
state.user.accessToken = data.accessToken
|
state.user.accessToken = data.accessToken
|
||||||
state.user.group = data.group
|
state.user.group = data.groups
|
||||||
state.user.firstname = data.firstname
|
state.user.firstname = data.firstname
|
||||||
state.user.lastname = data.lastname
|
state.user.lastname = data.lastname
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,7 @@ const mutations = {
|
||||||
setCookieAccepted(state, value) {
|
setCookieAccepted(state, value) {
|
||||||
state.cookieAccepted = value
|
state.cookieAccepted = value
|
||||||
},
|
},
|
||||||
setLifeTime(state, value) {
|
setLifetime(state, value) {
|
||||||
state.lifeTime = value
|
state.lifeTime = value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -73,8 +73,8 @@ const actions = {
|
||||||
'user',
|
'user',
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
username: response.data.username,
|
username: response.data.username,
|
||||||
accessToken: response.data.token,
|
accessToken: response.data.accessToken,
|
||||||
group: response.data.group,
|
group: response.data.groups,
|
||||||
firstname: response.data.firstname,
|
firstname: response.data.firstname,
|
||||||
lastname: response.data.lastname
|
lastname: response.data.lastname
|
||||||
})
|
})
|
||||||
|
@ -132,17 +132,17 @@ const actions = {
|
||||||
var cookie = localStorage.getItem('cookie:accepted')
|
var cookie = localStorage.getItem('cookie:accepted')
|
||||||
commit('setCookieAccepted', cookie)
|
commit('setCookieAccepted', cookie)
|
||||||
},
|
},
|
||||||
setLifeTime({ commit }, value) {
|
setLifetime({ commit }, value) {
|
||||||
commit('setLifeTime', value)
|
commit('setLifetime', value)
|
||||||
},
|
},
|
||||||
async saveLifeTime({ commit, rootState, dispatch }, value) {
|
async saveLifetime({ commit, rootState, dispatch }, value) {
|
||||||
try {
|
try {
|
||||||
const response = await axios.post(
|
const response = await axios.post(
|
||||||
url.saveLifeTime,
|
url.saveLifetime,
|
||||||
{ value: value },
|
{ value: value },
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
commit('setLifeTime', response.data.value)
|
commit('setLifetime', response.data.value)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -151,18 +151,18 @@ const actions = {
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async getLifeTime({ commit, rootState, dispatch }) {
|
async getLifetime({ commit, rootState, dispatch }) {
|
||||||
try {
|
try {
|
||||||
if (!rootState.login.user.accessToken) {
|
if (!rootState.login.user.accessToken) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const response = await axios.get(url.getLifeTime, {
|
const response = await axios.get(url.getLifetime, {
|
||||||
headers: { Token: rootState.login.user.accessToken },
|
headers: { Token: rootState.login.user.accessToken },
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setLifeTime', response.data.value)
|
commit('setLifetime', response.data.value)
|
||||||
var user = JSON.parse(localStorage.getItem('user'))
|
var user = JSON.parse(localStorage.getItem('user'))
|
||||||
user.group = response.data.group
|
user.group = response.data.groups
|
||||||
localStorage.setItem('user', JSON.stringify(user))
|
localStorage.setItem('user', JSON.stringify(user))
|
||||||
commit('updateAccessToken', user)
|
commit('updateAccessToken', user)
|
||||||
dispatch('barUsers/setLockStatus', response.data.lock_bar, {
|
dispatch('barUsers/setLockStatus', response.data.lock_bar, {
|
||||||
|
|
|
@ -101,7 +101,7 @@ const actions = {
|
||||||
const response = await axios.get(url.pricelist, { timeout })
|
const response = await axios.get(url.pricelist, { timeout })
|
||||||
commit('setPriceList', response.data)
|
commit('setPriceList', response.data)
|
||||||
commit('setPriceListLoading', false)
|
commit('setPriceListLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -115,7 +115,7 @@ const actions = {
|
||||||
const response = await axios.get(url.getTypes, { timeout })
|
const response = await axios.get(url.getTypes, { timeout })
|
||||||
commit('setTypes', response.data)
|
commit('setTypes', response.data)
|
||||||
commit('setTypesLoading', false)
|
commit('setTypesLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -133,7 +133,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updatePriceList', response.data)
|
commit('updatePriceList', response.data)
|
||||||
commit('setPriceListLoading', false)
|
commit('setPriceListLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -153,7 +153,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updatePriceList', response.data)
|
commit('updatePriceList', response.data)
|
||||||
commit('setPriceListLoading', false)
|
commit('setPriceListLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -173,7 +173,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('deleteDrinkPrice', data)
|
commit('deleteDrinkPrice', data)
|
||||||
commit('setPriceListLoading', false)
|
commit('setPriceListLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -193,7 +193,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateDrinkType', response.data)
|
commit('updateDrinkType', response.data)
|
||||||
commit('setTypesLoading', false)
|
commit('setTypesLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -213,7 +213,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateDrinkType', response.data)
|
commit('updateDrinkType', response.data)
|
||||||
commit('setTypesLoading', false)
|
commit('setTypesLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -233,7 +233,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('deleteDrinkType', data)
|
commit('deleteDrinkType', data)
|
||||||
commit('setTypesLoading', false)
|
commit('setTypesLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
|
@ -274,7 +274,7 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setAllUsers', response.data)
|
commit('setAllUsers', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -296,7 +296,7 @@ const actions = {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
//commit('updateMonth', { ...response.data[0], com: 'add' })
|
//commit('updateMonth', { ...response.data[0], com: 'add' })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -355,7 +355,7 @@ const actions = {
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
//commit('updateMonth', { ...data, com: 'delete' })
|
//commit('updateMonth', { ...data, com: 'delete' })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -382,7 +382,7 @@ const actions = {
|
||||||
date,
|
date,
|
||||||
getters
|
getters
|
||||||
})
|
})
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -404,7 +404,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateMonthJobkind', { data: response.data, date, getters })
|
commit('updateMonthJobkind', { data: response.data, date, getters })
|
||||||
commit('setDayNotLoading', { date, getters })
|
commit('setDayNotLoading', { date, getters })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
|
@ -223,7 +223,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
commit('setUser', response.data)
|
commit('setUser', response.data)
|
||||||
commit('setError', '')
|
commit('setError', '')
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -248,7 +248,7 @@ const actions = {
|
||||||
error: false
|
error: false
|
||||||
})
|
})
|
||||||
commit('setError', '')
|
commit('setError', '')
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -274,7 +274,7 @@ const actions = {
|
||||||
console.log(response.data)
|
console.log(response.data)
|
||||||
commit('setUser', response.data)
|
commit('setUser', response.data)
|
||||||
commit('setError', { value: 'Daten gespeichert', error: false })
|
commit('setError', { value: 'Daten gespeichert', error: false })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -300,7 +300,7 @@ const actions = {
|
||||||
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
{ headers: { Token: rootState.login.user.accessToken }, timeout }
|
||||||
)
|
)
|
||||||
commit('updateDay', { ...response.data, date: data.date })
|
commit('updateDay', { ...response.data, date: data.date })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -326,7 +326,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('setUser', response.data)
|
commit('setUser', response.data)
|
||||||
commit('updateMessage', { date: data.date, storno: true })
|
commit('updateMessage', { date: data.date, storno: true })
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -343,7 +343,7 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setStatus', response.data)
|
commit('setStatus', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -359,7 +359,7 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setTokens', response.data)
|
commit('setTokens', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -375,7 +375,7 @@ const actions = {
|
||||||
timeout
|
timeout
|
||||||
})
|
})
|
||||||
commit('setTokens', response.data)
|
commit('setTokens', response.data)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
|
@ -82,7 +82,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
commit('setUsers', response.data)
|
commit('setUsers', response.data)
|
||||||
commit('setUsersLoading', false)
|
commit('setUsersLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -101,7 +101,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
commit('setUsers', response.data)
|
commit('setUsers', response.data)
|
||||||
commit('setUsersLoading', false)
|
commit('setUsersLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -120,7 +120,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
commit('setStatus', response.data)
|
commit('setStatus', response.data)
|
||||||
commit('setStatusLoading', false)
|
commit('setStatusLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -140,7 +140,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateUser', response.data)
|
commit('updateUser', response.data)
|
||||||
commit('setUsersLoading', false)
|
commit('setUsersLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -160,7 +160,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateUser', response.data)
|
commit('updateUser', response.data)
|
||||||
commit('setUsersLoading', false)
|
commit('setUsersLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -180,7 +180,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateWorkgroups', { id: data.id, workgroups: response.data })
|
commit('updateWorkgroups', { id: data.id, workgroups: response.data })
|
||||||
commit('setUsersLoading', false)
|
commit('setUsersLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
|
@ -46,7 +46,7 @@ const actions = {
|
||||||
})
|
})
|
||||||
commit('setWorkgroups', response.data)
|
commit('setWorkgroups', response.data)
|
||||||
commit('setWorkgroupLoading', false)
|
commit('setWorkgroupLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -66,7 +66,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateWorkgroup', response.data)
|
commit('updateWorkgroup', response.data)
|
||||||
commit('setWorkgroupLoading', false)
|
commit('setWorkgroupLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -85,7 +85,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('updateWorkgroup', repsonse.data)
|
commit('updateWorkgroup', repsonse.data)
|
||||||
commit('setWorkgroupLoading', false)
|
commit('setWorkgroupLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
@ -104,7 +104,7 @@ const actions = {
|
||||||
)
|
)
|
||||||
commit('deleteWorkgroup', data)
|
commit('deleteWorkgroup', data)
|
||||||
commit('setWorkgroupLoading', false)
|
commit('setWorkgroupLoading', false)
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifetime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message == 'Network Error') {
|
if (e.message == 'Network Error') {
|
||||||
dispatch('connectionError/addError', null, { root: true })
|
dispatch('connectionError/addError', null, { root: true })
|
||||||
|
|
Loading…
Reference in New Issue