-
Notifications
You must be signed in to change notification settings - Fork 9
/
copylink.js
290 lines (235 loc) · 9.44 KB
/
copylink.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
/*
CopyLink 1.1
http://github.com/molily/selectionmenu
by molily ([email protected], http://molily.de/)
EN: CopyLink automatically inserts a source reference when the user copies text from a page
DE: CopyLink fügt automatisch eine Quellenreferenz ein, wenn der Benutzer Text von einer Seite kopiert
EN: License: Public Domain
EN: You're allowed to copy, distribute and change the code without restrictions
DE: Lizenz: Public Domain
DE: Kopieren, Verteilen und Aendern ohne Einschraenkungen erlaubt
*/
// EN: Create a private scope using an anonymous function,
// EN: save the return value in a global variable.
// DE: Erzeuge einen privaten Scope durch eine anonyme Funktion,
// DE: speichere den Rückgabwert in einer globalen Variable
var CopyLink = (function (window, document) {
// EN: The element which is inserted when copying
// DE: Das Element, welche beim Kopieren eingefügt wird
var span = null;
// EN: Shared private helper functions
// DE: Geteilte private Helferfunktionen
function addEvent (obj, type, fn) {
// EN: Feature dection DOM Events / Microsoft
// DE: Fähigkeitenweiche DOM Events / Microsoft
if (obj.addEventListener) {
obj.addEventListener(type, fn, false);
} else if (obj.attachEvent) {
obj.attachEvent('on' + type, function () {
return fn.call(obj, window.event);
});
}
}
// EN: Publish addEvent as a static method
// EN: (attach it to the constructor object)
// DE: Mache addEvent als statische Methode öffentlich
// DE: (hefte die Methode an den Konstruktor, der zurückgegeben wird)
CopyLink.addEvent = addEvent;
function getSelection () {
// EN: Feature dection HTML5 / Microsoft
// DE: Fähigkeitenweiche HTML5 / Microsoft
if (window.getSelection) {
return window.getSelection();
} else if (document.selection && document.selection.createRange) {
return document.selection.createRange();
} else {
// EN: No browser support available for the required features
// DE: Keine Browser-Unterstützung für die benötigten Features
return false;
}
}
function getSelectedText (selection) {
// EN : Feature detection HTML5 / Microsoft
// DE: Fähigkeitenweiche HTML5 / Microsoft
return selection.toString ? selection.toString() : selection.text;
}
function removeSpan () {
// EN: Is the element attached to the DOM tree?
// DE: Ist das Element in den DOM-Baum gehängt?
var parent = span.parentNode;
if (parent) {
// EN: Remove the element from DOM (the element object remains
// EN: in memory and will be reused later)
// DE: Entferne das element aus dem DOM-Baum (Element bleibt im Speicher erhalten
// DE: und wird später wiederverwendet)
parent.removeChild(span);
}
}
// EN: Main constructor function
// DE: Konstruktorfunktion
function CopyLink (options) {
var instance = this;
// EN: Copy members from the options object to the instance
// DE: Kopiere Einstellungen aus dem options-Objekt herüber zur Instanz
instance.id = options.id || 'copylink';
instance.minimalSelection = options.minimalSelection || 20;
instance.container = options.container;
instance.handler = options.handler || function () {
return '<br>Source: ' + location.href;
};
// EN: Initialisation
// DE: Initialisiere
instance.create();
instance.setupEvents();
}
CopyLink.prototype = {
create : function () {
var instance = this;
// EN: Create the container for the inserted text if necessary
// DE: Erzeuge den Container für den eingefügten Text, sofern noch nicht passiert
if (span) {
return;
}
span = document.createElement('span');
span.id = instance.id;
span.style.cssText = 'position: absolute; left: -9999px;';
},
setupEvents : function () {
var instance = this;
addEvent(instance.container, 'copy', function () {
instance.insert();
});
},
insert : function () {
var instance = this;
// EN: Get a Selection object or a TextRange (IE)
// DE: Hole Selection bzw. TextRange (IE)
var selection = getSelection();
if (!selection) {
// EN: No browser support available for the required features
// DE: Keine Browser-Unterstützung für die benötigten Features
return;
}
// EN: Get the selected text
// DE: Hole markierten Text
var selectedText = getSelectedText(selection);
// EN: Abort if the selected text is too short
// DE: Breche ab, wenn der markierte Text zu kurz ist
if (selectedText.length < instance.minimalSelection) {
return;
}
// EN : Feature detection DOM Range / Microsoft
// DE: Fähigkeitenweiche DOM Range / Microsoft
if (selection.getRangeAt) {
// EN: W3C DOM Range approach
// DE: Lösungsansatz mit W3C DOM Range
// EN: Get the first Range of the current Selection
// DE: Hole Range, die zur Selection gehört
var range = selection.getRangeAt(0);
// EN: Get the start and end nodes of the selection
// DE: Hole Start- und Endknoten der Auswahl
var startNode = range.startContainer;
var endNode = range.endContainer;
if (!(startNode && endNode && startNode.compareDocumentPosition)) {
// EN: Abort if we got bogus values or we can't compare their document position
// DE: Breche ab, wenn die Knoten nicht brauchbar sind
return;
}
// EN: If the start node succeeds the end node in the DOM tree, flip them
// DE: Wenn von hinten nach vorne markiert wurde, drehe Start und Ende um
if (startNode.compareDocumentPosition(endNode) & 2) {
startNode = endNode;
endNode = range.startContainer;
}
// EN: Get the start and end offset
// DE: Hole Start- und End-Offset
var startOffset = range.startOffset;
var endOffset = range.endOffset;
// EN: If the end node is an element, use its last text node as the end offset
// DE: Falls der Endknoten ein Element ist, nehme das Ende des letzten Textknoten
if (endNode.nodeType == 1) {
endNode = endNode.lastChild;
if (!endNode || endNode.nodeType != 3) {
return;
}
endOffset = endNode.data.length;
}
// EN: Create a new empty Range
// DE: Erzeuge neue, leere Range
var newRange = document.createRange();
// EN: Move the beginning of the new Range to the end of the selection
// DE: Verschiebe Anfang der neuen Range an das Ende der Auswahl
newRange.setStart(endNode, endOffset);
// EN: Fill the span containing the source reference
// DE: Befülle das span-Element mit der Quellenreferenz
span.innerHTML = instance.handler.call(instance);
// EN: Inject the span element into the new Range
// DE: Füge das span-Element in die neue Range ein
newRange.insertNode(span);
// EN: Enlarge the Range forward to enclose the original Range
// DE: Erweitere Range nach vorne, um die ursprüngliche einzuschließen
// EN: Include the span into the selection
// DE: Schließe span in die Auswahl ein
range.setEndAfter(span);
// EN: Now select the whole text in the new range.
// EN: This text is copied to the clipboard.
// DE: Markiere den Text der Range, damit dieser in
// DE: die Zwischenablage kopiert wird
selection.removeAllRanges();
selection.addRange(range);
window.setTimeout(function () {
// EN: Remove the span from the selection
// DE: Entferne span wieder aus der Auswahl
range.setEndBefore(span);
// EN: Restore the original range and its text selection
// DE: Stelle die ursprüngliche Range und damit die ursprüngliche Textauswahl wieder her
if (selection.removeRange) {
selection.removeRange(range);
} else {
selection.removeAllRanges();
}
selection.addRange(range);
// EN: Remove the span from the DOM tree
// DE: Entferne span wieder aus dem DOM
removeSpan();
}, 0);
} else if (selection.duplicate) {
// EN: Microsoft TextRange approach
// DE: Lösungsansatz mit Microsoft TextRanges
// EN: Create a copy the the TextRange
// DE: Kopiere TextRange
var newRange = selection.duplicate();
// EN: Move the start of the new range to the end of the selection
// DE: Verschiebe den Anfang der neuen Range an das Ende der Auswahl
newRange.setEndPoint('StartToEnd', selection);
// EN: Fill the span containing the source reference
// DE: Befülle das span-Element mit der Quellenreferenz
span.innerHTML = instance.handler.call(instance);
// EN: Insert the span into the new range
// DE: Fülle die neue Range mit dem span
newRange.pasteHTML(span.outerHTML);
// EN: Add the new TextRange to the current selection
// DE: Schließe eingefügte TextRange in die Auswahl ein
selection.setEndPoint('EndToEnd', newRange);
// EN: Select the text of the TextRange
// EN: This text is copied to the clipboard.
// DE: Markiere den Textinhalt der TextRange, damit dieser in
// DE: die Zwischenablage kopiert wird
selection.select();
// EN: Since we're using outerHTML to insert the span element,
// EN: we have to restore the span reference
// DE: Da das Befüllen nicht über das DOM, sondern über serialisierten HTML-Code erfolgt,
// DE: stelle die Referenz wieder her
span = document.getElementById(id);
// EN: Remove the span from the DOM tree
// DE: Entferne span wieder aus dem DOM
window.setTimeout(removeSpan, 0);
}
// EN: No browser support available for the required features
// DE: Keine Browser-Unterstützung für die benötigten Features
}
};
// EN: Return the constructor function
// DE: Gib den Konstruktor zurück
return CopyLink;
})(window, document);