forked from adblockplus/adblockpluschrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
block.js
152 lines (137 loc) · 3.61 KB
/
block.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
/*
* This file is part of Adblock Plus <https://adblockplus.org/>,
* Copyright (C) 2006-2016 Eyeo GmbH
*
* Adblock Plus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* Adblock Plus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
function init()
{
// Attach event listeners
window.addEventListener("keydown", onKeyDown, false);
window.addEventListener("dragstart", onDragStart, false);
window.addEventListener("dragend", onDragEnd, false);
$("#addButton").click(addFilters);
$("#cancelButton").click(closeDialog.bind(null, false));
// Apply jQuery UI styles
$("button").button();
ext.backgroundPage.sendMessage(
{
type: "forward",
expectsResponse: true,
payload:
{
type: "clickhide-init",
width: Math.max(document.body.offsetWidth || document.body.scrollWidth),
height: Math.max(document.body.offsetHeight || document.body.scrollHeight)
}
},
function(response)
{
document.getElementById("filters").value = response.filters.join("\n");
});
document.getElementById("filters").focus();
}
window.addEventListener("load", init, false);
function onKeyDown(event)
{
if (event.keyCode == 27)
{
event.preventDefault();
closeDialog();
}
else if (event.keyCode == 13 && !event.shiftKey && !event.ctrlKey)
{
event.preventDefault();
addFilters();
}
}
function addFilters()
{
ext.backgroundPage.sendMessage(
{
type: "add-filters",
text: document.getElementById("filters").value
},
function(response)
{
if (response.status == "ok")
closeDialog(true);
else
alert(response.error);
}
);
}
function closeDialog(success)
{
ext.backgroundPage.sendMessage(
{
type: "forward",
payload:
{
type: "clickhide-close",
remove: (typeof success == "boolean" ? success : false)
}
}
);
}
var dragStartX;
var dragStartY;
var dragEndX = null;
var dragEndY = null;
function onDragStart(event)
{
var element = document.elementFromPoint(event.clientX, event.clientY);
if (element && element.localName == "textarea")
{
// Don't drag the dialog when the user has clicked into the textarea.
// Most likely the user just wants to focus it or select text there.
event.preventDefault();
}
else
{
dragStartX = event.screenX;
dragStartY = event.screenY;
}
}
function onDragEnd(event)
{
if (dragEndX == null)
dragEndX = event.screenX;
if (dragEndY == null)
dragEndY = event.screenY;
ext.backgroundPage.sendMessage({
type: "forward",
payload:
{
type: "clickhide-move",
x: dragEndX - dragStartX,
y: dragEndY - dragStartY
}
});
dragStartX = null;
dragStartY = null;
dragEndX = null;
dragEndY = null;
}
// The coordinates in the dragend event are unreliable on Safari. So we
// need to get the destination coordinates from the drag event instead.
// However on Chrome, the coordinates in the drag event are unreliable.
// So we need to get the coordinates from dragend event there.
if (navigator.userAgent.indexOf(" Version/") != -1)
{
window.addEventListener("drag", function(event)
{
dragEndX = event.screenX;
dragEndY = event.screenY;
}, false);
}