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"
|
||||
:multi-line="$vuetify.breakpoint.mobile"
|
||||
v-model="$store.state.alert.enabled"
|
||||
:timeout="2500"
|
||||
:timeout="3500"
|
||||
>
|
||||
{{ $store.state.alert.text }}
|
||||
|
||||
|
|
|
@ -307,6 +307,11 @@ export default {
|
|||
inUrl = true
|
||||
}
|
||||
|
||||
// get the size
|
||||
// this.$apitator.get('/delegate/size', { withAuth: true }).then(res => {
|
||||
// console.log(res.data.data)
|
||||
// })
|
||||
|
||||
this.$apitator.setAuthorizationToken(delegateToken)
|
||||
// verify the token
|
||||
this.$apitator.get('/delegate', { withAuth: true }).then(res => {
|
||||
|
@ -388,12 +393,23 @@ export default {
|
|||
}
|
||||
resolve()
|
||||
}).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.$store.commit('ADD_ALERT', {
|
||||
color: 'error',
|
||||
text: 'Impossible de sauvegarder vos changements'
|
||||
})
|
||||
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', {
|
||||
color: 'error',
|
||||
text: 'Impossible de sauvegarder vos changements'
|
||||
})
|
||||
}
|
||||
reject(err)
|
||||
})
|
||||
})
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
</v-chip>
|
||||
</template>
|
||||
<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 }">
|
||||
<v-btn icon small color="success">
|
||||
<v-icon
|
||||
|
|
|
@ -241,12 +241,20 @@ export default {
|
|||
color: 'success',
|
||||
text: 'Couverture mise à jour !'
|
||||
})
|
||||
}).catch(() => {
|
||||
this.$store.commit('ADD_ALERT', {
|
||||
color: 'error',
|
||||
text: 'Impossible de mettre à jour la couverture'
|
||||
})
|
||||
}).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', {
|
||||
color: 'error',
|
||||
text: 'Impossible de mettre à jour la couverture'
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
loadFile (file) {
|
||||
|
@ -288,14 +296,25 @@ export default {
|
|||
this.uploadLoading = false
|
||||
this.addMediaModal = false
|
||||
this.files = []
|
||||
}).catch(() => {
|
||||
this.coverLoading = false
|
||||
this.$store.commit('ADD_ALERT', {
|
||||
color: 'error',
|
||||
text: 'Impossible de téleverser ces fichiers'
|
||||
})
|
||||
}).catch(err => {
|
||||
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', {
|
||||
color: 'error',
|
||||
text: 'Impossible de téleverser ces fichiers'
|
||||
})
|
||||
}
|
||||
})
|
||||
}).catch(() => {
|
||||
}).catch(err => {
|
||||
console.log(err)
|
||||
this.coverLoading = false
|
||||
this.$store.commit('ADD_ALERT', {
|
||||
color: 'error',
|
||||
text: 'Erreur de chargement des fichiers'
|
||||
|
|
|
@ -149,12 +149,20 @@ export default {
|
|||
color: 'success',
|
||||
text: 'Logo mis à jour !'
|
||||
})
|
||||
}).catch(() => {
|
||||
}).catch(err => {
|
||||
console.log(err)
|
||||
this.logoLoading = false
|
||||
this.$store.commit('ADD_ALERT', {
|
||||
color: 'error',
|
||||
text: 'Impossible de mettre à jour le logo'
|
||||
})
|
||||
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', {
|
||||
color: 'error',
|
||||
text: 'Impossible de mettre à jour le logo'
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue