@onehat/data 1.21.10 → 1.21.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -512,6 +512,10 @@ class LocalFromRemoteRepository extends EventEmitter {
|
|
|
512
512
|
return this.lastSync;
|
|
513
513
|
}
|
|
514
514
|
|
|
515
|
+
getLastModifiedDate() {
|
|
516
|
+
return this.remote.getLastModifiedDate();
|
|
517
|
+
}
|
|
518
|
+
|
|
515
519
|
/**
|
|
516
520
|
* Sets lastSync to now and saves to local storage medium, if possible.
|
|
517
521
|
* @private
|
|
@@ -44,6 +44,7 @@ class OneBuildRepository extends AjaxRepository {
|
|
|
44
44
|
batchAdd: model + '/batchAdd',
|
|
45
45
|
batchEdit: model + '/batchEdit',
|
|
46
46
|
batchDelete: model + '/batchDelete',
|
|
47
|
+
getLastModifiedDate: model + '/getLastModifiedDate',
|
|
47
48
|
},
|
|
48
49
|
|
|
49
50
|
methods: {
|
|
@@ -442,6 +443,53 @@ class OneBuildRepository extends AjaxRepository {
|
|
|
442
443
|
|
|
443
444
|
}
|
|
444
445
|
|
|
446
|
+
async getLastModifiedDate() {
|
|
447
|
+
if (this.isDestroyed) {
|
|
448
|
+
this.throwError('this.getLastModifiedDate is no longer valid. Repository has been destroyed.');
|
|
449
|
+
return;
|
|
450
|
+
}
|
|
451
|
+
if (!this.api.getLastModifiedDate) {
|
|
452
|
+
this.throwError('No "getLastModifiedDate" api endpoint defined.');
|
|
453
|
+
return;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
this.markLoading();
|
|
457
|
+
|
|
458
|
+
if (this.debugMode) {
|
|
459
|
+
console.log('getLastModifiedDate');
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
return this._send(this.methods.get, this.api.getLastModifiedDate, this._baseParams)
|
|
463
|
+
.then(result => {
|
|
464
|
+
if (this.debugMode) {
|
|
465
|
+
console.log('Response for getLastModifiedDate for ' + this.name, result);
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
if (this.isDestroyed) {
|
|
469
|
+
// If this repository gets destroyed before it has a chance
|
|
470
|
+
// to process the Ajax request, just ignore the response.
|
|
471
|
+
return;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
const {
|
|
475
|
+
root,
|
|
476
|
+
success,
|
|
477
|
+
total,
|
|
478
|
+
message
|
|
479
|
+
} = this._processServerResponse(result);
|
|
480
|
+
|
|
481
|
+
if (!success) {
|
|
482
|
+
this.throwError(message);
|
|
483
|
+
return;
|
|
484
|
+
}
|
|
485
|
+
return root;
|
|
486
|
+
})
|
|
487
|
+
.finally(() => {
|
|
488
|
+
this.markLoading(false);
|
|
489
|
+
});
|
|
490
|
+
|
|
491
|
+
}
|
|
492
|
+
|
|
445
493
|
/**
|
|
446
494
|
* Login to OneBuild API
|
|
447
495
|
* @param {object} creds - object with two properties:
|