forked from urfu-2016/javascript-task-4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lego.js
194 lines (159 loc) · 4.82 KB
/
lego.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
'use strict';
/**
* Сделано задание на звездочку
* Реализованы методы or и and
*/
exports.isStar = true;
var PRIORITY = {
'or': 1,
'and': 2,
'filterIn': 3,
'sortBy': 4,
'select': 5,
'limit': 6,
'format': 7
};
/**
* Запрос к коллекции
* @param {Array} collection
* @params {...Function} – Функции для запроса
* @returns {Array}
*/
exports.query = function (collection) {
var functions = [].slice.call(arguments, 1);
functions = functions.filter(function (functionItem) {
return typeof functionItem === 'function' && PRIORITY.hasOwnProperty(functionItem.name);
});
functions.sort(function (a, b) {
return PRIORITY[a.name] - PRIORITY[b.name];
});
functions.forEach(function (functionItem) {
switch (functionItem.name) {
case 'or':
case 'and':
case 'filterIn':
collection = collection.filter(functionItem);
break;
case 'select':
case 'format':
collection = collection.map(functionItem);
break;
default:
collection = functionItem(collection);
}
});
return collection;
};
function selectProperties(item, properties) {
var newItem = {};
for (var i = 0; i < properties.length; i++) {
var property = properties[i];
if (item.hasOwnProperty(property)) {
newItem[property] = item[property];
}
}
return newItem;
}
/**
* Выбор полей
* @params {...String}
* @returns {Function}
*/
exports.select = function () {
var properties = [].slice.call(arguments);
return function select(item) {
return selectProperties(item, properties);
};
};
/**
* Фильтрация поля по массиву значений
* @param {String} property – Свойство для фильтрации
* @param {Array} values – Доступные значения
* @returns {Function}
*/
exports.filterIn = function (property, values) {
return function filterIn(item) {
return item.hasOwnProperty(property) && values.indexOf(item[property]) !== -1;
};
};
/**
* Сортировка коллекции по полю
* @param {String} property – Свойство для фильтрации
* @param {String} order – Порядок сортировки (asc - по возрастанию; desc – по убыванию)
* @returns {Function}
*/
exports.sortBy = function (property, order) {
var i = (order === 'asc') ? 1 : -1;
function compare(a, b) {
if (a[property] > b[property]) {
return i;
}
if (a[property] < b[property]) {
return -1 * i;
}
return 0;
}
function sortBy(collection) {
collection = collection.slice();
return collection.sort(compare);
}
return sortBy;
};
/**
* Форматирование поля
* @param {String} property – Свойство для фильтрации
* @param {Function} formatter – Функция для форматирования
* @returns {Function}
*/
exports.format = function (property, formatter) {
function format(item) {
var newItem = selectProperties(item, Object.keys(item));
if (newItem.hasOwnProperty(property)) {
newItem[property] = formatter(newItem[property]);
}
return newItem;
}
return format;
};
/**
* Ограничение количества элементов в коллекции
* @param {Number} count – Максимальное количество элементов
* @returns {Function}
*/
exports.limit = function (count) {
return function limit(collection) {
return collection.slice(0, count);
};
};
if (exports.isStar) {
/**
* Фильтрация, объединяющая фильтрующие функции
* @star
* @params {...Function} – Фильтрующие функции
* @returns {Function}
*/
exports.or = function () {
var filters = [].slice.call(arguments);
function or(item) {
return filters.reduce(function (result, filter) {
return result || filter(item);
}, false);
}
return or;
};
/**
* Фильтрация, пересекающая фильтрующие функции
* @star
* @params {...Function} – Фильтрующие функции
* @returns {Function}
*/
exports.and = function () {
var filters = [].slice.call(arguments);
function and(item) {
return filters.reduce(function (result, filter) {
return result && filter(item);
}, true);
}
return and;
};
}