-
Notifications
You must be signed in to change notification settings - Fork 2
/
tagManager.js
703 lines (615 loc) · 21.3 KB
/
tagManager.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
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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
var result;
var count = 0;
var objectValue;
var colours = ["#7261A8", "#226F54", "#D62839", "#175676", "#CC3F0C", "#F58F29", "#916482", "#E0A890", "#CC76A1"]
var colour1 = "#D3D3D3"
var alph = "abcdefghijklmnopqrstuvwxyz".split("")
let minWidth;
let expand = false;
let totalWidth;
let titleHeight;
let prevScrollX = 0;
let prevScrollY = 0;
let stayWidth;
let currentWidth = 0;
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); // Note: https protocol here
ga('create', 'UA-175257786-1', 'auto');
ga('set', 'checkProtocolTask', function(){}); // Removes failing protocol check. @see: http://stackoverflow.com/a/22152353/1958200
ga('require', 'displayfeatures');
ga('send', 'pageview', "/tagManager.html")
function sendData(){
ga('send', 'event', 'tag', 'added', "For tags");
}
document.addEventListener("DOMContentLoaded", async() => {
result = await search
await title()
let $titleRow = $("#titleRow")[0].children
console.log($titleRow)
for(var i=1; i < $titleRow.length; i++){
if ($titleRow[i].offsetWidth > currentWidth){
currentWidth = $titleRow[i].offsetWidth
}
}
let width = await findColNum()
await grid2(result, width)
titleHeight = $("#titleRow").offset().top
stayWidth = $("#grid").children()[1].children[1].offsetWidth
// $(".row").each(function(){
// $(this).css("width", totalWidth)
// console.log("sucess")
// })
$("#optionsPage").on("click", function (){
window.location.href = "options.html"
})
$("#homePage").on("click", function (){
console.log("This sucks")
window.location.href = "newTab.html"
})
window.onscroll = function (){
console.log(window.pageXOffset, "x")
console.log(window.pageYOffset, "y")
if (window.pageYOffset > titleHeight){
$("#titleRow").addClass("stickyY")
$("#titleRow").css("left", -window.pageXOffset)
}
else{
$("#titleRow").removeClass("stickyY")
}
}
})
function stickyNav(){
let offsetSide = window.pageXOffset
let offsetTop = window.pageYOffset
if (offsetTop > titleHeight){
$("#titleRow").addClass("stickyY")
}
else{
$("#titleRow").removeClass("stickyY")
}
}
var search = new Promise(function (resolve, reject) {
chrome.bookmarks.getTree(function (data) {
if (data) {
thingo = data[0].children[0].children;
resolve(thingo)
}
})
})
async function findColNum(){
let colNum = await stored("tags")
colNum = colNum.split(",").length -1
return colNum
}
async function grid2(result, x){
let isBookmarkNext = true;
let isFolderBehind = true
let data = result
async function betterGrid(data, isBookmarkNext){
for(var i=0; i < data.length; i++){
if(data[i].children){
await gridFolder(data[i], x)
let isBookmarkNext = true;
let checkDataIncep = data[i]
console.log(data[i])
while (checkIncep(checkDataIncep, result) >= 1) {
checkDataIncep = findIt(result, data[i].parentId)
}
let place = findIndex(checkDataIncep, result)
if (place != 0){
if (result[place-1].children){
isFolderBehind = false
}
}
else{
isFolderBehind = true
}
if (i != data.length -1){
console.log("testing", data[i])
console.log(i, data.length)
if (result[place+1].children){
isBookmarkNext = false
}
}
await betterGrid(data[i].children, isBookmarkNext)
}
else{
if (checkIncep(data[i], result) >= 1 && i == (data.length - 1) && isBookmarkNext){
await gridBookmark(data[i], x, "last")
}
else if (checkIncep(data[i], result) >= 1 && i == (data.length - 1) && isFolderBehind){
await gridBookmark(data[i], x, "folderNext")
}
else{
await gridBookmark(data[i], x)
}
}
}
}
await betterGrid(data, isBookmarkNext)
}
function checkIncep(object, data){
let value = -1
function checkInception(object, data, value){
total = value + 1
if (object.parentId > 1){
checkInception(findIt(data, object.parentId), data, total)
}
return total
}
return checkInception(object, data, value)
}
function findIndex(object, data){
for(var i=0; i<data.length; i++){
if (data[i].children){
findIndex(object, data[i].children)
}
if (data[i] == object){
return i
}
}
}
async function gridBookmark(bookmark, x, position){
let incep = checkIncep(bookmark, result)
let styleVariable = "background-color: #D3D3D3;";
if (incep >= 1){
styleVariable = "border-left: 1px solid;min-height: 32px; background-color: #D3D3D3;"
if (position == "folderNext"){
styleVariable += "margin-top:-1px;"
}
else if (position == "last"){
styleVariable += "border-bottom: 1px solid;"
}
}
let backgroundColour = colour1
if (incep >= 1){
backgroundColour = pSBC(incep * -0.2, colour1)
}
let globOnline = true;
let bookmarkTag = await stored(String(bookmark.id))
if (bookmarkTag == undefined){
globOnline = false
}
let btext = bookmark.title
if (btext.length > 80){
btext = btext.slice(0,80) + "..."
}
if (btext.length > 75) {
btext = btext.slice(0,75) + "..."
}
let rowDiv = $("<div>", {"class": "row d-flex", id: "r" + String(bookmark.id), "style": "min-width:" + totalWidth + "px;min-height: 32px;"})
let div = $("<div>", {
"class": "p-1 col-4 bookmark-name",
"id": "@" + String(bookmark.id),
"style": styleVariable
})
let a = $("<a>", {
"text": btext,
"href": bookmark.url,
"class": "agrid",
"style": "color: #6a1b9a;"
})
$(rowDiv).hover(function () {
$(div).css("background-color", "#4285F4")
}, function () {
$(div).css("background-color", colour1)
})
a.appendTo(div)
div.appendTo(rowDiv)
//What is this x for?
//x is the number of columns needed
for(var i=0; i < x; i++){
// if (!checked){
// checked = true
// console.log(rowDiv[0].children[1].offsetWidth)
// }
let online;
if (!globOnline){
online = false
}
else{
online = await checkIfTagged(bookmarkTag, i)
}
let identification = String(alph[i]) + String(bookmark.id)
console.log(stayWidth)
//statyWidth = width to make the width not change (it still moves across though) have to remove flex-fill
let styleAttribute = "border-bottom: 1px solid;"
if (i%2==0){
styleAttribute = "border-bottom: 1px solid;border-left: 1px solid;border-right: 1px solid;"
}
if (i%2 != 0 && i == (x-1)){
styleAttribute += ";border-right: 1px solid"
}
let $div = $("<div>", {"class": "flex-fill grid", id: identification, "style": styleAttribute})
// if (i==0){
// $div.addClass("ml-auto")
// }
$div.on("click", async function(){
console.log(window.pageXOffset)
let type = identification.charAt(0)
let id = identification.slice(1)
let bookmarkTag = await stored(String(id))
let alreadyThere = await checkIfAlready(bookmarkTag, type)
if (alreadyThere){
await removeStorage($div, id, type)
}
else{
sendData()
await setStorage($div, id, type)
}
})
$div.appendTo(rowDiv)
//First check if it has any tag at all bcz most of them won't
if (online){
simpleHover($div, online, colours[i], pSBC((incep) * 0.2, colour1))
}
else{
simpleHover($div, online, colours[i], pSBC((incep) * -0.2, colour1))
}
}
rowDiv.appendTo("#grid")
//Talk about minWidth
// console.log(minWidth)
// let $rowDiv = rowDiv[0].children
// console.log(rowDiv)
//Find the length of one of the grid boxes and if it is smaller than minWidth, make it the size of minWidth and make the thing scrollable horizontally
}
async function gridFolder(object, x){
let globOnline = true;
let folderTag = await stored(String(object.id))
if (folderTag == undefined){
globOnline = false
}
let rowDiv = $("<div>", {"class":"row d-flex", id: "r" + String(object.id), "style": "min-width:" + totalWidth + "px"})
let div = $("<div>", {
"class": "p-1 col-4",
"id": "@" + String(object.id),
"style": "border-left: 1px solid;border-bottom: 1px solid; box-shadow:0px -1px #000000"
})
let p = $("<p>", {
"text": object.title,
"class": "agrid",
"style": "flex: 1; display: flex"
})
$(rowDiv).hover(function () {
$(div).css("background-color", "#2BBBAD")
}, function () {
$(div).css("background-color", colour1)
}
)
p.appendTo(div)
div.appendTo(rowDiv)
for(var i=0; i < x; i++){
let online;
if (!globOnline){
online = false
}
else{
online = await checkIfTagged(folderTag, i)
}
let identification = String(alph[i]) + String(object.id)
let styleAttribute = "border-bottom: 1px solid; "
if (i%2==0){
styleAttribute += "border-left: 1px solid;border-right: 1px solid;"
}
if (i%2 != 0 && i == (x-1)){
styleAttribute += ";border-right: 1px solid"
}
let $div = $("<div>", {"class":"grid p-1 flex-fill", id: identification, "style": styleAttribute})
$div.on("click", async function(){
let type = identification.charAt(0)
let id = identification.slice(1)
let folderTag = await stored(String(id))
let alreadyThere = await checkIfAlready(folderTag, type)
if (alreadyThere){
await removeStorage($div, id, type)
await removeStorageFolder($div, id, type, object.children)
}
else{
await setStorage($div, id, type)
await setStorageFolder($div, id, type, object.children)
}
})
$div.appendTo(rowDiv)
//First check if it has any tag at all bcz most of them won't
let incep = checkIncep(object,result)
if (online){
simpleHover($div, online, colours[i], pSBC((incep + 1) * 0.2, colour1))
}
else{
simpleHover($div, online, colours[i], pSBC((incep + 1) * -0.2, colour1))
}
}
rowDiv.appendTo("#grid")
}
async function title(){
let fragment = document.createDocumentFragment();
let colNames = await stored("tags")
colNames = colNames.split(",")
colNames.pop()
let titleRow = document.createElement("div")
titleRow.className = "row d-flex"
titleRow.style = "flex:1; left: 0px"
titleRow.id = "titleRow"
fragment.appendChild(titleRow)
let titleTitle = document.createElement("div")
titleTitle.className = "col-4 p-1"
titleTitle.style = "border-style:solid none solid solid; border-width: 1px; background-color: #D3D3D3;z-index: 2;"
titleTitle.innerHTML = "Bookmark Title"
titleRow.appendChild(titleTitle)
for(var i=0; i < colNames.length; i++){
let styleAttribute = "flex:1;text-align:center; border-top: 1px solid;border-bottom:1px solid;background-color:" + colours[i]
if (i%2 == 0){
styleAttribute += ";border-left: 1px solid;border-right: 1px solid"
}
if (i%2 != 0 && i == (colNames.length-1)){
styleAttribute += ";border-right: 1px solid"
}
let tagName = document.createElement("div")
tagName.style = styleAttribute
tagName.innerHTML = colNames[i]
tagName.class = "titleBox"
titleRow.appendChild(tagName)
}
document.getElementById("grid").appendChild(fragment)
let $titleRow = $("#titleRow")[0].children
minWidth = 0
console.log($titleRow)
for(var i=1; i < $titleRow.length; i++){
if ($titleRow[i].offsetWidth > minWidth){
minWidth = $titleRow[i].offsetWidth
}
}
let gridStuff = 4/12 * window.innerWidth
//console.log(gridStuff)
console.log(gridStuff/colNames.length)
if (gridStuff/colNames.length < minWidth){
let column = $("#titleRow")[0].children[0].offsetWidth
totalWidth = (minWidth * (colNames.length)) + column - 18
console.log(totalWidth)
// *** For some reason this line messed up the alignment of top row ***
$("#titleRow").css("width", totalWidth)
$("#titleRow").children().each(function (){
console.log("heyooo")
$(this).css("width", minWidth)
//$("#navBar").css("width", totalWidth + 10)
})
//Change title() length
//Change each rowDiv length
}
}
async function findColNum(){
let colNum = await stored("tags")
colNum = colNum.split(",").length -1
return colNum
}
function countAll(){
let counter = 0
function countInside(data){
for(var i=0;i<data.length;i++){
if (data[i].children){
countInside(data[i].children)
}
else{
counter++
}
}
}
countInside(result)
return counter
}
var stored = function (id){
return new Promise(function (resolve, reject){
chrome.storage.local.get([id], function (res) {
resolve(res[id])
})
})
}
async function checkIfTagged(fold, index){
if (fold != undefined){
let tags = await stored("tags")
tags = tags.split(",")
tags.pop()
let thisTag = tags[index]
if (fold.includes(thisTag)){
return true
}
else{
return false
}
}
else {
return false
}
}
//Need to fix nested hover (not the folder's folder but the folder's folder's bookmarks )
async function setStorageFolder(element, id, type, data){
for(var i=0; i < data.length; i++){
let bookmarkId = data[i].id
let element = $("#" + type + bookmarkId)
console.log()
await setStorage(element, bookmarkId, type)
if (data[i].children){
await setStorageFolder(element, id, type, data[i].children)
}
}
}
async function removeStorageFolder(element, id, type, data){
console.log("ooga boogs")
for(var i=0; i < data.length; i++){
let bookmarkId = data[i].id
let element = $("#" + type + bookmarkId)
console.log()
await removeStorage(element, bookmarkId, type)
if (data[i].children){
await removeStorageFolder(element, id, type, data[i].children)
}
}
}
async function setStorage(element, id, type){
let index = typeToIndex(type)
let tags = await stored("tags")
let tagIndex, newTag;
tags = tags.split(",")
tags.pop()
for(var i=0; i < alph.length;i++){
if(alph[i] == type){
tagIndex = i
break
}
}
let prev = await stored(id)
console.log(prev)
if(prev && prev != ","){
newTag = prev + tags[tagIndex] + ","
}
else {
newTag = tags[tagIndex] + ","
}
if (prev == undefined || !(prev.includes(tags[tagIndex]))){
await makeStorage(id, newTag)
}
element.css("background-color", colours[index])
let newID = element[0].id.slice(1)
let object = findIt(result, newID)
let score = checkScore(object)
let background = pSBC((score + 2) * 0.2, colour1)
simpleHover(element, true, colours[tagIndex], background)
}
var makeStorage = function (id, text){
return new Promise(function (resolve, reject){
chrome.storage.local.set({[id]: text})
resolve(text)
})
}
async function removeStorage(element, id, type){
let index = typeToIndex(type)
let tags = await stored("tags")
let tagIndex, newTag;
tags = tags.split(",")
tags.pop()
for(var i=0; i < alph.length;i++){
if(alph[i] == type){
tagIndex = i
break
}
}
let prev = await stored(id)
let str = tags[tagIndex] + ","
newTag = prev.replace(str, "")
if ((newTag.charAt(newTag.length) != ",")){
newTag.concat(",")
}
await makeStorage(id, newTag)
let object = findIt(result, id)
let backgroundCol = colour1
let score = checkScore(object)
backgroundCol = pSBC(score * -0.2, colour1)
element.css("background-color", backgroundCol)
simpleHover(element, false, colours[index], backgroundCol)
}
function checkScore(obj){
let inc = checkIncep(obj,result)
let chi = 0
if (obj.children){
chi = 1
}
return (inc + chi)
}
function simpleHover(element, bool, col1, col2){
if (!bool){
let temp;
temp = col1
col1 = col2
col2 = temp
}
element.css("background-color", col1)
element.hover(function(){
$(this).css("background-color", col2)
}, function () {
$(this).css("background-color", col1)
})
}
async function checkIfAlready(fold, type){
if (fold != undefined){
let tags = await stored("tags")
let tagIndex
tags = tags.split(",")
tags.pop()
for(var i=0; i < alph.length;i++){
if(alph[i] == type){
tagIndex = i
break
}
}
let thisTag = tags[tagIndex]
if (fold.includes(thisTag)){
return true
}
else{
return false
}
}
else{
return false
}
}
function typeToIndex(type){
for(var i=0; i < alph.length;i++){
if(alph[i] == type){
return i
}
}
return false
}
function innerfindIt(dataArray, objectId) {
for (var i = 0; i < dataArray.length; i++){
if (dataArray[i].id == objectId) {
console.log("Zoo wee mama")
let object = dataArray[i]
return object
}
else{
if (dataArray[i].children) {
if (innerfindIt(dataArray[i].children, objectId) != false){
return innerfindIt(dataArray[i].children, objectId)
}
}
else{
continue;
}
}
}
return false
}
function findIt(dataArray, objectId){
let found = false
let object;
return innerfindIt(dataArray, objectId)
}
let pSBC=(p,c0,c1,l)=>{
let r,g,b,P,f,t,h,i=parseInt,m=Math.round,a=typeof(c1)=="string";
if(typeof(p)!="number"||p<-1||p>1||typeof(c0)!="string"||(c0[0]!='r'&&c0[0]!='#')||(c1&&!a))return null;
if(!this.pSBCr)this.pSBCr=(d)=>{
let n=d.length,x={};
if(n>9){
[r,g,b,a]=d=d.split(","),n=d.length;
if(n<3||n>4)return null;
x.r=i(r[3]=="a"?r.slice(5):r.slice(4)),x.g=i(g),x.b=i(b),x.a=a?parseFloat(a):-1
}else{
if(n==8||n==6||n<4)return null;
if(n<6)d="#"+d[1]+d[1]+d[2]+d[2]+d[3]+d[3]+(n>4?d[4]+d[4]:"");
d=i(d.slice(1),16);
if(n==9||n==5)x.r=d>>24&255,x.g=d>>16&255,x.b=d>>8&255,x.a=m((d&255)/0.255)/1000;
else x.r=d>>16,x.g=d>>8&255,x.b=d&255,x.a=-1
}return x};
h=c0.length>9,h=a?c1.length>9?true:c1=="c"?!h:false:h,f=this.pSBCr(c0),P=p<0,t=c1&&c1!="c"?this.pSBCr(c1):P?{r:0,g:0,b:0,a:-1}:{r:255,g:255,b:255,a:-1},p=P?p*-1:p,P=1-p;
if(!f||!t)return null;
if(l)r=m(P*f.r+p*t.r),g=m(P*f.g+p*t.g),b=m(P*f.b+p*t.b);
else r=m((P*f.r**2+p*t.r**2)**0.5),g=m((P*f.g**2+p*t.g**2)**0.5),b=m((P*f.b**2+p*t.b**2)**0.5);
a=f.a,t=t.a,f=a>=0||t>=0,a=f?a<0?t:t<0?a:a*P+t*p:0;
if(h)return"rgb"+(f?"a(":"(")+r+","+g+","+b+(f?","+m(a*1000)/1000:"")+")";
else return"#"+(4294967296+r*16777216+g*65536+b*256+(f?m(a*255):0)).toString(16).slice(1,f?undefined:-2)
}