Видимо, возвращение null
предотвращает накопление инъекций.
Полный код для предотвращения перезаписи обратного вызова update
изменений, внесенных в запись во время save()
:
function beforeUpdate(id, props, opts) {
const currentStoreItem = this.datastore.get(opts.name, id)
opts.tlChangesBeforeUpdate = JSON.stringify(currentStoreItem.changes())
return this.constructor.prototype.beforeUpdate.call(this, id, props, opts)
}
function afterUpdate(id, props, opts, result) {
const currentStoreItem = this.datastore.get(opts.name, id)
const currentChanges = JSON.stringify(currentStoreItem && currentStoreItem.changes())
if (currentChanges != opts.tlChangesBeforeUpdate) return null // This prevents store injecton
return this.constructor.prototype.afterUpdate.call(this, id, props, opts, result)
}
const ds = new DataStore({
mapperDefaults: {
beforeUpdate: beforeUpdate,
afterUpdate: afterUpdate,
},
})