-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💥 Drop
lodash-id
from dependencies and import it into source itself
- Loading branch information
Showing
4 changed files
with
386 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
// UUID | ||
// https://gist.github.com/LeverOne/1308368 | ||
/* jshint ignore:start */ | ||
function uuid (a, b) { for (b = a = ''; a++ < 36; b += a * 51 & 52 ? (a ^ 15 ? 8 ^ Math.random() * (a ^ 20 ? 16 : 4) : 4).toString(16) : '-');return b } | ||
/* jshint ignore:end */ | ||
|
||
// Credits to typicode/lodash-id | ||
// Based on: https://github.com/typicode/lodash-id/blob/adf8c8e99e598c448e6db6ec5705de9d9edb96ed/src/index.js | ||
module.exports = { | ||
// Empties properties | ||
__empty: function (doc) { | ||
this.forEach(doc, function (value, key) { | ||
delete doc[key] | ||
}) | ||
}, | ||
|
||
// Copies properties from an object to another | ||
__update: function (dest, src) { | ||
this.forEach(src, function (value, key) { | ||
dest[key] = value | ||
}) | ||
}, | ||
|
||
// Removes an item from an array | ||
__remove: function (array, item) { | ||
const index = this.indexOf(array, item) | ||
if (index !== -1) array.splice(index, 1) | ||
}, | ||
|
||
__id: function () { | ||
const id = this.id || 'id' | ||
return id | ||
}, | ||
|
||
// TODO: Handle situation when collection has docs with id === null | ||
getById: function (collection, id) { | ||
const self = this | ||
return this.find(collection, function (doc) { | ||
if (self.has(doc, self.__id())) { | ||
return doc[self.__id()].toString() === id.toString() | ||
} | ||
}) | ||
}, | ||
|
||
createId: function (collection, doc) { | ||
return uuid() | ||
}, | ||
|
||
insert: function (collection, doc) { | ||
doc[this.__id()] = doc[this.__id()] || this.createId(collection, doc) | ||
const d = this.getById(collection, doc[this.__id()]) | ||
if (d) throw new Error('Insert failed, duplicate id') | ||
collection.push(doc) | ||
return doc | ||
}, | ||
|
||
upsert: function (collection, doc) { | ||
if (doc[this.__id()]) { | ||
// id is set | ||
const d = this.getById(collection, doc[this.__id()]) | ||
if (d) { | ||
// replace properties of existing object | ||
this.__empty(d) | ||
this.assign(d, doc) | ||
} else { | ||
// push new object | ||
collection.push(doc) | ||
} | ||
} else { | ||
// create id and push new object | ||
doc[this.__id()] = this.createId(collection, doc) | ||
collection.push(doc) | ||
} | ||
|
||
return doc | ||
}, | ||
|
||
updateById: function (collection, id, attrs) { | ||
const doc = this.getById(collection, id) | ||
|
||
if (doc) { | ||
this.assign(doc, attrs, { id: doc.id }) | ||
} | ||
|
||
return doc | ||
}, | ||
|
||
updateWhere: function (collection, predicate, attrs) { | ||
const self = this | ||
const docs = this.filter(collection, predicate) | ||
|
||
docs.forEach(function (doc) { | ||
self.assign(doc, attrs, { id: doc.id }) | ||
}) | ||
|
||
return docs | ||
}, | ||
|
||
replaceById: function (collection, id, attrs) { | ||
const doc = this.getById(collection, id) | ||
|
||
if (doc) { | ||
const docId = doc.id | ||
this.__empty(doc) | ||
this.assign(doc, attrs, { id: docId }) | ||
} | ||
|
||
return doc | ||
}, | ||
|
||
removeById: function (collection, id) { | ||
const doc = this.getById(collection, id) | ||
|
||
this.__remove(collection, doc) | ||
|
||
return doc | ||
}, | ||
|
||
removeWhere: function (collection, predicate) { | ||
const self = this | ||
const docs = this.filter(collection, predicate) | ||
|
||
docs.forEach(function (doc) { | ||
self.__remove(collection, doc) | ||
}) | ||
|
||
return docs | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.