This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
context-menu.js
231 lines (194 loc) · 6.89 KB
/
context-menu.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
/**
* @author Chris Board - Boardies IT Solutons
* @description Creates a 3-dot context menu on tables, <p> tags and heading tags (e.g. h1, h2 etc).
* @copyright (c) Boardies IT Solutions - December 2017
*/
$(document).mouseup(function (e) {
var div = $(".context-menu-container");
if (!div.is(e.target) && div.has(e.target).length === 0)
{
div.hide();
}
});
function ContextMenu(contextContainerID, menuItemClickCallback, options)
{
this.contextContainerID = contextContainerID;
this.contextMenuContainer = $('.context-menu[data-container-id="'+contextContainerID+'"]');
var self = this;
var parent = $(this);
this.contextMenuContainer.click(function(e){
var parent = $(this);
//var menuPos = $(this).offset();
//Show hide the context menu
var contextMenuID = "#" + $(this).attr("data-container-id");
var contextMenu = $(contextMenuID);
self.contextMenu = contextMenu;
//Use e.clientX get the cursor position and subtract the context menu width so that it appears on the left of
//the cursor, minus another 15 take the extra padding into account so the menu doesn't appear
//directly under the cursor
var menuPos = {left: e.clientX - contextMenu.width() - 15, top: contextMenu.offset().top + e.clientY};
if (!isElementInViewport(contextMenu)) {
alert("View not visible");
var rightEdgePos = contextMenu.width() + contextMenu.offset().left;
var screenWidth = $(window).width();
var leftShiftOver = menuPos.left - (screenWidth - rightEdgePos);
var showPos = menuPos.left - leftShiftOver - 10; //Subtract an extra 10 so it has some margin space
contextMenu.css({top: menuPos.top, left: showPos, position: 'absolute'});
}
else
{
contextMenu.css({top: menuPos.top, left: menuPos.left, position: 'absolute'});
}
if (options != null && typeof options !== "undefined" )
{
if (typeof options.openCallBack !== "undefined")
{
options.openCallBack(self, parent);
}
}
//Remove the click event otherwise a new one keep getting created, so an additional call event will be called
//each time the menu opens and closes
contextMenu.find("ul > li").unbind("click");
contextMenu.find("ul > li").click(function(){
if (!$(this).hasClass("disabled")) {
menuItemClickCallback($(this), parent);
contextMenu.hide();
}
});
contextMenu.show();
return false;
});
this.destroy = function() {
this.contextMenuContainer.unbind("click");
};
this.returnContextMenu = function(){
var contextMenu = null;
if (typeof self.contextMenu !== "undefined")
{
contextMenu = self.contextMenu;
}
else
{
var contextMenuContainer = $('.context-menu[data-container-id="'+this.contextContainerID+'"]');
var contextMenuID = "#" + contextMenuContainer.attr("data-container-id");
contextMenu = $(contextMenuID);
}
return contextMenu;
};
this.disableMenuItem = function(item){
var count = 0;
var contextMenu = this.returnContextMenu();
var itemCounter = contextMenu.find("ul > li").length;
contextMenu.find("ul > li").each(function(){
if (typeof item === "number")
{
if (item < 0 || item > itemCounter)
{
throw "3Dot-ContextMenu: Item index is out of bounds";
}
if (count === item)
{
$(this).addClass("disabled");
}
}
else if (typeof item === "string")
{
if ($(this).text() === item)
{
$(this).addClass("disabled");
}
}
count++;
});
};
this.enableMenuItem = function(item){
var count = 0;
var contextMenu = this.returnContextMenu();
var itemCount = contextMenu.find("ul > li").length;
contextMenu.find("ul > li").each(function(){
if (typeof item === "number")
{
if (item < 0 || item > itemCount)
{
throw "3Dot-ContextMenu: Item index is out of bounds";
}
if (count === item)
{
$(this).removeClass("disabled");
}
}
else if (typeof item === "string")
{
if ($(this).text() === item)
{
$(this).removeClass("disabled");
}
}
count++;
});
};
this.hideMenuItem = function(item){
var count = 0;
var contextMenu = this.returnContextMenu();
var itemCounter = contextMenu.find("ul > li").length;
contextMenu.find("ul > li").each(function(){
if (typeof item === "number")
{
if (item < 0 || item > itemCounter)
{
throw "3Dot-ContextMenu: Item index out of bounds";
}
if (count === item)
{
$(this).hide();
}
}
else if (typeof item === "string")
{
if ($(this).text() === item)
{
$(this).hide();
}
}
count++;
});
};
this.showMenuItem = function(item) {
var count = 0;
var contextMenu = this.returnContextMenu();
var itemCounter = contextMenu.find("ul > li").length;
contextMenu.find("ul > li").each(function(){
if (typeof item === "number")
{
if (item < 0 | item > itemCounter)
{
throw "3Dot-ContextMenu: Item index out of bounds";
}
if (count === item)
{
$(this).show();
}
}
else if (typeof item === "string")
{
if ($(this).text() === item)
{
$(this).show();
}
}
});
}
}
function isElementInViewport (el) {
//special bonus for those using jQuery
if (typeof jQuery === "function" && el instanceof jQuery) {
el = el[0];
}
var rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /*or $(window).height() */
rect.right <= (window.innerWidth || document.documentElement.clientWidth) /*or $(window).width() */
);
}