feat: handle size quota
This commit is contained in:
parent
1534a69f80
commit
2a4036614d
6 changed files with 68 additions and 24 deletions
|
@ -0,0 +1 @@
|
||||||
|
VUE_APP_BASE_URL=https://associations.espacecondorcet.org
|
|
@ -6,7 +6,7 @@
|
||||||
:vertical="$vuetify.breakpoint.mobile"
|
:vertical="$vuetify.breakpoint.mobile"
|
||||||
:multi-line="$vuetify.breakpoint.mobile"
|
:multi-line="$vuetify.breakpoint.mobile"
|
||||||
v-model="$store.state.alert.enabled"
|
v-model="$store.state.alert.enabled"
|
||||||
:timeout="2500"
|
:timeout="3500"
|
||||||
>
|
>
|
||||||
{{ $store.state.alert.text }}
|
{{ $store.state.alert.text }}
|
||||||
|
|
||||||
|
|
|
@ -307,6 +307,11 @@ export default {
|
||||||
inUrl = true
|
inUrl = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// get the size
|
||||||
|
// this.$apitator.get('/delegate/size', { withAuth: true }).then(res => {
|
||||||
|
// console.log(res.data.data)
|
||||||
|
// })
|
||||||
|
|
||||||
this.$apitator.setAuthorizationToken(delegateToken)
|
this.$apitator.setAuthorizationToken(delegateToken)
|
||||||
// verify the token
|
// verify the token
|
||||||
this.$apitator.get('/delegate', { withAuth: true }).then(res => {
|
this.$apitator.get('/delegate', { withAuth: true }).then(res => {
|
||||||
|
@ -388,12 +393,23 @@ export default {
|
||||||
}
|
}
|
||||||
resolve()
|
resolve()
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
console.log(err.data)
|
console.log(err.response)
|
||||||
|
if (err.response != null) {
|
||||||
|
console.log(err.response.data)
|
||||||
|
console.log(err.response.code)
|
||||||
|
}
|
||||||
this.isSaving = false
|
this.isSaving = false
|
||||||
|
if (err.response != null && err.response.status === 413) {
|
||||||
|
this.$store.commit('ADD_ALERT', {
|
||||||
|
color: 'error',
|
||||||
|
text: 'Le contenu renseigné est trop grand, vous devez le réduire'
|
||||||
|
})
|
||||||
|
} else {
|
||||||
this.$store.commit('ADD_ALERT', {
|
this.$store.commit('ADD_ALERT', {
|
||||||
color: 'error',
|
color: 'error',
|
||||||
text: 'Impossible de sauvegarder vos changements'
|
text: 'Impossible de sauvegarder vos changements'
|
||||||
})
|
})
|
||||||
|
}
|
||||||
reject(err)
|
reject(err)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -118,7 +118,7 @@
|
||||||
</v-chip>
|
</v-chip>
|
||||||
</template>
|
</template>
|
||||||
<template v-slot:item.actions="{ item }">
|
<template v-slot:item.actions="{ item }">
|
||||||
<v-tooltip top v-if="item.validationState === 'published' || item.validationState === 'rejected'">
|
<v-tooltip top v-if="item.publishedAt != null">
|
||||||
<template v-slot:activator="{ on, attrs }">
|
<template v-slot:activator="{ on, attrs }">
|
||||||
<v-btn icon small color="success">
|
<v-btn icon small color="success">
|
||||||
<v-icon
|
<v-icon
|
||||||
|
|
|
@ -241,12 +241,20 @@ export default {
|
||||||
color: 'success',
|
color: 'success',
|
||||||
text: 'Couverture mise à jour !'
|
text: 'Couverture mise à jour !'
|
||||||
})
|
})
|
||||||
}).catch(() => {
|
}).catch(err => {
|
||||||
|
console.log(err)
|
||||||
|
this.coverLoading = false
|
||||||
|
if (err.response != null && err.response.status === 413) {
|
||||||
|
this.$store.commit('ADD_ALERT', {
|
||||||
|
color: 'error',
|
||||||
|
text: 'Vous avez atteint votre quota concernant la taille des fichiers téléversés'
|
||||||
|
})
|
||||||
|
} else {
|
||||||
this.$store.commit('ADD_ALERT', {
|
this.$store.commit('ADD_ALERT', {
|
||||||
color: 'error',
|
color: 'error',
|
||||||
text: 'Impossible de mettre à jour la couverture'
|
text: 'Impossible de mettre à jour la couverture'
|
||||||
})
|
})
|
||||||
this.coverLoading = false
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
loadFile (file) {
|
loadFile (file) {
|
||||||
|
@ -288,14 +296,25 @@ export default {
|
||||||
this.uploadLoading = false
|
this.uploadLoading = false
|
||||||
this.addMediaModal = false
|
this.addMediaModal = false
|
||||||
this.files = []
|
this.files = []
|
||||||
}).catch(() => {
|
}).catch(err => {
|
||||||
this.coverLoading = false
|
console.log(err)
|
||||||
|
|
||||||
|
this.uploadLoading = false
|
||||||
|
if (err.response != null && err.response.status === 413) {
|
||||||
|
this.$store.commit('ADD_ALERT', {
|
||||||
|
color: 'error',
|
||||||
|
text: 'Vous avez atteint votre quota concernant la taille des fichiers téléversés'
|
||||||
|
})
|
||||||
|
} else {
|
||||||
this.$store.commit('ADD_ALERT', {
|
this.$store.commit('ADD_ALERT', {
|
||||||
color: 'error',
|
color: 'error',
|
||||||
text: 'Impossible de téleverser ces fichiers'
|
text: 'Impossible de téleverser ces fichiers'
|
||||||
})
|
})
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}).catch(() => {
|
}).catch(err => {
|
||||||
|
console.log(err)
|
||||||
|
this.coverLoading = false
|
||||||
this.$store.commit('ADD_ALERT', {
|
this.$store.commit('ADD_ALERT', {
|
||||||
color: 'error',
|
color: 'error',
|
||||||
text: 'Erreur de chargement des fichiers'
|
text: 'Erreur de chargement des fichiers'
|
||||||
|
|
|
@ -149,12 +149,20 @@ export default {
|
||||||
color: 'success',
|
color: 'success',
|
||||||
text: 'Logo mis à jour !'
|
text: 'Logo mis à jour !'
|
||||||
})
|
})
|
||||||
}).catch(() => {
|
}).catch(err => {
|
||||||
|
console.log(err)
|
||||||
this.logoLoading = false
|
this.logoLoading = false
|
||||||
|
if (err.response != null && err.response.status === 413) {
|
||||||
|
this.$store.commit('ADD_ALERT', {
|
||||||
|
color: 'error',
|
||||||
|
text: 'Vous avez atteint votre quota concernant la taille des fichiers téléversés'
|
||||||
|
})
|
||||||
|
} else {
|
||||||
this.$store.commit('ADD_ALERT', {
|
this.$store.commit('ADD_ALERT', {
|
||||||
color: 'error',
|
color: 'error',
|
||||||
text: 'Impossible de mettre à jour le logo'
|
text: 'Impossible de mettre à jour le logo'
|
||||||
})
|
})
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue