-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
537 lines (427 loc) · 17 KB
/
Copy pathscript.js
File metadata and controls
537 lines (427 loc) · 17 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
function solve() {
Array.prototype.getUnique = function () {
var u = {}, a = [];
for (var i = 0, l = this.length; i < l; ++i) {
if (u.hasOwnProperty(this[i])) {
continue;
}
a.push(this[i]);
u[this[i]] = 1;
}
return a;
};
var module,
validator;
validator = {
validateIfUndefined: function (val, name) {
name = name || 'Value';
if (val === undefined) {
throw new Error(name + ' cannot be undefined');
}
},
validateIfObject: function (val, name) {
name = name || 'Value';
this.validateIfUndefined(val, name);
if (typeof val !== 'object') {
throw new Error(name + ' must be an object');
}
},
validateIfNumber: function (val, name) {
name = name || 'Value';
this.validateIfUndefined(val, name);
if (typeof val !== 'number') {
throw new Error(name + ' must be a number');
}
},
validatePositiveNumber: function (val, name) {
name = name || 'Value';
this.validateIfNumber(val, name);
if (val <= 0) {
throw new Error(name + ' must be positive number');
}
},
validateNumberRange: function (val, name, min, max) {
name = name || 'Value';
this.validateIfNumber(val, name);
if (val < min || max < val) {
throw new Error(name + ' must be between '
+ min
+ ' and ' + max);
}
},
validateIfString: function (val, name) {
name = name || 'Value';
this.validateIfUndefined(val, name);
if (typeof val !== 'string') {
throw new Error(name + ' must be a string');
}
},
validateStringRange: function (val, name, minLength, maxLength) {
name = name || 'Value';
this.validateIfString(val, name);
if (typeof val !== 'string') {
throw new Error(name + ' must be a string');
}
if (val.length < minLength
|| maxLength < val.length) {
throw new Error(name + ' must be between ' + minLength +
' and ' + maxLength + ' symbols');
}
},
validateIfEmptyString: function (val, name) {
name = name || 'Value';
this.validateIfString(val, name);
if (val.length === 0) {
throw new Error(name + ' must not be empty string');
}
},
validateISBN: function (val, name) {
name = name || 'Value';
this.validateIfString(val, name);
if (!/^(?:\d{10}|\d{13})$/.test(val)) {
throw new Error(name + ' must be 10 or 13 digits');
}
}
};
module = (function () {
var item,
book,
media,
catalog,
bookCatalog,
mediaCatalog,
findOptions = {};
item = (function () {
var currentItemId = 0,
item = {};
Object.defineProperty(item, 'init', {
value: function (name, description) {
this.name = name;
this.description = description;
this._id = ++currentItemId;
return this;
}
});
Object.defineProperty(item, 'id', {
get: function () {
return this._id;
}
});
Object.defineProperty(item, 'name', {
get: function () {
return this._name;
},
set: function (val) {
validator.validateStringRange(val, 'Item name', 2, 40);
this._name = val;
}
});
Object.defineProperty(item, 'description', {
get: function () {
return this._description;
},
set: function (val) {
validator.validateStringRange(val, 'Item name', 1, Number.MAX_VALUE);
this._description = val;
}
});
return item;
}());
book = (function (parent) {
var book = Object.create(parent);
Object.defineProperty(book, 'init', {
value: function (name, isbn, genre, description) {
parent.init.call(this, name, description);
this._isbn = isbn;
this.genre = genre;
return this;
}
});
Object.defineProperty(book, 'isbn', {
get: function () {
return this._isbn;
},
set: function (val) {
validator.validateISBN(val, 'isbn');
this._isbn = val;
}
});
Object.defineProperty(book, 'genre', {
get: function () {
return this._genre;
},
set: function (val) {
validator.validateStringRange(val, 'Book genre', 2, 20);
this._genre = val;
}
});
return book;
}(item));
media = (function (parent) {
var media = Object.create(parent);
Object.defineProperty(media, 'init', {
value: function (name, rating, duration, description) {
parent.init.call(this, name, description);
this.rating = rating;
this.duration = duration;
return this;
}
});
Object.defineProperty(media, 'rating', {
get: function () {
return this._rating;
},
set: function (val) {
validator.validateNumberRange(val, 'Media rating', 1, 5);
this._rating = val;
}
});
Object.defineProperty(media, 'duration', {
get: function () {
return this._duration;
},
set: function (val) {
validator.validatePositiveNumber(val, 'Media duration');
this._duration = val;
}
});
return media;
}(item));
catalog = (function () {
var catalogId = 0,
catalog = {};
Object.defineProperty(catalog, 'init', {
value: function (name) {
this.name = name;
this._id = ++catalogId;
this.items = [];
return this;
}
});
Object.defineProperty(catalog, 'name', {
get: function () {
return this._name;
},
set: function (val) {
validator.validateStringRange(val, 'Catalog name', 2, 40);
this._name = val;
}
});
Object.defineProperty(catalog, 'id', {
get: function () {
return this._id;
}
});
Object.defineProperty(catalog, 'add', {
value: function () {
var items = Array.prototype.slice.apply(arguments);
if (items.length === 0) {
throw new Error('You cannot add zero items.')
}
if (items[0] instanceof Array) {
items = items[0];
}
if (items.length === 0) {
throw new Error('You cannot add zero items array.')
}
items.forEach(function (item) {
validator.validateIfUndefined(item.id, 'Item id');
validator.validateIfUndefined(item.name, 'Item name');
validator.validateIfUndefined(item.description, 'Item description');
});
this.items = this.items.concat(items);
return this;
}
});
Object.defineProperty(catalog, 'find', {
value: function (options) {
var i,
len,
findOptionsKeys,
result = [];
switch (typeof options) {
case 'number':
for (i = 0, len = this.items.length; i < len; i += 1) {
if (this.items[i].id === options) {
return this.items[i];
}
}
return null;
case 'object':
if (options.hasOwnProperty('id')) {
findOptions.id = options.id;
}
if (options.hasOwnProperty('name')) {
findOptions.name = options.name;
}
findOptionsKeys = Object.keys(findOptions);
result = this.items.filter(function (item) {
var isMatching = true;
findOptionsKeys.forEach(function (key) {
var itemKey = item[key],
optionKey = findOptions[key];
if (itemKey.toString().toLowerCase() !== optionKey.toString().toLowerCase()) {
isMatching = false;
}
});
return isMatching;
});
findOptions = {};
return result;
default :
throw new Error('Options must be object or id number')
}
}
});
Object.defineProperty(catalog, 'search', {
value: function (pattern) {
var result;
validator.validateIfEmptyString(pattern, 'Pattern');
result = this.items.filter(function (item) {
return item.name.toLowerCase().indexOf(pattern.toLowerCase()) >= 0 ||
item.description.toLowerCase().indexOf(pattern.toLowerCase()) >= 0;
});
return result;
}
});
return catalog;
}());
bookCatalog = (function (parent) {
var bookCatalog = Object.create(parent);
Object.defineProperty(bookCatalog, 'init', {
value: function (name) {
parent.init.call(this, name);
return this;
}
});
Object.defineProperty(bookCatalog, 'add', {
value: function () {
var items = Array.prototype.slice.apply(arguments);
if (items.length === 0) {
throw new Error('You cannot add zero items.')
}
if (items[0] instanceof Array) {
items = items[0];
}
if (items.length === 0) {
throw new Error('You cannot add zero items array.')
}
items.forEach(function (item) {
validator.validateIfUndefined(item.id, 'Item id');
validator.validateIfUndefined(item.name, 'Item name');
validator.validateIfUndefined(item.description, 'Item description');
validator.validateIfUndefined(item.isbn, 'Book isbn');
validator.validateIfUndefined(item.genre, 'Book isbn');
});
this.items = this.items.concat(items);
return this;
}
});
Object.defineProperty(bookCatalog, 'getGenres', {
value: function () {
return this.items.map(function (item) {
return item.genre.toLowerCase();
}).getUnique();
}
});
Object.defineProperty(bookCatalog, 'find', {
value: function (options) {
if (options.genre !== 'undefined') {
findOptions.genre = options.genre;
}
return parent.find.call(this, options);
}
});
return bookCatalog;
}(catalog));
mediaCatalog = (function (parent) {
var mediaCatalog = Object.create(parent);
Object.defineProperty(mediaCatalog, 'init', {
value: function (name) {
parent.init.call(this, name);
return this;
}
});
Object.defineProperty(mediaCatalog, 'add', {
value: function () {
var items = Array.prototype.slice.apply(arguments);
if (items.length === 0) {
throw new Error('You cannot add zero items.')
}
if (items[0] instanceof Array) {
items = items[0];
}
if (items.length === 0) {
throw new Error('You cannot add zero items array.')
}
items.forEach(function (item) {
validator.validateIfUndefined(item.id, 'Item id');
validator.validateIfUndefined(item.name, 'Item name');
validator.validateIfUndefined(item.description, 'Item description');
validator.validateIfUndefined(item.rating, 'Item rating');
validator.validateIfUndefined(item.duration, 'Item duration');
});
this.items = this.items.concat(items);
return this;
}
});
Object.defineProperty(mediaCatalog, 'getTop', {
value: function (count) {
validator.validateIfNumber(count);
if (count < 1) {
throw new Error('count must be greater than 1')
}
this.items.sort(function (item1, item2) {
return item1.rating - item2.rating;
});
return this.items.slice(0, count);
}
});
Object.defineProperty(mediaCatalog, 'getSortedByDuration', {
value: function () {
return this.items.sort(function (item1, item2) {
if (item2.duration - item1.duration < 0) {
return -1;
} else if (item2.duration - item1.duration > 0) {
return 1;
}
return item1.id - item2.id;
});
}
});
return mediaCatalog;
}(catalog));
var module = {
getBook: function (name, isbn, genre, description) {
return Object.create(book).init(name, isbn, genre, description);
},
getMedia: function (name, rating, duration, description) {
return Object.create(media).init(name, rating, duration, description);
},
getBookCatalog: function (name) {
return Object.create(bookCatalog).init(name);
},
getMediaCatalog: function (name) {
return Object.create(mediaCatalog).init(name);
}
};
return module;
}());
return module;
}
var module = solve();
var catalog = module.getBookCatalog('John\'s catalog');
var book1 = module.getBook('The secrets of the JavaScript Ninja', '1234567890', 'IT', 'A book about JavaScript');
var book2 = module.getBook('JavaScript: The Good Parts', '0123456789', 'IT', 'A good book about JS');
catalog.add(book1);
catalog.add(book2);
console.log(catalog.find(book1.id));
//returns book1
console.log(catalog.find({id: book2.id, genre: 'IT'}));
//returns book2
console.log(catalog.search('js'));
// returns book2
console.log(catalog.search('javascript'));
//returns book1 and book2
console.log(catalog.search('Te sa zeleni'));
//returns []