forked from eschutho/tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtooltip.js
479 lines (441 loc) · 19.4 KB
/
tooltip.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
/**
* $ Tooltip Plugin
* @version 0.3
* @author Elizabeth Thompson
*/
//don't check for strict equality. This is needed in this.isIE8 to test for IE8
/* jshint -W041 */
/**
* Description:
* This is a tooltip plugin that displays a message that appears on mouseover and dissappears on mouseout.
*/
var tooltip = {
/**
* $ plugin name which can later be used to call the plugin. Href of item that appears needs to be included
* Example: $("#Elem").actooltip({
href:"#Mytooltip"
});
* @type {String}
*/
name: "actooltip",
/**
* Default options
* @type {Object}
*/
options: {
orientation: "bottom", // placement of tooltip: bottom, bottomleft, bottomright, bottom center, topleft, topright, topcenter, left, right
ishover: false,
collision: true, // change toolitip position based on collision logic
container: "#BodyWrapper", // container to test collision within
href: "", // content to display inside tooltip
notch: true, // whether or not to use notch
notchTag: "<b class='border-notch notch'></b><b class='notch'></b>", // html for the notch
speedIn: "fast", // speed when opening
speedOut: "500", // speed when closing
tooltipHover: true,
thisClass: "actooltip", // class to be added to the tooltip
action: "hover", // hover or click to open tooltip
display: "off", // (Click only) initially display tooltip?
closeOnBkgClick: true, // close tooltip when click on background?
openFcn: null, // executes a function after tooltip opens
closeFcn: null // executes a function after closes
},
//definitions for the name of the tooltip and the trigger, and positioning of the selector/trigger
setoptions: function () {
var o = this.options;
o.thisSelector = o.thisSelector || this.getSelector();
o.thisTip = o.thisTip || o.href;
this.tipWidth = $(o.thisTip).width() + parseInt($(o.thisTip).css("paddingLeft"), 10) + parseInt($(o.thisTip).css("paddingRight"), 10);
this.tipHeight = $(o.thisTip).height() + parseInt($(o.thisTip).css("paddingTop"), 10) + parseInt($(o.thisTip).css("paddingBottom"), 10);
//assign value of version check to global variable
this.isIE8 = ($(this.options.thisSelector + ":hover").length == ""); //each of these values will always be false in ie8. Hover length has no value.
this.addnotch();
},
getSelector: function () {
//this uses a counter to create a unique class to add to the tooltip
counter.increment();
this.options.thisClass = this.options.thisClass + counter.value();
this.$elem.addClass(this.options.thisClass);
var thisSelector = "." + this.options.thisClass;
return thisSelector;
},
addnotch: function () {
var str = $(this.options.thisTip).html(),
o = this.options,
notch;
//most browsers will convert ' to ", so replace them in notch string for comparison
notch = function () {
while (o.notchTag.indexOf("'") !== -1) {
o.notchTag = o.notchTag.replace("'", "\"");
}
return o.notchTag;
};
this.options.notchTag = notch();
//if notch option is true, and it doesn't already exist
if (o.notch === true && str.indexOf(o.notchTag) === -1) {
$(o.thisTip).append(o.notchTag);
}
this.setAction.addListeners.call(this);
},
//add hover/show event listener
setAction: {
showTooltip: function() {
var o = this.options,
_self = this;
if ($(o.thisTip).css("display") === "none" && (this.isIE8 || $(o.thisSelector + ":hover").length > 0 )) {
_self.getPosition();
} else if ($(o.thisTip).css("opacity") > 0 && $(o.thisTip).css("opacity") < 1) {
window.setTimeout(function () {
_self.show();
}, 200);
}
},
hideTooltip: function() {
var o = this.options,
_self = this;
if ($(o.thisTip).css("display") === "block") {
//the timeout gives the user a chance to leave the selector and mouse over the tooltip
window.setTimeout(function () {
//if the tooltip is not being hovered over and the tooltipHover property has not been set to false, fade out
if (this.isIE8 || ($(o.thisTip + ":hover").length === 0 || !o.tooltipHover)) {
_self.hide();
}
}, 200);
}
},
hideTooltipCheckHover: function() {
var o = this.options,
_self = this;
window.setTimeout(function () {
//if the selector is not being hovered over and the tooltip is visible, fade out
if (_self.isIE8 || ($(o.thisSelector + ":hover").length === 0 && $(o.thisTip).css("opacity") === "1")) {
_self.hide();
}
}, 200);
},
showTooltipClick: function() {
if ($(this.options.thisTip).css("display") === "none") {
this.getPosition();
}
},
hideTooltipClick: function() {
var o = this.options;
console.log("hide");
if ($(o.thisTip).css("display") === "block") {
$(o.thisTip).fadeOut(o.speedOut, function () {
if(typeof o.closeFcn === "function") {
o.closeFcn();
}
o.display = "off";
});
}
},
addListeners: function() {
var o = this.options,
_self = this;
//create hover or click event
if (o.action === "hover") {
_self.$elem.hover(function () { //show/hide tooltip on hover
_self.setAction.showTooltip.call(_self);
}, function () {
_self.setAction.hideTooltip.call(_self);
});
//if the tooltip is moused out... instead of the selector
if (o.tooltipHover === true) {
$(o.thisTip).hover(function () {
}, function () {
_self.setAction.hideTooltipCheckHover.call(_self);
});
}
} else if (o.action === "click") {
_self.$elem.click(function () { //show tooltip on click
if( o.display === "off") {
_self.setAction.showTooltipClick.call(_self);
}
});
if (o.closeOnBkgClick) {
$("body").click(function (event) {
if (o.display === "on") {
if ($(o.thisTip).hasClass(event.target.className) || $(event.target).parents().hasClass($(o.thisTip).attr("class"))) {
return false;
}
_self.setAction.hideTooltipClick.call(_self);
}
});
}
window.onresize = function () {
// if the tooltip is visible and selector is visible, resize
if ( $(o.thisTip).css("display") === "block" && $(o.thisSelector).css("display") !== "none" ) {
// watch performance on reposition
setTimeout(function() {
_self.getPosition(true);
}, 200);
} else if ($(o.thisTip).css("display") === "block" && $(o.thisSelector).css("display") === "none" ){
_self.setAction.hideTooltipClick.call(_self);
}
};
}
}
},
//resets position
getPosition: function (collision) {
var o = this.options;
o.selectorPosition = this.$elem.offset();
//thisPosition is the final top, left position of where the tooltip should be. If not defined, then reset it to the top left of the selector/trigger.
o.thisPosition = this.$elem.offset();
this.setposition(collision);
},
//positions the tooltip on the page, relative to the selector/trigger.
setposition: function (collisionChecked) {
var o = this.options,
_self = this,
orientation,
tipPadding = function (pad1, pad2) {
return parseInt($(o.thisTip).css(pad1), 10) + parseInt($(o.thisTip).css(pad2), 10);
},
//definitions for common positions relative to the trigger.
justAbove = function () {
var topPosition = o.thisPosition.top - $(o.thisTip).height();
topPosition -= tipPadding("paddingTop", "paddingBottom");
topPosition -= $(_self.elem).height() + 12;
o.thisPosition.top = topPosition;
},
goLeft = function () {
o.thisPosition.left += $(_self.elem).width();
o.thisPosition.left -= $(o.thisTip).width();
},
goCenter = function () {
o.thisPosition.left += ($(_self.elem).width() / 2);
o.thisPosition.left -= ($(o.thisTip).width() / 2);
},
goBottom = function () {
o.thisPosition.top += $(_self.elem).height();
};
if (collisionChecked) {
orientation = o.neworientation || o.orientation;
} else {
orientation = o.orientation;
}
//set position based upon given orientation
switch (orientation) {
case "bottomleft":
goBottom();
goLeft();
break;
case "bottomright":
goBottom();
break;
case "bottomcenter":
goBottom();
goCenter();
break;
case "topleft":
justAbove();
goLeft();
break;
case "topright":
justAbove();
break;
case "topcenter":
justAbove();
goCenter();
break;
case "left":
this.options.thisPosition.left -= $(this.options.thisTip).width();
this.options.thisPosition.left -= tipPadding("paddingLeft", "paddingRight");
break;
case "right":
this.options.thisPosition.left += this.$elem.width();
this.options.thisPosition.left += tipPadding("paddingLeft", "paddingRight");
break;
}
//add position criteria to css.
$(this.options.thisTip).css(this.options.thisPosition);
//add orientation to class and remove any old ones
$(this.options.thisTip).removeClass("topcenter topleft topright left right bottomleft bottomcenter bottomright").addClass(orientation);
//if tooltip is already visible, you're done.
if( $(o.thisTip).css("display") === "block" ){
return false;
}
//if collision has already been checked, show tooltip
if (collisionChecked === true || this.options.collision === false) {
this.show();
} else {
this.checkCollision();
}
},
checkCollision: function () {
var _self = this,
containerWidth = parseInt($(this.options.container).css("width"), 10),
//definitions for detecting collisions
collideRight = function () {
return (_self.options.thisPosition.left + _self.tipWidth > containerWidth);
},
collideLeft = function () {
return (_self.options.thisPosition.left < 0);
},
collideTop = function () {
return (_self.options.thisPosition.top < $(window).scrollTop());
},
collideBottom = function () {
return ((_self.options.thisPosition.top + _self.tipHeight) > (window.innerHeight + $(window).scrollTop()));
};
//check to see if there are any collisions, or if collision correction has been disabled, if not, show tooltip.
if ((!collideLeft() && !collideRight() && !collideTop() && !collideBottom())) {
this.show();
//if there are collisions, then reposition the tooltip. Send over where it's currently colliding.
} else {
this.reposition(collideRight(), collideLeft(), collideBottom(), collideTop(), containerWidth);
}
},
//take it's current position and where it's colliding and move it to a different position if available.
reposition: function (right, left, bottom, top, containerWidth) {
//these tests will return true if there is no collision with the specified edge
var o = this.options,
testLeft = (o.selectorPosition.left - this.tipWidth) > 0,
testRight = (o.selectorPosition.left + this.$elem.width() + this.tipWidth) < containerWidth,
//top or bottom left.. the left position of these is less left than the testLeft.
testTBLeft = (o.selectorPosition.left + this.$elem.width() - $(o.thisTip).width()) > 0,
//top or bottom right.. the right position of these is less right than the testright.
testTBRight = (o.selectorPosition.left + this.tipWidth) < containerWidth,
testTop = (o.selectorPosition.top - this.tipHeight) > $(window).scrollTop(),
testBottom = (o.selectorPosition.top + this.tipHeight) < ($(window).scrollTop() + window.innerHeight),
neworientation;
if (right) {
if (o.orientation === "right") {
if (testTBRight && testTop) {
neworientation = "topright";
} else if (testLeft) {
neworientation = "left";
} else if (testTop) {
neworientation = "topcenter";
} else {
neworientation = "bottomcenter";
}
} else if ((neworientation && neworientation === "topright") || o.orientation === "topright") {
if (testTBLeft) {
neworientation = "topleft";
} else {
neworientation = "topcenter";
}
} else if ((neworientation && neworientation === "bottomright") || o.orientation === "bottomright") {
if (testTBLeft) {
neworientation = "bottomleft";
} else {
neworientation = "bottomcenter";
}
}
}
if (left) {
if ((neworientation && neworientation === "left") || o.orientation === "left") {
if (testTBLeft && testTop) {
neworientation = "topleft";
} else if (testRight) {
neworientation = "right";
} else if (testTop) {
neworientation = "topcenter";
} else {
neworientation = "bottomcenter";
}
} else if ((neworientation && neworientation === "topleft") || o.orientation === "topleft") {
if (testTBRight) {
neworientation = "topright";
} else {
neworientation = "topcenter";
}
} else if ((neworientation && neworientation === "bottomleft") || o.orientation === "bottomleft") {
if (testTBRight) {
neworientation = "bottomright";
} else {
neworientation = "bottomcenter";
}
}
}
if (bottom) {
if ((neworientation && (neworientation === "left" || "bottomleft")) || o.orientation === "left" || "bottomleft") {
neworientation = "topleft";
} else if ((neworientation && (neworientation === "right" || "bottomright")) || o.orientation === "right" || "bottomright") {
neworientation = "topright";
} else if ((neworientation && neworientation === "bottomcenter") || o.orientation === "bottomcenter") {
if (testLeft) {
neworientation = "left";
} else if (testRight) {
neworientation = "right";
} else if (testTBLeft) {
neworientation = "topleft";
} else if (testTBRight) {
neworientation = "topright";
} else {
neworientation = "topcenter";
}
}
}
if (top) {
if ((neworientation && (neworientation === "left" || "topleft")) || o.orientation === "left" || "topleft") {
if (testBottom) {
neworientation = "bottomleft";
}
}
if ((neworientation && (neworientation === "right" || "topright")) || o.orientation === "right" || "topright") {
if (testBottom) {
neworientation = "bottomright";
}
}
if ((neworientation && neworientation === "topcenter") || o.orientation === "topcenter") {
if (testLeft) {
neworientation = "left";
} else if (testRight) {
neworientation = "right";
} else if (testTBLeft) {
neworientation = "bottomleft";
} else if (testTBRight) {
neworientation = "bottomright";
} else {
neworientation = "bottomcenter";
}
}
}
if (neworientation) {
this.options.neworientation = neworientation;
}
//this will reset all of the positioning and then reapply in the positioning step that follows.
this.getPosition(true);
},
show: function () {
var _self = this,
o = this.options;
//checking again to see if the mouse is hovered over selector.
if (this.isIE8 || ($(o.thisSelector + ":hover").length > 0 && $(o.thisTip).css("display") === "none")) {
$(o.thisTip).fadeIn(o.speedIn, function () {
if (o.action === "click") {
o.display = "on";
}
// execute function after tooltip is opened
if(typeof o.openFcn === "function") {
o.openFcn();
}
});
}
},
hide: function () {
var o = this.options;
$(o.thisTip).fadeOut(o.speedOut, function () {
if (typeof o.closeFcn === "function") {
o.closeFcn();
}
});
},
init: function (options, elem) {
// Mix in the passed-in options with the default options
this.options = $.extend({}, this.options, options);
// Save reference to the element
this.elem = elem;
this.$elem = $(elem);
this.tipBuilt = false;
this.setoptions();
// Return this for chaining / prototyping
return this;
}
};
// register tooltip object as a $ plugin
$.plugin(tooltip.name, tooltip);