Make reload work

Former-commit-id: c821c066681092fa80300eefecd82394283112cd [formerly 31ee8568a88a7a3f53733c942ddc5d2a120662b6] [formerly fb943bcb74f7b85d390bf0610e6e5735ef1b6b74 [formerly 9e42f0f1ed8b717009dc26524cb7f2aa885ac448]]
Former-commit-id: 142eda7f066e312d38f31b01c090a32005a94248 [formerly 2cee72b9263f86c146a43e6dfd32f6e6642f9f11]
Former-commit-id: a8a4617e1ebbf3089880ab670a4f62402c44b637
This commit is contained in:
Henrique Dias
2017-07-03 15:57:07 +01:00
parent d3790cd449
commit 1fa6cd8e40
8 changed files with 14 additions and 9 deletions

View File

@@ -142,7 +142,7 @@ export default {
Promise.all(promises)
.then(() => {
// page.reload()
this.$store.commit('setReload', true)
// buttons.setDone('upload')
})
.catch(e => {

View File

@@ -91,7 +91,7 @@ export default {
Promise.all(promises)
.then(() => {
// page.reload()
this.$store.commit('setReload', true)
})
.catch(error => console.log(error))
},

View File

@@ -136,6 +136,7 @@ export default {
...mapState([
'req',
'user',
'reload',
'baseURL',
'multiple',
'showInfo',
@@ -167,7 +168,11 @@ export default {
this.fetchData()
},
watch: {
'$route': 'fetchData'
'$route': 'fetchData',
'reload': function () {
this.$store.commit('setReload', false)
this.fetchData()
}
},
mounted () {
updateColumnSizes()

View File

@@ -110,7 +110,7 @@ export default {
conn.onclose = (event) => {
this.ongoing = false
this.scrollable.scrollTop = this.scrollable.scrollHeight
// page.reload()
this.$store.commit('setReload', true)
}
return

View File

@@ -54,12 +54,12 @@ export default {
Promise.all(promises)
.then(() => {
// page.reload()
this.$store.commit('setReload', true)
// buttons.setDone('delete')
})
.catch(error => {
console.log(error)
// page.reload()
this.$store.commit('setReload', true)
// buttons.setDone('delete', false)
})
}

View File

@@ -61,10 +61,8 @@ export default {
return
}
// TODO: keep selected after reload?
// page.reload()
// buttons.setDone('rename')
console.log('reload')
this.$router.go({ path: this.$route.path })
this.$store.commit('setReload', true)
}).catch(error => {
// buttons.setDone('rename', false)
console.log(error)