如何撤消对数据库的未同步更改?
我希望让用户在执行数据库操作后删除数据库操作(即删除)至少几秒钟。
一种可能性是继续从数据库中删除,直到撤消它的时间过去,但我认为在代码中反映我将在UI中看到的内容会更加简化,只是为了保存1:1
。所以,我尝试在删除之前存储对象,然后更新它(以便不再删除它的_status
):
this.lastDeletedDoc = this.docs[this.lastDeletedDocIndex];
// remove from the db
this.documents.delete(docId)
.then(console.log.bind(console))
.catch(console.error.bind(console));
// ...
// user taps "UNDO"
this.documents.update(this.lastDeletedDoc)
.then(console.log.bind(console))
.catch(console.error.bind(console));
但我收到错误Error: Record with id=65660f62-3eb1-47b7-8746-5d0b2ef44eeb not found
。
我还尝试使用以下方法再次创建对象:
// user taps "UNDO"
this.documents.create(this.lastDeletedDoc, { useRecordId: true })
.then(console.log.bind(console))
.catch(console.error.bind(console));
但我收到Id already present
错误。
我也快速浏览了源代码,但找不到任何undo
函数。
我如何通常撤消对未同步的kinto集合的更改?
答案 0 :(得分:1)
因此,您应该能够找回记录并将其_status
设置为旧的旧版本,就像您正在做的那样。
问题在于get
方法采用includeDeleted
选项,允许您检索已删除的记录,但the update
method doesn't pass it this option。
解决此问题的最佳方法可能是在Kinto.js存储库上打开pull请求,使update
方法接受includeDeleted
选项,它将传递给get
方法。
由于现在连接有限,我无法推动更改,但它看起来基本上就像这样(+一个测试,证明这种方式正常):
diff --git a/src/collection.js b/src/collection.js
index c0cce02..a0bf0e4 100644
--- a/src/collection.js
+++ b/src/collection.js
@@ -469,7 +469,7 @@ export default class Collection {
* @param {Object} options
* @return {Promise}
*/
- update(record, options={synced: false, patch: false}) {
+ update(record, options={synced: false, patch: false, includeDeleted:false}) {
if (typeof(record) !== "object") {
return Promise.reject(new Error("Record is not an object."));
}
@@ -479,7 +479,7 @@ export default class Collection {
if (!this.idSchema.validate(record.id)) {
return Promise.reject(new Error(`Invalid Id: ${record.id}`));
}
- return this.get(record.id)
+ return this.get(record.id, {includeDeleted: options.includeDeleted})
.then((res) => {
const existing = res.data;
const newStatus = options.synced ? "synced" : "updated";
不要犹豫提交带有这些更改的拉取请求,我相信应该可以解决您的问题!
答案 1 :(得分:1)
我不确定将'unsynced'与'user-can-undo'结合起来是一个很好的设计原则。如果您确定只想撤消删除,那么以这种方式将同步延迟的撤销功能捎带起来,但是如果将来您想要支持撤消更新呢?旧价值已经丢失。
我认为你应该在你的应用中做的是添加一个名为'undo-history'的集合,你可以在其中存储具有撤消用户操作所需的所有数据的对象。如果您同步此集合,则甚至可以删除手机上的内容,然后从笔记本电脑中撤消该内容! :)