forked from urfu-2015/javascript-tasks-4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iterator.js
162 lines (135 loc) · 5.3 KB
/
iterator.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
'use strict';
module.exports.get = function (collection, bridegroomName, depth) {
var allFriends = [];
if (collection[bridegroomName]) {
// Всего друзей в телефонной книге.
var friendsCount = Object.keys(collection).length;
// Глубину не передали или передали больше, чем допустимо, берём максимальную.
if (depth === undefined || depth > friendsCount) {
depth = friendsCount;
}
fillAllFriends();
}
/**
* Наполняет список всех друзей
*/
function fillAllFriends() {
// Коллекция всех приглашённых друзей. Жених первый в списке.
allFriends = [bridegroomName];
// Друзья, у которых будем искать их друзей.
var currentFriends;
for (var i = 0; i < depth; i++) {
if (!currentFriends) {
// В начале здесь только сам жених.
currentFriends = [bridegroomName];
}
// Получить список ближайших друзей тех людей, кто сейчас в коллекции currentFriends
currentFriends = getCurrentFriends(currentFriends);
// Добавить этот список в список всех приглашённых
allFriends = allFriends.concat(currentFriends);
}
}
/**
* Возвращает список ближайших друзей для тех, кто в параметре currentFriends.
*
* @param {String[]} currentFriends Люди, у которых ищем друзей.
* @returns {String[]}
*/
function getCurrentFriends(currentFriends) {
var newFriends = [];
currentFriends.forEach(function (friend) {
var currentFriend = collection[friend];
if (currentFriend) {
var friends = currentFriend.friends.filter(function (friend) {
return collection[friend] &&
allFriends.indexOf(friend) < 0 && newFriends.indexOf(friend) < 0;
}).sort();
newFriends = newFriends.concat(friends);
}
});
return newFriends;
}
// Индекс имени друга в массиве всех друзей
var indexFriend = 0;
var currentFriend = allFriends[0];
/**
* Возвращает объект с именем и телефоном друга
*
* @param indexFriend индекс имени друга в массиве всех друзей
* @returns {{name: *, phone: *}}
*/
function getFriend(indexFriend) {
return {
name: allFriends[indexFriend],
phone: collection[allFriends[indexFriend]].phone
};
}
/**
* Возвращает новый список всех друзей, если количество полей в коллекции изменилось
*
* @returns {String[]}
*/
function getNewAllFriends() {
if (Object.keys(collection).length < friendsCount) {
fillAllFriends();
indexFriend = allFriends.indexOf(currentFriend);
}
}
return {
next: function (name) {
getNewAllFriends();
if (name) {
currentFriend = name;
indexFriend = allFriends.indexOf(name);
var isFriend = collection[name] && indexFriend !== -1 && indexFriend !== 0;
return isFriend ? {
name: name,
phone: collection[name].phone
} : null;
}
if (indexFriend < allFriends.length - 1) {
indexFriend++;
currentFriend = allFriends[indexFriend];
return getFriend(indexFriend);
}
return null;
},
prev: function () {
getNewAllFriends();
if (indexFriend > 0) {
indexFriend--;
currentFriend = allFriends[indexFriend];
return getFriend(indexFriend);
}
return null;
},
nextMale: function () {
getNewAllFriends();
if (indexFriend < allFriends.length - 1) {
indexFriend++;
currentFriend = allFriends[indexFriend];
var person = collection[allFriends[indexFriend]];
if (person && person.gender === 'Мужской') {
return getFriend(indexFriend);
} else {
return this.nextMale();
}
}
return null;
},
prevMale: function () {
getNewAllFriends();
if (indexFriend >= 1) {
indexFriend--;
currentFriend = allFriends[indexFriend];
var person = collection[allFriends[indexFriend]];
if (person && person.gender === 'Мужской') {
return getFriend(indexFriend);
} else {
return this.prevMale();
}
}
return null;
}
};
};