@onehat/data 1.6.7 → 1.6.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/cypress/integration/Entity.spec.js +28 -0
- package/cypress/integration/Repository/Ajax.spec.js +27 -0
- package/cypress/integration/Repository/Repository.spec.js +5 -0
- package/package.json +1 -1
- package/src/Entity.js +26 -5
- package/src/Repository/Ajax.js +18 -0
- package/src/Repository/Repository.js +46 -0
|
@@ -137,6 +137,12 @@ describe('Entity', function() {
|
|
|
137
137
|
expect(this.entity.bar).to.be.eq('one');
|
|
138
138
|
expect(this.entity.isDirty).to.be.false;
|
|
139
139
|
expect(_.isEqual(this.entity.getParsedValues(), originalData)).to.be.true;
|
|
140
|
+
|
|
141
|
+
this.entity.delete();
|
|
142
|
+
expect(this.entity.isDeleted).to.be.true;
|
|
143
|
+
|
|
144
|
+
this.entity.reset();
|
|
145
|
+
expect(this.entity.isDeleted).to.be.false;
|
|
140
146
|
});
|
|
141
147
|
|
|
142
148
|
it('getMappedValue', function() {
|
|
@@ -533,6 +539,9 @@ describe('Entity', function() {
|
|
|
533
539
|
it('markDeleted', function() {
|
|
534
540
|
this.entity.markDeleted();
|
|
535
541
|
expect(this.entity.isDeleted).to.be.true;
|
|
542
|
+
|
|
543
|
+
this.entity.markDeleted(false);
|
|
544
|
+
expect(this.entity.isDeleted).to.be.false;
|
|
536
545
|
});
|
|
537
546
|
|
|
538
547
|
it('delete', function() {
|
|
@@ -540,6 +549,11 @@ describe('Entity', function() {
|
|
|
540
549
|
expect(this.entity.isDeleted).to.be.true;
|
|
541
550
|
});
|
|
542
551
|
|
|
552
|
+
it('undelete', function() {
|
|
553
|
+
this.entity.delete();
|
|
554
|
+
this.entity.undelete();
|
|
555
|
+
expect(this.entity.isDeleted).to.be.false;
|
|
556
|
+
});
|
|
543
557
|
});
|
|
544
558
|
|
|
545
559
|
describe('events', function() {
|
|
@@ -594,6 +608,20 @@ describe('Entity', function() {
|
|
|
594
608
|
expect(didFire).to.be.true;
|
|
595
609
|
});
|
|
596
610
|
|
|
611
|
+
it('undelete', function() {
|
|
612
|
+
this.entity.delete();
|
|
613
|
+
expect(this.entity.isDeleted).to.be.true;
|
|
614
|
+
|
|
615
|
+
let didFire = false;
|
|
616
|
+
this.entity.on('undelete', () => {
|
|
617
|
+
didFire = true;
|
|
618
|
+
});
|
|
619
|
+
this.entity.undelete();
|
|
620
|
+
|
|
621
|
+
expect(didFire).to.be.true;
|
|
622
|
+
expect(this.entity.isDeleted).to.be.false;
|
|
623
|
+
});
|
|
624
|
+
|
|
597
625
|
it('destroy', function() {
|
|
598
626
|
let didFire = false;
|
|
599
627
|
this.entity.on('destroy', () => {
|
|
@@ -111,6 +111,33 @@ describe('OneBuildRepository', function() {
|
|
|
111
111
|
await this.repository.add({ key: 6, value: 'six' });
|
|
112
112
|
expect(_.size(this.repository.entities)).to.be.eq(1);
|
|
113
113
|
});
|
|
114
|
+
|
|
115
|
+
it.only('sortInMemory', function() {
|
|
116
|
+
|
|
117
|
+
const repository = this.repository;
|
|
118
|
+
|
|
119
|
+
// Create two phantom records, out of order
|
|
120
|
+
repository.setAutoSave(false);
|
|
121
|
+
repository.add({ key: 5, value: 'Five', });
|
|
122
|
+
repository.add({ key: 4, value: 'One', });
|
|
123
|
+
repository.add({ key: 2, value: 'Two', });
|
|
124
|
+
repository.add({ key: 3, value: 'Three', });
|
|
125
|
+
repository.add({ key: 1, value: 'One', });
|
|
126
|
+
|
|
127
|
+
repository.sorters = [
|
|
128
|
+
{ name: 'value', direction: 'DESC', }, // 2,3,4,1,5
|
|
129
|
+
{ name: 'key', direction: 'ASC', }, // 2,3,1,4,5
|
|
130
|
+
];
|
|
131
|
+
repository.sortInMemory();
|
|
132
|
+
|
|
133
|
+
// Check that they are correct order
|
|
134
|
+
const entities = repository.entities;
|
|
135
|
+
expect(entities[0].key).to.be.eq(2);
|
|
136
|
+
expect(entities[1].key).to.be.eq(3);
|
|
137
|
+
expect(entities[2].key).to.be.eq(1);
|
|
138
|
+
expect(entities[3].key).to.be.eq(4);
|
|
139
|
+
expect(entities[4].key).to.be.eq(5);
|
|
140
|
+
});
|
|
114
141
|
|
|
115
142
|
});
|
|
116
143
|
|
package/package.json
CHANGED
package/src/Entity.js
CHANGED
|
@@ -52,6 +52,7 @@ class Entity extends EventEmitter {
|
|
|
52
52
|
'reload',
|
|
53
53
|
'save',
|
|
54
54
|
'delete',
|
|
55
|
+
'undelete',
|
|
55
56
|
'destroy',
|
|
56
57
|
]);
|
|
57
58
|
|
|
@@ -286,7 +287,7 @@ class Entity extends EventEmitter {
|
|
|
286
287
|
|
|
287
288
|
/**
|
|
288
289
|
* Resets the Entity to a state as if it had just been created,
|
|
289
|
-
*
|
|
290
|
+
* Gets data to restore from _originalData.
|
|
290
291
|
*/
|
|
291
292
|
reset = () => {
|
|
292
293
|
if (this.isDestroyed) {
|
|
@@ -297,6 +298,10 @@ class Entity extends EventEmitter {
|
|
|
297
298
|
this._resetPropertyValues();
|
|
298
299
|
this._originalDataParsed = this.getParsedValues();
|
|
299
300
|
|
|
301
|
+
if (this.isDeleted) {
|
|
302
|
+
this.undelete();
|
|
303
|
+
}
|
|
304
|
+
|
|
300
305
|
this.emit('reset', this._proxy);
|
|
301
306
|
}
|
|
302
307
|
|
|
@@ -1047,18 +1052,17 @@ class Entity extends EventEmitter {
|
|
|
1047
1052
|
|
|
1048
1053
|
/**
|
|
1049
1054
|
* Marks an entity as having been saved to storage medium.
|
|
1055
|
+
* @param {boolean} bool - How it should be marked. Defaults to true.
|
|
1050
1056
|
*/
|
|
1051
|
-
markDeleted = () => {
|
|
1057
|
+
markDeleted = (bool = true) => {
|
|
1052
1058
|
if (this.isDestroyed) {
|
|
1053
1059
|
throw Error('this.markDeleted is no longer valid. Entity has been destroyed.');
|
|
1054
1060
|
}
|
|
1055
|
-
this.isDeleted =
|
|
1061
|
+
this.isDeleted = bool;
|
|
1056
1062
|
}
|
|
1057
1063
|
|
|
1058
1064
|
/**
|
|
1059
1065
|
* Tells the Repository to delete this entity from the storage medium.
|
|
1060
|
-
* @param {function} onSuccess - Optional function to execute when save operation successfully completes.
|
|
1061
|
-
* @param {function} onFailure - Optional function to execute when save operation successfully completes.
|
|
1062
1066
|
* @fires delete
|
|
1063
1067
|
*/
|
|
1064
1068
|
delete = () => {
|
|
@@ -1072,6 +1076,23 @@ class Entity extends EventEmitter {
|
|
|
1072
1076
|
}
|
|
1073
1077
|
}
|
|
1074
1078
|
|
|
1079
|
+
/**
|
|
1080
|
+
* Marks a deleted entity as undeleted.
|
|
1081
|
+
* Only works when autoSave is off for the containing repository
|
|
1082
|
+
* @fires delete
|
|
1083
|
+
*/
|
|
1084
|
+
undelete = () => {
|
|
1085
|
+
if (this.isDestroyed) {
|
|
1086
|
+
throw Error('this.undelete is no longer valid. Entity has been destroyed.');
|
|
1087
|
+
}
|
|
1088
|
+
const repository = this.getRepository();
|
|
1089
|
+
if (repository && repository.autoSave) {
|
|
1090
|
+
throw Error('Cannot undelete entities on an autoSave repository.');
|
|
1091
|
+
}
|
|
1092
|
+
this.markDeleted(false);
|
|
1093
|
+
this.emit('undelete', this._proxy);
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1075
1096
|
/**
|
|
1076
1097
|
* Destroy this object.
|
|
1077
1098
|
* - Removes all circular references to parent objects
|
package/src/Repository/Ajax.js
CHANGED
|
@@ -653,6 +653,24 @@ class AjaxRepository extends Repository {
|
|
|
653
653
|
return this.reader.read(result);
|
|
654
654
|
}
|
|
655
655
|
|
|
656
|
+
/**
|
|
657
|
+
* Sorts the items in the current page of memory
|
|
658
|
+
* This is mainly used to sort isPhantom entities,
|
|
659
|
+
* since the server normally sorts, and they haven't yet gone to server.
|
|
660
|
+
*/
|
|
661
|
+
sortInMemory = () => {
|
|
662
|
+
const sorters = this.sorters;
|
|
663
|
+
let sortNames = [],
|
|
664
|
+
sortDirections = [];
|
|
665
|
+
_.each(sorters, (sorter) => {
|
|
666
|
+
sortNames.push(sorter.name);
|
|
667
|
+
sortDirections.push(sorter.direction.toLowerCase());
|
|
668
|
+
});
|
|
669
|
+
let entities = this.entities;
|
|
670
|
+
entities = _.orderBy(entities, sortNames, sortDirections);
|
|
671
|
+
this.entities = entities;
|
|
672
|
+
}
|
|
673
|
+
|
|
656
674
|
/**
|
|
657
675
|
* Helper for save.
|
|
658
676
|
* Takes an array of Promises from axios. When they are all resolved,
|
|
@@ -1478,6 +1478,52 @@ export default class Repository extends EventEmitter {
|
|
|
1478
1478
|
await this.delete(this.getPhantom());
|
|
1479
1479
|
}
|
|
1480
1480
|
|
|
1481
|
+
/**
|
|
1482
|
+
* Undelete a single Entity by its index (zero-indexed) on the current page
|
|
1483
|
+
* @param {integer} ix - Index
|
|
1484
|
+
* @return {object} entity - Entity
|
|
1485
|
+
*/
|
|
1486
|
+
undeleteByIx = async (ix) => {
|
|
1487
|
+
await this.undelete(this.getByIx(ix));
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
/**
|
|
1491
|
+
* Undelete multiple Entities by their range of indices
|
|
1492
|
+
* (zero-indexed) on the current page
|
|
1493
|
+
* @param {integer} startIx - Index
|
|
1494
|
+
* @param {integer} endIx - Index (inclusive)
|
|
1495
|
+
* @return {array} entities - Array of Entities
|
|
1496
|
+
*/
|
|
1497
|
+
undeleteByRange = async (startIx, endIx) => {
|
|
1498
|
+
await this.undelete(this.getByRange(startIx, endIx));
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
/**
|
|
1502
|
+
* Undelete multiple Entities by supplied filter function
|
|
1503
|
+
* @param {function} fn - Filter function to apply to all entities
|
|
1504
|
+
* @return {Entity[]} Entities that passed through filter
|
|
1505
|
+
*/
|
|
1506
|
+
undeleteBy = async (filter) => {
|
|
1507
|
+
await this.undelete(this.getBy(filter));
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
/**
|
|
1511
|
+
* Undelete a single Entity by its id
|
|
1512
|
+
* @param {integer} id - id of record to retrieve
|
|
1513
|
+
* @return {Entity} The Entity with matching id
|
|
1514
|
+
*/
|
|
1515
|
+
undeleteById = async (id) => {
|
|
1516
|
+
await this.undelete(this.getById(id));
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
/**
|
|
1520
|
+
* Undelete all deleted Entities
|
|
1521
|
+
* @return {Entity[]} Entities that passed through filter
|
|
1522
|
+
*/
|
|
1523
|
+
undeleteDeleted = async () => {
|
|
1524
|
+
await this.undelete(this.getDeleted());
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1481
1527
|
|
|
1482
1528
|
|
|
1483
1529
|
|