Убрал вычисление диффа

This commit is contained in:
Book Pauk
2019-09-20 20:35:12 +07:00
parent 7863b3358e
commit 9b6ecd4e6b

View File

@@ -73,7 +73,7 @@ class ServerStorage extends Vue {
async bookManagerEvent(eventName, itemKey) { async bookManagerEvent(eventName, itemKey) {
if (!this.serverSyncEnabled) if (!this.serverSyncEnabled)
return; return;
if (eventName == 'recent-changed') { if (eventName == 'recent-changed') {
if (itemKey) { if (itemKey) {
if (!this.recentDeltaInited) { if (!this.recentDeltaInited) {
@@ -458,7 +458,7 @@ class ServerStorage extends Vue {
this.prevItemKey = itemKey; this.prevItemKey = itemKey;
//дифф от дельты для уменьшения размера передаваемых данных в частном случае //дифф от дельты для уменьшения размера передаваемых данных в частном случае
if (this.makeDeltaDiff) { /*if (this.makeDeltaDiff) {
this.recentDelta.diff = utils.getObjDiff(this.prevSavedItem, bm.recent[itemKey]); this.recentDelta.diff = utils.getObjDiff(this.prevSavedItem, bm.recent[itemKey]);
this.recentDelta.diff.key = itemKey; this.recentDelta.diff.key = itemKey;
delete this.recentDelta[itemKey]; delete this.recentDelta[itemKey];
@@ -470,7 +470,7 @@ class ServerStorage extends Vue {
this.recentDelta[key] = utils.applyObjDiff(this.prevSavedItem, this.recentDelta.diff); this.recentDelta[key] = utils.applyObjDiff(this.prevSavedItem, this.recentDelta.diff);
} }
delete this.recentDelta.diff; delete this.recentDelta.diff;
} }*/
//сохранение //сохранение
this.savingRecent = true; this.savingRecent = true;