-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtabspane.js
593 lines (539 loc) · 16.1 KB
/
tabspane.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
var body = $('body'),
tabsPane = $('#tabsPane'),
historyPane = $('#historyPane');
/*** Begin runtime ***/
$(function(){
Foreground.initLayout();
Foreground.initSearchField();
Foreground.initHistoryPane();
Foreground.initKeyboardShortcuts();
Foreground.initContextMenu();
// Messages handling
chrome.extension.onMessage.addListener(function(request, sender, response) {
//TODO: check sender here
Foreground.processMessage(request);
});
chrome.windows.getCurrent({}, function(currentWindow) {
Foreground.currentWindow = currentWindow.id;
Foreground.initSortable();
Foreground.initMultiselect();
// Request initial tabs data from background page
Foreground.sendMessage(
{
command: 'tabList',
currentWindow: currentWindow.id
},
function(paneData) {
Foreground.initTabs(paneData.tabs);
}
);
});
});
/*** End runtime ***/
/**
* Object to encapsulate loading of extension parts
*/
Foreground = {
/* const */
ALL_WINDOWS: -15,
/* vars */
currentWindow: null,
selectionInstance: null,
selectionResult: [],
/**
* Init style related properties
*/
initLayout: function() {
$(window).resize(function() {
Foreground._setLayoutWidth();
});
// Mac OS style
if (navigator.platform == 'MacIntel') {
body.addClass('osx');
}
// Width to look fancy
this._setLayoutWidth();
},
/**
* Adjust panes width according to window width
*/
_setLayoutWidth: function() {
//prevent layout "jumping" when scrollBar appears/disappears
body.css({width: $(window).width()});
var tabOuterWidth = 350, //see tabspane.css .tabOuter width
width = parseInt($('body').css('width')),
columns = Math.floor(width / tabOuterWidth),
css = {
'width': (tabOuterWidth * (columns > 0 ? columns : 1)) + 'px'
};
tabsPane.css(css);
historyPane.css(css);
},
initSearchField: function() {
$('#tabsSearch').tabFilter({
filter: '',
shortcut: 'Tab',
onChanged: function(event, data) {
Tabs.unHighlightAll();
tabsPane.sortable(data.filter == '' ? 'enable' : 'disable');
Tabs.filter(data.filter);
}
});
},
initHistoryPane: function() {
historyPane = $('#historyPane').historyPane({
//TODO move "hide history when search is not active" to options
onFilter: function(event, data) {
$('#historyPane').parent().css({
display: data.filter == "" ? 'none' : 'block'
});
}
});
},
initKeyboardShortcuts: function() {
shortcut.add('Enter', function () {
Tabs.activateHighlighted();
});
},
/**
* Initialize Sortable UI for tabs list
*/
initSortable: function() {
//enable sortable list
tabsPane.sortable({
tolerance:'pointer',
// delay: 20,
// distance: 5,
// distance: 5,
cancel: '.tabDescription',
scroll: false,
start: function (event, ui) {
//on drag start
},
stop: function (event, ui) {
//on drag stop
//move real tabs according to THE NEW WORLD ORDER >:->
var tabId = ui.item.find('.tabThumb')[0].id.replace('tabThumb','');
Foreground.sendMessage({command: 'move', tabId: tabId, index: ui.item.index()}, null);
}
}).disableSelection();
},
initMultiselect: function() {
var _this = this;
this.selectionInstance = $('.appleOddRow').multiselect({
itemsSelector: '.tabThumb',
cancelSelectors: ['div.tabCapture', '#tabMenu', 'menuitem'],
onSelected: function(event, result) {
_this.selectionResult = result.elements;
}
});
},
getSelection: function() {
var ids = [];
$(this.selectionResult).each(function(index, jElement) {
ids.push(jElement.attr('id').replace('tabThumb', ''));
});
return ids;
},
unselectAll: function() {
this.selectionInstance.multiselect('unHighlightAll');
this.selectionResult = [];
},
initContextMenu: function() {
Menu.fill([
{
label: 'To a new window',
callback: function(element) {
var selection = Foreground.getSelection();
Foreground.sendMessage({ command: 'detach', tabIds: selection }, null);
Foreground.unselectAll();
}
},
{
label: 'Close',
callback: function(element) {
var ids = [];
if (Foreground.selectionResult.length) {
// There are selected elements
$(Foreground.selectionResult).each(function(index, jElement) {
ids.push(jElement.attr('id').replace('tabThumb', ''));
});
Tabs.close(ids);
Foreground.unselectAll();
} else {
// The are no selected elements
Tabs.close([element.id.replace('tabThumb', '')]);
}
}
}
]);
},
refreshEvents: function() {
tabsPane.sortable('refresh');
// $('.appleOddRow').multiselect('refresh');
},
/**
* Render all tab thumbnails form tabs array
* @param tabs
*/
initTabs: function(tabs) {
Tabs.clear();
Tabs.append(tabs);
$(tabsPane).fadeIn("fast");
},
/*** Message functions ***/
/**
* Process a message from background page or another extension
* @param request
*/
processMessage: function(request) {
if (request.windowId == this.currentWindow || request.windowId == this.ALL_WINDOWS) {
Tabs.processMessage(request);
}
},
/**
* Sends a message
* @param message
* @param callback
*/
sendMessage: function(message, callback) {
message.windowId = this.currentWindow;
chrome.runtime.sendMessage(null, message, callback ? callback : function(){} ); //for external messages params look like (extId, message, callback)
},
isExtensionURL: function(url) {
return chrome.extension.getURL('tabspane.html') == url;
}
};
Tabs = {
highlighted: {},
processMessage: function(request) {
switch (request.command) {
case 'log':
console.log(request.data);
break;
case 'logT':
console.table(request.data);
break;
// refresh the pane
case 'refresh':
chrome.runtime.sendMessage(null, {'command': 'tabList'}, function (paneData) {
refreshPane(paneData.tabs);
});
break;
// create a tab
// syntax {tab: Tab Object}
case 'tabCreate':
Tabs.append(request.tab);
break;
// update a tab
// syntax {command:tabUpdate, changeInfo: changeInfo Object, tab: Tab Object}
case 'tabUpdate':
if (Tabs.exists(request.tab.id)) {
Tabs.update(request.changeInfo, request.tab);
} else {
Tabs.append(request.tab);
}
break;
case 'tabCaptureUpdate':
Tabs.update(request.changeInfo, request.tab);
break;
// remove tab(s)
// syntax {command:tabRemove, tabIdArray:[ array of tab ids ]}
case 'tabRemove':
Tabs.remove($(request.tabIdArray));
break;
case 'highlight':
Tabs.highlight(request.tab.id);
break;
default:
break;
}
return false;
},
append: function(tabArray) {
// tabArray is supposed to be ordered by tab index in the window (!)
$(tabArray).each(function(index, tab) {
if (tabsPane.find('.tabOuter').length) {
//TODO: if several tabs inserted then shift nth-child number on number of tabs already inserted this time
var target = tabsPane.find('.tabOuter:nth-child({0})'.format(tab.index > 0 ? tab.index : 1));
if (tab.index == 0) {
//user ends up here when new window opened from dragged out tab
Tabs.render(tab).insertBefore(target);
} else {
Tabs.render(tab).insertAfter(target);
}
} else {
Tabs.render(tab).appendTo(tabsPane);
}
});
Foreground.refreshEvents();
},
update: function(changeInfo, tab) {
var tabThumb = $('#tabThumb' + tab.id);
if (tabThumb != null) {
$.each(changeInfo, function(key, value){
switch (key) {
case 'status':
if (changeInfo.status == 'complete') {
//TODO: cleanup later
if ($(tabThumb).find('.tabDescription').html() != 'Tabs Pane')
$(tabThumb).find('.tabDescription').html('{0} ({1})'.format(tab.title, tab.url));
}
break;
case 'url':
$(tabThumb).find('.tabDescription').html('{0} ({1})'.format(tab.title, tab.url));
break;
case 'favIconUrl':
$(tabThumb).find('.tabIcon').attr('src', 'chrome://favicon/size/16@1x/' + tab.url);
//TODO make some sort of function in Tabs to alter Tab info
break;
case 'capture':
if (!Foreground.isExtensionURL(tab.url)) {
$(tabThumb).find('.tabCapture').css({
'background': 'url('+ changeInfo.capture +')',
'background-size': 'cover'
});
}
break;
case 'indexFwd':
var fwdTarget = tabsPane.find('.tabOuter:nth-child({0})'.format(changeInfo.indexFwd + 1));
tabThumb.parent(null).insertAfter(fwdTarget);
Foreground.refreshEvents();
break;
case 'indexBkwd':
var bkwdTarget = tabsPane.find('.tabOuter:nth-child({0})'.format(changeInfo.indexBkwd > 0 ? changeInfo.indexBkwd : 1));
if (changeInfo.indexBkwd > 0) {
tabThumb.parent(null).insertAfter(bkwdTarget);
} else {
tabThumb.parent(null).insertBefore(bkwdTarget);
}
Foreground.refreshEvents();
break;
default:
break;
}
});
} else {
console.log('Something went wrong: tab.id is null during update')
}
},
remove: function(tabIdArray) {
$(tabIdArray).each(function(index, tabId){
Tabs.unHighlight(tabId);
$('#tabThumb' + tabId).parent(null).remove();
});
Foreground.refreshEvents();
},
exists: function(tabId) {
return $('#tabThumb' + tabId).length;
},
close: function(tabIdArray) {
$(tabIdArray).each(function(index, tabId){
chrome.tabs.remove(parseInt(tabId), function() {
Tabs.remove([tabId]);
});
});
},
clear: function() {
tabsPane.empty();
Foreground.refreshEvents();
},
/**
* Renders single tab representation
*/
render: function(tab) {
var skeleton = $(
'<div class="tabOuter">' + // I have to append this div, otherwise jQuery doesn't see .tabThumb until it's appended
'<div class="tabThumb">' +
'<div class="tabCapture"><div class="tabCloseButton"></div></div>' +
'<div class="tabFooter">' +
'<img class="tabIcon" />' +
'<div class="tabDescription"></div>' +
'</div>' +
'</div>' +
'</div>');
//icon & title
var smallIcon = tab.favIconUrl ? "chrome://favicon/size/16@1x/" + tab.url : chrome.extension.getURL('img/tab.png');
var largeIcon = tab.favIconUrl ? "chrome://favicon/size/16@2x/" + tab.url : chrome.extension.getURL('img/tab.png');
var favIconUrl = smallIcon;
var captureImage;
//set tabsPane icon & capture
if (Foreground.isExtensionURL(tab.url)) {
skeleton.find('.tabIcon').attr('src', chrome.extension.getURL('icons/icon16.png'));
skeleton.find('.tabDescription').html('Tabs Pane');
captureImage = chrome.extension.getURL('img/capture.png');
} else {
//set all other tabs icons and captures
skeleton.find('.tabIcon').attr('src', favIconUrl);
skeleton.find('.tabDescription').html('{0} ({1})'.format(tab.title, tab.url));
captureImage = chrome.extension.getBackgroundPage().tabCaptures[tab.id];
}
//capture
var tabCapture = skeleton.find('.tabCapture');
if (captureImage != null) {
tabCapture
.css({
'background': 'url({0})'.format(captureImage),
'background-size': 'cover'
});
} else {
// default tab capture image
tabCapture.css({
'background-image': 'url("{0}"), radial-gradient(#ddd, #fff 93%, #fff 18%)'.format(largeIcon),
'background-repeat': 'no-repeat, repeat',
'background-position': 'center center',
'background-size': '32px 32px, cover'
});
}
//holder
skeleton.find('.tabThumb')
.attr('id', 'tabThumb' + tab.id)
.mousedown(function(event) {
if (event.which == 3) {
Menu.show(event, this);
}
})
.mouseleave(function() {
Menu.hide();
});
skeleton.find('.tabCapture')
.click(function() {
Tabs.activate(tab.id);
Tabs.unHighlightAll();
});
skeleton.find('.tabCloseButton')
.click(function(event) {
Tabs.close([tab.id]);
event.stopPropagation();
});
return skeleton;
},
/**
* Activates a tab. Used in onclick events
* @param tabId
*/
activate: function(tabId) {
if (tabId != null) {
chrome.tabs.update(parseInt(tabId), {'active':true});
}
},
activateHighlighted: function() {
for (var i in this.highlighted) {
Tabs.activate(i);
$('#tabsSearch').tabfilter({filter: ''});
return;
}
},
/**
* Highlight a tab
* @param tabId
* @param noScroll bool
*/
highlight: function(tabId, noScroll) {
this.unHighlightAll();
var tab = $('#tabThumb' + tabId),
offset = tab.offset();
if (tab != []) {
this.highlighted[tabId] = '#tabThumb' + tabId;
if (noScroll !== true) window.scrollTo(offset.left, offset.top - 10);
tab.addClass('tabHighlighted');
}
},
unHighlight: function(tabId) {
if (this.highlighted[tabId]) {
$(this.highlighted[tabId]).removeClass('tabHighlighted');
delete this.highlighted[tabId];
}
},
unHighlightAll: function() {
var list = this.highlighted;
for (var i in list) {
if (list.hasOwnProperty(i)) {
$(list[i]).removeClass('tabHighlighted');
delete this.highlighted[i];
}
}
},
/**
* filters tab by a search string
* @param search
*/
filter: function(search) {
var firstHighlighted = false, visibleCount = 0;
$('.tabOuter').each(function(index, item) {
if (search != '') {
if ($(this).find('.tabDescription').text().toLowerCase().match(search) == null) {
$(this).css({display:'none'});
} else {
if (!firstHighlighted) {
// highlight first tab found so it could be activated by hitting Enter
var
tabId = $(this).find('.tabThumb')[0].id.replace('tabThumb', ''),
noScroll = true;
Tabs.highlight(tabId, noScroll);
firstHighlighted = true;
}
$(this).css({display:'inline-block'});
visibleCount++;
}
} else {
//empty search. all tabs
$(this).css({ display: 'inline-block' });
firstHighlighted = true;
Foreground.refreshEvents();
}
});
if (!firstHighlighted) {
tabsPane.css({ display: 'none' });
} else {
tabsPane.css({ display: 'block' });
}
$('.tabOuter').promise().done(function() {
Foreground.refreshEvents();
//Show history pane only when there is 1 or 0 rows of tab results
if (visibleCount <= 6) {
historyPane.historyPane({'filter': search});
} else {
historyPane.historyPane({'filter': ''});
}
});
}
};
Groups = {
db: null,
data: {
tabs: [
// {id, tabId, windowId, groupId, url, title, index}
],
groups: [],
_groups: [
{ id: null, title: 'All Tabs' }
]
},
init: function() {
},
create: function(title) {
//
},
setGroup: function(tabs, groupId) {
tabs.forEach(function (tab) {
})
}
};
//Groups.init();
/*** Helper functions ***/
/**
* sprintf-like functionality
* replaces {0}, {1}... in a string with arguments passed to a function
*/
if (!String.prototype.format) {
String.prototype.format = function() {
var args = arguments;
return this.replace(/{(\d+)}/g, function(match, number) {
return typeof args[number] != 'undefined'
? args[number]
: match
;
});
};
}