Skip to content
Snippets Groups Projects
Commit ceeabd55 authored by nicrausaz's avatar nicrausaz
Browse files

Fix ajout position, gestion des erreurs

parent d8208830
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
<template>
<div id="alert-snackbar">
<v-snackbar v-model="$store.state.moduleSnackbar.open" :top="true">
<v-snackbar v-model="$store.state.moduleSnackbar.open" :top="true" :timeout="3000" :color="$store.state.moduleSnackbar.type" auto-height>
{{$store.state.moduleSnackbar.message}}
<v-btn
flat
color="accent"
@click="$store.dispatch('moduleSnackbar/toggle', {open: false, message: '', type: ''})"
>Close</v-btn>
</v-snackbar>
</div>
</template>
......@@ -15,7 +10,4 @@
export default {
name: 'alert-snackbar'
}
</script>
<style>
</style>
</script>
\ No newline at end of file
import axios from 'axios'
import store from '@/store/store.js'
const instance = axios.create({
headers: { 'Authorization': "Bearer " + localStorage.getItem('stored_token') },
baseURL: 'http://localhost:8000/api'
})
instance.interceptors.response.use(function (response) {
return response;
}, function (error) {
// Affichage des erreurs (snackbar)
Object.values(error.response.data).forEach(errMsg => {
store.commit('moduleSnackbar/toggle', { open: true, message: errMsg[0], type: 'error' }, { root: true })
})
return Promise.reject(error)
})
export default instance
\ No newline at end of file
......@@ -8,9 +8,6 @@ export function getApplications(context) {
.then(response => {
context.commit('setApplications', response.data)
})
.catch(err => {
console.log(err)
})
}
export function getAvailableStatus(context) {
......@@ -21,9 +18,6 @@ export function getAvailableStatus(context) {
.then(response => {
context.commit('setAvailableStatus', response.data)
})
.catch(err => {
console.log(err)
})
}
export function changeApplicationStatus(context, data) {
......@@ -33,10 +27,7 @@ export function changeApplicationStatus(context, data) {
data: data
})
.then(response => {
console.log(response.data)
})
.catch(err => {
console.log(err)
context.commit('moduleSnackbar/toggle', { open: true, message: response.data.message, type: 'success' }, { root: true })
})
}
......@@ -47,9 +38,6 @@ export function deleteApplication(context, data) {
data: data
})
.then(response => {
console.log(response.data)
})
.catch(err => {
console.log(err)
context.commit('moduleSnackbar/toggle', { open: true, message: response.data.message, type: 'success' }, { root: true })
})
}
\ No newline at end of file
......@@ -37,16 +37,7 @@ export function createPosition(context, data) {
data: data
})
.then(response => {
console.log(response)
// Notif this
})
.catch(err => {
console.log(err)
// Notif this
// Object.keys(err.reponse).forEach(element => {
// console.log(element)
// });
context.commit('moduleSnackbar/toggle', {open: true, message: 'yolo'}, { root: true })
context.commit('moduleSnackbar/toggle', { open: true, message: response.data.message, type: 'success' }, { root: true })
})
}
......@@ -57,28 +48,18 @@ export function updatePosition(context, data) {
data: data
})
.then(response => {
console.log(response)
// Notif this
})
.catch(err => {
console.log(err)
// Notif this
context.commit('moduleSnackbar/toggle', { open: true, message: response.data.message, type: 'success' }, { root: true })
})
}
export function deletePosition (context, data) {
export function deletePosition(context, data) {
axios({
method: 'delete',
url: '/position/' + data.position_id,
data: data
})
.then(response => {
console.log(response)
// Notif this
})
.catch(err => {
console.log(err)
// Notif this
context.commit('moduleSnackbar/toggle', { open: true, message: response.data.message, type: 'success' }, { root: true })
})
}
......
export function toggle (state, data) {
state.open = data.open
state.message = data.message
state.type = data.type
}
\ No newline at end of file
export default {
open: false,
message: String
message: String,
type: ''
}
\ No newline at end of file
......@@ -45,7 +45,4 @@ export function getUserPermittedJobs(context) {
.then(response => {
context.commit('setPermittedJobs', response.data)
})
.catch(err => {
console.log(err)
})
}
\ No newline at end of file
......@@ -114,14 +114,14 @@ export default {
],
editedIndex: -1,
editedItem: {
job_id: -1,
location_id: -1,
job_id: null,
location_id: null,
position_access_group: '',
position_spot_number: 0
},
defaultItem: {
job_id: -1,
location_id: -1,
job_id: null,
location_id: null,
position_access_group: '',
position_spot_number: 0
},
......@@ -176,7 +176,7 @@ export default {
}, 300)
},
save() {
if (this.editedIndex > -1) {
if (this.editedIndex != -1) {
// Edit
this.$store.dispatch('modulePositions/updatePosition', this.editedItem)
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment