1
0

Fix loading state for kanban board

This commit is contained in:
kolaente
2020-05-09 22:08:18 +02:00
parent 15edfe0a49
commit bd351550ee
3 changed files with 41 additions and 7 deletions

11
src/store/helper.js Normal file
View File

@ -0,0 +1,11 @@
import {LOADING} from './mutation-types'
export const setLoading = context => {
const timeout = setTimeout(() => {
context.commit(LOADING, true, {root: true})
}, 100)
return () => {
clearTimeout(timeout)
context.commit(LOADING, false, {root: true})
}
}

View File

@ -2,6 +2,7 @@ import Vue from 'vue'
import BucketService from '../../services/bucket'
import {filterObject} from '../../helpers/filterObject'
import {setLoading} from '../helper'
/**
* This store is intended to hold the currently active kanban view.
@ -89,6 +90,11 @@ export default {
},
actions: {
loadBucketsForList(ctx, listId) {
const cancel = setLoading(ctx)
// Clear everything to prevent having old buckets in the list if loading the buckets from this list takes a few moments
ctx.commit('setBuckets', [])
const bucketService = new BucketService()
return bucketService.getAll({listId: listId})
.then(r => {
@ -98,8 +104,13 @@ export default {
.catch(e => {
return Promise.reject(e)
})
.finally(() => {
cancel()
})
},
createBucket(ctx, bucket) {
const cancel = setLoading(ctx)
const bucketService = new BucketService()
return bucketService.create(bucket)
.then(r => {
@ -109,8 +120,13 @@ export default {
.catch(e => {
return Promise.reject(e)
})
.finally(() => {
cancel()
})
},
deleteBucket(ctx, bucket) {
const cancel = setLoading(ctx)
const bucketService = new BucketService()
return bucketService.delete(bucket)
.then(r => {
@ -122,8 +138,13 @@ export default {
.catch(e => {
return Promise.reject(e)
})
.finally(() => {
cancel()
})
},
updateBucket(ctx, bucket) {
const cancel = setLoading(ctx)
const bucketService = new BucketService()
return bucketService.update(bucket)
.then(r => {
@ -136,6 +157,9 @@ export default {
.catch(e => {
return Promise.reject(e)
})
.finally(() => {
cancel()
})
},
},
}