Comments and bugfixes

Former-commit-id: 3683a8730ff5d068f3c1c79bb93c3636c00d48f6 [formerly fe04704b2248be7e313fa879746cacd335fed043] [formerly ebfa6675e34ee278af94af56aa8f43d4566d6f5f [formerly 5eab62e0aa566747edeebfa55a4e39d898ff8db5]]
Former-commit-id: 9ce059f75dc890570f9a992bf514c416ebf8e2f6 [formerly 02c89f89f211c95f8879cc4559efa3f4de7e8fca]
Former-commit-id: fb88da21590be01e95a963d453b6c3c880244281
This commit is contained in:
Henrique Dias
2017-07-08 11:30:22 +01:00
parent 946ce2df5a
commit e6efec5682
5 changed files with 35 additions and 24 deletions

View File

@@ -28,11 +28,13 @@ export default {
this.closeHovers()
buttons.loading('delete')
// If we are not on a listing, delete the current
// opened file.
if (this.req.kind !== 'listing') {
api.delete(this.$route.path)
.then(() => {
buttons.done('delete')
this.$router.push({path: url.removeLastDir(this.$route.path) + '/'})
this.$router.push({ path: url.removeLastDir(this.$route.path) + '/' })
})
.catch(error => {
buttons.done('delete')
@@ -47,6 +49,8 @@ export default {
return
}
// Create the promises array and fill it with
// the delete request for every selected file.
let promises = []
for (let index of this.selected) {
@@ -55,13 +59,12 @@ export default {
Promise.all(promises)
.then(() => {
this.$store.commit('setReload', true)
buttons.done('delete')
this.$store.commit('setReload', true)
})
.catch(error => {
console.log(error)
this.$store.commit('setReload', true)
buttons.done('delete')
this.$store.commit('setReload', true)
this.$store.commit('showError', error)
})
}