-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
77 lines (69 loc) · 1.48 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
'use strict'
const compare = (value, filter) => {
if (typeof filter === 'function') {
return filter(value)
}
if (['boolean', 'number', 'string'].includes(typeof filter)) {
return filter === value
}
if (filter instanceof RegExp) {
return filter.test(value)
}
}
const isDeepMatch = (item, filters) => {
for (const key in filters) {
if (!compare(item[key], filters[key])) {
return false
}
}
return true
}
const hasOneMatch = (item, where) => {
for (const filters of where) {
if (isDeepMatch(item, filters)) {
return true
}
}
return false
}
export default class Collection extends Array {
retrieve (...where) {
return this.reduce((acc, item) => {
if (hasOneMatch(item, where)) {
acc.push(item)
}
return acc
}, Collection.from([]))
}
retrieveIndex (filters) {
let index = 0
while (index < this.length) {
if (isDeepMatch(this[index], filters)) {
return index
}
index++
}
return -1
}
retrieveOne (filters) {
const index = this.retrieveIndex(filters)
if (index > -1) {
return Collection.of(this[index])
}
return Collection.from([])
}
select (...keys) {
return this.map(item => keys.reduce((acc, key) => {
acc[key] = item[key]
return acc
}, {}))
}
valuesOf (key) {
return this.reduce((acc, item) => {
if (acc.indexOf(item[key]) < 0) {
acc.push(item[key])
}
return acc
}, [])
}
}