-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcontent.js
More file actions
137 lines (114 loc) · 4 KB
/
Copy pathcontent.js
File metadata and controls
137 lines (114 loc) · 4 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
/**
* Copyright 2012 Thom Seddon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//Globals
var dropdown = document.querySelector('.global-nav .pull-right .nav .dropdown-menu'),
currentUser;
function getSetCurrentUser() {
//Get current uid and image from DOM
var account = dropdown.querySelector('.account-group'),
img = dropdown.querySelector('.account-group img');
return currentUser = {
uid: account.getAttribute('data-user-id'),
name: account.getAttribute('data-screen-name'),
img: img.getAttribute('src')
}
}
function switchAccount(event) {
var target = event.target, uid;
while (target.tagName != 'LI') {
target = target.parentNode;
}
uid = target.getAttribute('data-user-id');
chrome.extension.sendMessage({type: 'switchAccount', uid: uid});
}
function cleanup() {
var twichers = dropdown.querySelectorAll('.twitcher-inserted');
for (var i = 0; i < twichers.length; i++) {
var childNode = twichers[i];
if (childNode.parentNode) {
childNode.parentNode.removeChild(childNode);
}
}
}
function render(accounts) {
//Cleanup previous render
cleanup();
var target = dropdown.querySelector('.dropdown-divider'),
parent = target.parentNode,
accountsAdded = false,
li, html;
//Add divider
li = document.createElement('li');
li.className = 'dropdown-divider twitcher-inserted';
parent.insertBefore(li, target);
//Add each account
for (var uid in accounts) {
var account = accounts[uid];
if (uid == currentUser.uid) continue;
li = document.createElement('li');
li.className = 'twitcher-inserted';
li.setAttribute('data-user-id', uid);
li.setAttribute('draggable', true);
li.innerHTML = '<a><img style="margin:0 9px -4px 0" class="size18" src="' + account.img + '">' + account.name + '</a>';
li = parent.insertBefore(li, target);
li.addEventListener('click', switchAccount, false);
//Add drag shizzle
li.addEventListener('dragstart', function(event) {
this.style.opacity = '0.4';
this.getElementsByTagName('a')[0].style.background = 'red';
//Store uid
event.dataTransfer.effectAllowed = 'move';
event.dataTransfer.setData('text/html', uid);
}, false);
li.addEventListener('dragend', function(event) {
this.style.opacity = '1';
this.getElementsByTagName('a')[0].setAttribute('style', '');
}, false);
accountsAdded = true;
}
if (!accountsAdded) {
li = document.createElement('li');
li.className = 'twitcher-inserted';
li.innerHTML = '<p style="color:#999;font-size:0.8em;margin-left:22px">No other accounts</p>';
li = parent.insertBefore(li, target);
}
}
function bindDropListeners() {
function prevent(event) {
event.preventDefault();
return false;
}
//This stops it propogating when droped back inside the dropdown
dropdown.addEventListener('dragover', prevent, false);
dropdown.addEventListener('dragenter', prevent, false);
dropdown.addEventListener('drop', function (event) {
prevent(event);
event.stopPropagation();
}, false);
//Removes it when it's dropped outside the dropdown
document.body.addEventListener('dragover', prevent, false);
document.body.addEventListener('dragenter', prevent, false);
document.body.addEventListener('drop', function (event) {
prevent(event);
chrome.extension.sendMessage({type: 'removeAccount', uid: event.dataTransfer.getData('text/html')}, render);
}, false);
}
//Save latest version of current user
chrome.extension.sendMessage({type: 'currentUser', currentUser: getSetCurrentUser()}, function(){
//Boot
bindDropListeners();
chrome.extension.sendMessage({type: 'getAccounts'}, render);
});