fix(redux): avoid state mutation in history redux

When updating the data of a note in the redux, the old state element gets manipulated and will be dispatched again into the state.
Redux is not optimized for external state-mutations and has some weird side-effects in that case and sometimes throws an error.
This commit fixes the problem by using a clone of the entry.

Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
Erik Michelson 2023-01-09 01:48:59 +01:00 committed by Philip Molares
parent 84ee805c56
commit f16b3c0fe6

View file

@ -43,10 +43,11 @@ export const useUpdateLocalHistoryEntry = (): void => {
if (entry.origin === HistoryEntryOrigin.REMOTE) {
return
}
entry.title = currentNoteTitle
entry.tags = currentNoteTags
entry.lastVisitedAt = new Date().toISOString()
updateLocalHistoryEntry(id, entry)
const updatedEntry = { ...entry }
updatedEntry.title = currentNoteTitle
updatedEntry.tags = currentNoteTags
updatedEntry.lastVisitedAt = new Date().toISOString()
updateLocalHistoryEntry(id, updatedEntry)
lastNoteTitle.current = currentNoteTitle
lastNoteTags.current = currentNoteTags
}, [id, userExists, currentNoteTitle, currentNoteTags])