-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreference.js
executable file
·222 lines (152 loc) · 4.77 KB
/
reference.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
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
// this is a copy from https://github.com/ardcore/chrome-better-bookmark
// not used directly, but for inspiration and template to learn setting up .js UI elements and events
var categoryNodes = [];
var wrapper;
var focusedElement;
var fuzzySearch;
var currentNodeCount = 0;
var DOWN_KEYCODE = 40;
var UP_KEYCODE = 38;
var CONFIRM_KEYCODE = 13;
function filterRecursively(nodeArray, childrenProperty, filterFn, results) {
results = results || [];
nodeArray.forEach( function( node ) {
if (filterFn(node)) results.push( node );
if (node.children) filterRecursively(node.children, childrenProperty, filterFn, results);
});
return results;
};
function createUiElement(node) {
var el = document.createElement("span");
el.setAttribute("data-id", node.id);
el.setAttribute("data-count", node.children.length);
el.setAttribute("data-title", node.title);
el.innerHTML = node.title;
return el;
}
function triggerClick(element) {
var categoryId = element.getAttribute("data-id");
var newCategoryTitle;
if (categoryId == "NEW") {
newCategoryTitle = element.getAttribute("data-title");
chrome.bookmarks.create({
title: newCategoryTitle
}, function(res) {
processBookmark(res.id);
})
} else {
processBookmark(categoryId);
}
}
function processBookmark(categoryId) {
getCurrentUrlData(function(url, title) {
if (title && categoryId && url) {
addBookmarkToCategory(categoryId, title, url);
window.close();
}
});
}
function addBookmarkToCategory(categoryId, title, url) {
chrome.bookmarks.create({
'parentId': categoryId,
'title': title,
'url': url
});
}
function getCurrentUrlData(callbackFn) {
chrome.tabs.query({'active': true, 'currentWindow': true}, function (tabs) {
callbackFn(tabs[0].url, tabs[0].title)
});
}
function createUiFromNodes( categoryNodes ) {
var categoryUiElements = [];
currentNodeCount = categoryNodes.length;
categoryNodes.forEach( function( node ) {
categoryUiElements.push( createUiElement(node) );
})
categoryUiElements.forEach( function( element ) {
wrapper.appendChild( element );
});
};
function resetUi() {
wrapper.innerHTML = "";
};
function focusItem(index) {
if (focusedElement) focusedElement.classList.remove("focus");
focusedElement = wrapper.childNodes[index];
focusedElement.classList.add("focus");
focusedElement.scrollIntoView(false);
}
function addCreateCategoryButton(categoryName) {
var el = document.createElement("span");
el.setAttribute("data-id", "NEW");
el.setAttribute("data-title", categoryName);
el.classList.add("create");
el.innerHTML = chrome.i18n.getMessage("new") + ": " + categoryName;
wrapper.appendChild(el);
currentNodeCount = currentNodeCount + 1;
}
function createInitialTree() {
chrome.bookmarks.getTree( function(t) {
wrapper = document.getElementById("wrapper");
var options = {
keys: ['title'],
threshold: 0.4
}
categoryNodes = filterRecursively(t, "children", function(node) {
return !node.url && node.id > 0;
}).sort(function(a, b) {
return b.dateGroupModified - a.dateGroupModified;
})
createUiFromNodes( categoryNodes );
wrapper.style.width = wrapper.clientWidth + "px";
if (currentNodeCount > 0) focusItem(0);
fuzzySearch = new Fuse(categoryNodes, options);
wrapper.addEventListener("click", function(e) {
triggerClick(e.target);
})
});
}
(function() {
var searchElement = document.getElementById("search");
var text = "";
var newNodes;
var index = 0;
createInitialTree();
// seems useful - don't delete
searchElement.addEventListener("keydown", function(e) {
if (e.keyCode == UP_KEYCODE) {
e.preventDefault();
index = index - 1;
if (index < 0) index = currentNodeCount - 1;
focusItem(index);
} else if (e.keyCode == DOWN_KEYCODE) {
e.preventDefault();
index = index + 1;
if (index >= currentNodeCount) index = 0;
focusItem(index);
} else if (e.keyCode == CONFIRM_KEYCODE) {
if (currentNodeCount > 0) triggerClick(focusedElement);
} else {
// to get updated input value, we need to schedule it to the next tick
setTimeout( function() {
text = document.getElementById("search").value;
if (text.length) {
newNodes = fuzzySearch.search(text);
resetUi();
createUiFromNodes(newNodes)
if (newNodes.length) focusItem(0);
if (!newNodes.length || text !== newNodes[0].title) {
addCreateCategoryButton(text);
}
} else {
resetUi();
createUiFromNodes(categoryNodes);
if (currentNodeCount > 0) focusItem(0);
}
index = 0;
}, 0);
}
})
searchElement.focus();
})();