forked from skx/bookmarks.public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookmarks.js
More file actions
474 lines (418 loc) · 11.5 KB
/
Copy pathbookmarks.js
File metadata and controls
474 lines (418 loc) · 11.5 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
/**
* Default to showing tags.
*/
var tagsVisible = true;
/**
* Show all bookmarks
*/
function clearFilter() {
$("#bookmarks").children().each(function () {
$(this).show();
});
updateRelatedTags();
updateTitle();
}
/**
* Show only entries with zero tags.
*/
function showUntagged() {
$("#bookmarks").children().each(function () {
var tags = $(this).attr('title');
(typeof tags !== 'undefined') ? $(this).hide() : $(this).show();
});
updateTitle();
}
/**
* Show 25 random bookmarks
*/
function showRandom() {
$("#bookmarks").children().each(function () {
$(this).hide();
});
var links = $('#bookmarks').children(),
len = links.length, random, i, $a;
max = Math.min( 25, len )
for (i = 0; i < max; i++) {
random = Math.floor(Math.random() * links.length);
$a = links.eq(random).show();
links = links.not($a)
}
}
/**
* Poplate the "related tags" area.
*/
function updateRelatedTags(tag)
{
/*
* For each bookmark - add the tags used if it contains the
* currently selected tag.
*/
var avail = "";
$("#bookmarks").children().each(function () {
var tags = $(this).attr('title');
if ((typeof tags !== 'undefined') && (tags.toLowerCase().match(decodeURIComponent(tag))))
{
avail += "," + tags;
}
});
/*
* Split into an array, and downcase.
*/
var tags = {};
var a = avail.split(",");
for (var i in a)
{
var nm = a[i];
nm = nm.replace(/(^\s+|\s+$)/g, '');
tags[ nm.toLowerCase() ] = 1;
}
/*
* Unique and sort.
*/
var keys = [];
for (var t in tags)
{
if( t )
keys.push(t);
}
var cleanKeys = $.unique(keys);
cleanKeys.sort();
/*
* If there is only one tag then we have no related tags
* so we hide the region and return.
*/
if (cleanKeys.length < 2) {
$("#related_holder").hide()
return;
} else {
$("#related_holder").show()
}
/*
* Now show the tags.
*/
$("#related").html("");
for (t in cleanKeys)
{
$("#related").append("<a class=\"tagfilter\" href=\"#" + encodeURIComponent(cleanKeys[t]) + "\">" + cleanKeys[t] + "</a>, ");
}
/** Remove trailing ", ". */
$("#related").html($("#related").html().replace(/, $/, '.'));
}
/**
* Show the number of visible bookmarks in the titlebar.
*/
function updateTitle()
{
var count = $("#bookmarks > li:visible").length;
var plural = ((count === 0) || (count > 1)) ? 's' : '';
document.title = count + " visible bookmark" + plural;
}
/**
* Add a bookmark.
*/
function addBookmark() {
var name = $("#newName").val();
var link = $("#newLink").val();
var tags = $("#newTags").val();
// If the name or link is empty then ignore.
if ( ( ! name ) || ( ! link ) ) {
return;
}
var current = document.getElementById("bookmarks").innerHTML;
var entry = '<li id="newOne" title="' + tags + '"><a href="' + link + '">' + name + '</a></li>';
current = current + entry;
document.getElementById("bookmarks").innerHTML = current;
populateTags();
// Append tag to the newly added bookmark
$("#bookmarks").children().each(function () {
var id = $(this).attr("id");
var tag = $(this).attr("title");
if (id === "newOne")
{
if (tagsVisible && tag) {
decorate($(this), tag);
}
$(this).removeAttr("id");
}
});
var form = document.getElementById("newForm");
form.reset();
setupEditRemove();
}
/**
* This function collects each distinct tag,
* stripping whitespace, and placing into sorted order.
*/
function populateTags()
{
var tags = {};
$("#bookmarks").children().each(function () {
var tag = $(this).attr("title");
if (typeof tag !== 'undefined')
{
if (tag.match(","))
{
var a = tag.split(",");
for (var i in a)
{
var nm = a[i];
nm = nm.replace(/(^\s+|\s+$)/g, '');
tags[ nm.toLowerCase() ] = 1;
}
}
else
{
tag = tag.replace(/(^\s+|\s+$)/g, '');
tags[tag.toLowerCase()] = 1;
}
}
});
var keys = [];
for (var t in tags)
{
if( t )
keys.push(t);
}
var cleanKeys = $.unique(keys); // remove duplicate tags
cleanKeys.sort();
$("#autotags").html("");
for (t in cleanKeys)
{
$("#autotags").append("<a class=\"tagfilter\" href=\"#" + encodeURIComponent(cleanKeys[t]) + "\">" + cleanKeys[t] + "</a>, ");
}
/** Remove trailing ", ". */
$("#autotags").html($("#autotags").html().replace(/, $/, '.'));
}
/**
* Toggle the display of tags beneath our bookmarks.
*/
function toggleTags() {
if ( tagsVisible == false ) {
showTags();
tagsVisible = true;
} else {
hideTags();
tagsVisible = false;
}
}
/**
* Used by showTags()
* @param entry the bookmark to be decorated
* @param tag the list of tags to add to the entry
*/
function decorate(entry, tag) {
var txt = '\n<ul><li>';
var array = tag.toLowerCase().split(",");
for (var i in array)
{
var nm = array[i];
nm = nm.replace(/(^\s+|\s+$)/g, '');
txt += "<a class=\"tagfilter\" href=\"#" + encodeURIComponent(nm) + "\">" + nm + "</a>, ";
}
/** Remove trailing ", ". */
txt = txt.replace(/, $/, ".");
entry.append(txt + "</li></ul>");
}
/**
* Append the list of tags beneath each bookmark, for easy viewing.
*/
function showTags()
{
$("#bookmarks").children().each(function () {
var tag = $(this).attr("title");
if (typeof tag !== 'undefined')
{
decorate($(this), tag);
}
});
}
/**
* Remove the list of tags beneath each bookmark.
*/
function hideTags()
{
$("#bookmarks").children().each(function () {
var tag = $(this).attr("title");
if (typeof tag !== 'undefined')
{
var tagsStripped = $(this).html().replace(/<ul><li>.*<\/li><\/ul>/, "\n");
$(this).html(tagsStripped);
}
});
}
/**
* Sort the items in the UL which contains our bookmarks.
*/
function sortBookmarks()
{
var mylist = $('#bookmarks');
var listitems = mylist.children('li').get();
listitems.sort(function (a, b) {
return $(a).text().toUpperCase().localeCompare($(b).text().toUpperCase());
});
$.each(listitems, function (idx, itm) {
mylist.append(itm);
});
}
/**
* Update the bookmarks, via the hash
*/
function updateView()
{
if (typeof window.location.hash !== 'string' || window.location.hash.length === 0)
{
updateRelatedTags();
return;
}
var tag = window.location.hash.substring(1);
$("#bookmarks").children().each(function () {
var tags = $(this).attr('title');
((typeof tags !== 'undefined') && (tags.toLowerCase().match(decodeURIComponent(tag))))
? $(this).show() : $(this).hide();
});
/*
* Update the related tags & page-title
*/
updateRelatedTags(tag);
updateTitle();
}
/**
* Restore Add bookmark form back to new bookmark mode
* after saving editing results / canceling editing
*/
function doneEditBookmark () {
// cleanup form
$('#newName').val('');
$('#newLink').val('');
$('#newTags').val('');
// switch form to adding mode
$('.whenedit').hide();
$('.whenadd').show();
}
/**
* Switch Add bookmark form to editing mode
*/
function editBookmark (selector) {
// load form
$('#newName').val(selector.find('> a').html());
$('#newLink').val(selector.find('> a').attr('href'));
$('#newTags').val(selector.attr('title'));
// switch to editing mode
$('.whenadd').hide();
$('.whenedit').show();
$('#saveBookmark').off('click').one('click', function(){
// save form
selector.find('> a').html($('#newName').val());
selector.find('> a').attr('href', $('#newLink').val());
selector.attr('title', $('#newTags').val());
// update tags
toggleTags();
toggleTags();
// switch to adding mode
doneEditBookmark();
});
}
/**
* Setup edit / remove handlers
*/
function setupEditRemove () {
var li = $("#bookmarks > li");
li.mouseenter(function(){
var cli = $(this);
var clia = cli.find("> a");
var remove = $('<span class="context"> ♻ </span>').insertAfter(clia);
var edit = $('<span class="context"> ✎ </span>').insertAfter(clia);
edit.off('click').one('click', function(){
editBookmark(cli);
});
remove.off('click').one('click', function(){
if ( confirm( "Remove bookmark?" ) ) {
cli.remove();
}
});
});
li.mouseleave(function(){
$(this).find("span.context").remove();
});
}
/**
* Load our bookmarks from the URL `bookmarks.data`, and setup our
* initial state + listeners.
*/
function setup () {
$("#bookmarks").load("bookmarks.data",function() {
/** Sort the bookmarks */
sortBookmarks();
/** Populate the tags pane. */
populateTags();
/** Focus on the search/filter box. */
$("#fill").focus();
if ( tagsVisible ) {
showTags();
}
/**
* take the anchor (aka hash) and use it as filter to
* show only entries with a given tag
*/
window.onhashchange = function () {
updateView();
};
/**
* Search by title/url - case insensitive.
*/
$("#fill").keyup(function () {
filter = $("#fill").val().toLowerCase();
if ( filter.length == 0 ) { return ; }
$("#bookmarks").children().each(function () {
var title = $(this).text().toLowerCase();
var links = $(this).find("a");
if (typeof links !== 'undefined')
{
links = links.attr("href").toLowerCase();
}
(title.match(filter) || links.match(filter) || filter === "")
? $(this).show() : $(this).hide();
});
updateRelatedTags();
updateTitle();
});
setupEditRemove();
/*
* Now update the view - in case we were loaded with a
* hash
*/
updateView();
});
}
/**
* This function saves bookmark data.
* It hides tags temporarily then shows them if needed.
*/
function saveDataFile() {
var tagsVisibleWas = tagsVisible;
if(tagsVisibleWas)
toggleTags();
$("#bookmarks li").removeAttr("style");
var text = $("#bookmarks").html();
// beautify text
text = text.trim().replace(/[\n\r]+/g, "").replace(/<\/li><li/g, "</li>\n<li");
// below code was inspired by TiddlyWiki
var a = $('<a target="_blank" />').appendTo('body');
var filename = "bookmarks.data";
if(Blob !== undefined) {
var blob = new Blob([text], {type: "text/html"});
a.attr("href", URL.createObjectURL(blob));
} else {
a.attr("href","data:text/html," + encodeURIComponent(text));
}
a.attr("download",filename);
a.get(0).click(); // probably there is better way to do it
a.remove();
if(tagsVisibleWas)
toggleTags();
updateView();
}
/**
* Setup our state.
*/
setup();