Precent unecessary client app builder store updates to improve performance

This commit is contained in:
Andrew Kingston 2021-11-16 13:35:20 +00:00
parent e5f49c87f6
commit 3acdf56679
1 changed files with 6 additions and 0 deletions

View File

@ -80,9 +80,15 @@ const createBuilderStore = () => {
})
},
setDragging: dragging => {
if (dragging === get(writableStore).isDragging) {
return
}
writableStore.update(state => ({ ...state, isDragging: dragging }))
},
setEditMode: enabled => {
if (enabled === get(writableStore).editMode) {
return
}
writableStore.update(state => ({ ...state, editMode: enabled }))
},
}