').text(x)));
+ elem = div.replace('xxxx', x);
+ $('#' + cmds[i]).append($(elem).text(x));
+ } else if (i === cmds.length - 2) {
+ elem = div.replace('xxxx', x);
+ $('#' + cmds[i]).append($(elem).addClass(mcopy.state.sequence.pads[cmds[i]]));
} else {
- $('#' + cmds[i]).append($(check).addClass(mcopy.state.sequence.pads[cmds[i]]));
+ elem = check.replace('xxxx', x);
+ $('#' + cmds[i]).append($(elem).addClass(mcopy.state.sequence.pads[cmds[i]]));
}
gui.grid.state(x);
}
@@ -140,66 +445,221 @@ gui.grid.refresh = function () {
};
gui.grid.click = function (t) {
'use strict';
- var i = parseInt($(t).attr('x'));
+ var i = parseInt($(t).attr('x')),
+ cmd;
if ($(t).prop('checked')) {
- mcopy.log( $(t).attr('class').replace('.', ''));
- mcopy.state.sequence.arr[i] = $(t).attr('class').replace('.', '');
- gui.grid.state(i);
+ cmd = $(t).attr('class').replace('.', '');
+ mcopy.state.sequence.arr[i] = cmd;
+ if (cmd === 'CF'
+ || cmd === 'CB') {
+ mcopy.state.sequence.light[i] = light.color.join(',');
+ } else {
+ mcopy.state.sequence.light[i] = '';
+ }
} else {
mcopy.state.sequence.arr[i] = undefined;
delete mcopy.state.sequence.arr[i];
}
- mcopy.seq.stats();
+ gui.grid.state(i);
+ seq.stats();
};
gui.grid.clear = function () {
'use strict';
var doit = confirm('Are you sure you want to clear this sequence?');
if (doit) {
- mcopy.seq.clear();
+ seq.clear();
gui.grid.refresh();
- mcopy.seq.stats();
- mcopy.log('Sequencer cleared');
+ seq.stats();
+ console.log('Sequencer cleared');
}
};
gui.grid.loopChange = function (t) {
'use strict';
- count = parseInt(t.value);
+ var count = parseInt(t.value);
mcopy.loop = count;
- mcopy.log('Loop count set to ' + mcopy.loop);
- mcopy.seq.stats();
+ console.log('Loop count set to ' + mcopy.loop);
+ seq.stats();
};
gui.grid.plus_24 = function () {
'use strict';
mcopy.state.sequence.size += 24;
gui.grid.refresh();
- mcopy.log('Sequencer expanded to ' + mcopy.state.sequence.size + ' steps');
+ console.log('Sequencer expanded to ' + mcopy.state.sequence.size + ' steps');
+};
+gui.grid.setLight = function (x, rgb) {
+ 'use strict';
+ mcopy.state.sequence.light[x] = rgb.join(',');
+ gui.grid.state(x);
+};
+gui.grid.blackout = function (t) {
+ var elem = $(t),
+ i = elem.attr('x');
+ if (typeof mcopy.state.sequence.light[i] === 'undefined') {
+ return false;
+ }
+ if (mcopy.state.sequence.light[i] === '0,0,0') {
+ gui.grid.setLight(i, light.color);
+ } else {
+ gui.grid.setLight(i, [0, 0, 0]);
+ }
+};
+gui.grid.changeAll = function () {
+ 'use strict';
+ var rgb = $('.w2ui-msg-body .default').attr('color').split(','),
+ i;
+ for (i = 0; i < mcopy.state.sequence.arr.length; i++) {
+ if (mcopy.state.sequence.arr[i] === 'CF'
+ || mcopy.state.sequence.arr[i] === 'CB') {
+ gui.grid.setLight(i, rgb);
+ }
+ }
+};
+gui.grid.swatches = function (x) {
+ 'use strict';
+ var current = mcopy.state.sequence.light[x];
+ gui.grid.swatchesElem = w2popup.open({
+ title : 'Select Color',
+ body : $('#light-swatches').html(),
+ buttons : '
',
+ onClose : function () {
+
+ //
+ }
+ });
+ $('.w2ui-msg-body .swatch').removeClass('default set');
+ $('.w2ui-msg-body .swatch[color="' + current + '"').eq(0).addClass('default set');
+
+ $('#sequencer-cancel').on('click', function () {
+ gui.grid.swatchesElem.close();
+ });
+ $('#sequencer-changeall').on('click', function () {
+ var doit = confirm('You sure you want to change all light settings?');
+ if (doit) {
+ gui.grid.changeAll();
+ gui.grid.swatchesElem.close();
+ }
+ });
+ $('#sequencer-ok').on('click', function () {
+ var rgb = $('.w2ui-msg-body .default').attr('color').split(',');
+ gui.grid.setLight(x, rgb);
+ light.color = rgb;
+ gui.grid.swatchesElem.close();
+ });
+};
+gui.grid.scrollTo = function (i) {
+ 'use strict';
+ var w = 35 + 3; //width of pad + margin
+ $('#seq_scroll').scrollLeft(i * w);
};
gui.grid.events = function () {
'use strict';
- $(document.body).on('click', 'input[type=checkbox]', function () {
+ $(document.body).on('click', '#sequencer input[type=checkbox]', function () {
gui.grid.click(this);
});
+ //$(document.body).on('click', '.L', function () {
+ //alert('click');
+ //console.log('please dont happen');
+ //});
+ $(document.body).on('dblclick', '.L', function () {
+ gui.grid.blackout(this);
+ });
+ $(document.body).on('contextmenu', '.L', function (e) {
+ var x = e.target.attributes.x.value;
+ setTimeout(function () {
+ gui.grid.swatches(x);
+ }, 300);
+ e.preventDefault();
+ return false;
+ });
+ $('#seq_scroll').on('scroll', function () {
+ var i = Math.ceil($('#seq_scroll').scrollLeft() / (35 + 3));
+ $('#seq_scroll_state').val(gui.fmtZero(i, 6));
+ });
+ $('#seq_scroll_state').on('change', function () {
+ var i = parseInt($(this).val());
+ $(this).val(gui.fmtZero(i, 6));
+ gui.grid.scrollTo(i);
+ });
+ $(document.body).on('click', '.w2ui-msg-body .swatch', function () {
+ var color = $(this).attr('color'),
+ title = $(this).attr('title');
+ if (typeof color !== 'undefined') {
+ color = color.split(',');
+ $('.w2ui-msg-body .swatch').removeClass('default set');
+ $('#light-swatches .swatch').removeClass('default set');
+ $(this).addClass('default set');
+ $('#light-swatches .swatch[title="' + title + '"]').eq(0).addClass('default set');
+ light.color = color;
+ }
+ });
};
//LIGHT
-light.preview = false;
-light.color = [0, 0, 0]; //preview status
+light.preview_state = false; //light is on/off for preview viewing
+light.color = [255, 255, 255]; //default color
light.current = [0, 0, 0]; //last sent
+light.rgb_on = false;
light.icon = {};
+light.swatches = [
+ {
+ rgb : [0, 0, 0],
+ name : 'off'
+ },
+ {
+ rgb : [255, 255, 255],
+ name : 'white (LED)'
+ },
+ {
+ rgb : chroma.kelvin(2500).rgb(),
+ name : '2500 kelvin'
+ },
+ {
+ rgb : chroma.kelvin(5600).rgb(),
+ name : '5600 kelvin'
+ },
+ {
+ rgb : light.color,
+ set : true,
+ default : true
+ }
+];
+light.queue = {};
+light.lock = false;
light.init = function () {
'use strict';
+ light.listen();
+
+ //create dynamic style for displaying light across screens
light.icon = document.createElement('style');
light.icon.innerHTML = 'span.mcopy-light{background-color: #000;}';
document.body.appendChild(light.icon);
+ light.colorPickers();
+ light.swatch.init();
+
+ light.display(light.current);
+
+ $('#preview').on('change', function () {
+ light.preview_state = $(this).prop('checked');
+ if (light.preview_state) {
+ light.display(light.color);
+ light.set(light.color);
+ } else {
+ light.display([0,0,0]);
+ light.set([0,0,0]);
+ }
+ });
+};
+light.colorPickers = function () {
+ 'use strict';
$('#colors-tabs').w2tabs({
name: 'colors',
active: 'rgb',
tabs: [
- { id: 'rgb', caption: 'RGB' },
+ { id: 'kelvin', caption: 'Kelvin'},
{ id: 'cmy', caption: 'CMY'},
- { id: 'kelvin', caption: 'Kelvin'}
+ { id: 'rgb', caption: 'RGB' }
],
onClick: function (event) {
//$('#colors-content').html('Tab: ' + event.target);
@@ -256,33 +716,63 @@ light.init = function () {
//console.dir(type);
var a = colors.RND.rgb,
rgb = [a.r, a.g, a.b];
- light.color = rgb;
- if (light.preview) {
- light.display(rgb);
- light.set(rgb);
- }
-
+ light.preview(rgb);
}
});
- light.display([0, 0, 0]);
- $('#preview').on('change', function () {
- light.preview = $(this).prop('checked');
- if (light.preview) {
- light.display(light.color);
- light.set(light.color);
- } else {
- light.display([0,0,0]);
- light.set([0,0,0]);
+};
+light.set = function (rgb, callback) { //rgb = [0,0,0]
+ 'use strict';
+ var obj;
+
+ if (light.lock) {
+ //potential for logging overlapping commands
+ return false;
+ }
+
+ obj = {
+ rgb : rgb,
+ id : uuid.v4()
+ };
+ ipcRenderer.sendSync('light', obj);
+
+ if (typeof callback !== 'undefined') {
+ obj.callback = callback;
+ }
+ light.queue[obj.id] = obj;
+ light.current = rgb;
+ light.lock = true;
+};
+light.end = function (id) {
+ 'use strict';
+ if (typeof light.queue[id] !== 'undefined') {
+ if (typeof light.queue[id].callback !== 'undefined') {
+ light.queue[id].callback();
}
+ delete light.queue[id];
+ light.lock = false;
+ }
+}
+light.listen = function () {
+ 'use strict';
+ ipcRenderer.on('light', function (event, arg) {
+ light.end(arg.id);
+ return event.returnValue = true;
});
};
-//rgb = [0,0,0]
-light.set = function (rgb) {
+light.preview = function (rgb) {
'use strict';
- light.current = rgb;
- return ipcRenderer.sendSync('light', rgb);
+ var rgbStr = 'rgb(' + rgb.join(',') + ')';
+ light.color = rgb;
+ $('#light-swatches .swatch.set').css('background', rgbStr)
+ .attr('color', rgb.join(','))
+ .prop('title', rgbStr);
+
+ if (light.preview_state) {
+ light.display(rgb);
+ light.set(rgb);
+ }
};
-light.display = function (rgb) {
+light.display = function (rgb) { //display light active state
'use strict';
var str,
i;
@@ -296,14 +786,65 @@ light.display = function (rgb) {
light.icon.deleteRule(0);
light.icon.insertRule('span.mcopy-light{background-color: ' + str + ';}', 0)
};
-light.color_on = false;
light.color_init = function () {
'use strict';
- if (!light.color_on) {
+ if (!light.rgb_on) {
$('#rgb').focus();
- light.color_on = true;
+ light.rgb_on = true;
}
};
+light.swatch = {};
+light.swatch.init = function () {
+ 'use strict';
+ var number = 12,
+ add,
+ elem,
+ rgb,
+ i,
+ x;
+ for (i = 0; i < light.swatches.length; i++) {
+ for (x = 0; x < 3; x++) {
+ light.swatches[i].rgb[x] = Math.floor(light.swatches[i].rgb[x]);
+ }
+ rgb = 'rgb(' + light.swatches[i].rgb.join(',') + ')';
+ elem = $('
');
+ elem.css('background', rgb);
+ elem.attr('color', light.swatches[i].rgb.join(','));
+ if (typeof light.swatches[i].name !== 'undefined') {
+ elem.prop('title', light.swatches[i].name);
+ } else {
+ elem.prop('title', rgb);
+ }
+ if (light.swatches[i].default) {
+ elem.addClass('default');
+ }
+ if (light.swatches[i].set) {
+ elem.addClass('set');
+ }
+ $('#new-swatch').before(elem);
+ }
+ $('#new-swatch').on('click', light.swatch.add);
+ $(document.body).on('click', '#light-swatches .swatch', function () {
+ var rgb = $(this).attr('color');
+ if (typeof color !== 'undefined') {
+ rgb = rgb.split(',');
+ $('#light-swatches .swatch').removeClass('default set');
+ $(this).addClass('default set');
+ light.preview(rgb);
+ }
+ });
+ $(document.body).on('dblclick', '.swatch', function () {
+
+ });
+};
+light.swatch.add = function () {
+ 'use strict';
+ var swatch = $('
');
+ $('#light-swatches .swatch').removeClass('default set');
+ $('#new-swatch').before(swatch);
+ light.preview(light.color);
+};
+
nav.init = function () {
'use strict';
@@ -336,7 +877,7 @@ nav.change = function (id) {
var init = function () {
'use strict';
nav.init();
- gui.grid.layout();
log.init();
+ gui.grid.init();
light.init();
};
\ No newline at end of file
diff --git a/app/src/jquery.contextMenu.min.js b/app/src/jquery.contextMenu.min.js
new file mode 100644
index 0000000..e0ee35b
--- /dev/null
+++ b/app/src/jquery.contextMenu.min.js
@@ -0,0 +1,18 @@
+/*!
+ * jQuery contextMenu v2.1.1 - Plugin for simple contextMenu handling
+ *
+ * Version: v2.1.1
+ *
+ * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
+ * Web: http://swisnl.github.io/jQuery-contextMenu/
+ *
+ * Copyright (c) 2011-2016 SWIS BV and contributors
+ *
+ * Licensed under
+ * MIT License http://www.opensource.org/licenses/mit-license
+ * GPL v3 http://opensource.org/licenses/GPL-3.0
+ *
+ * Date: 2016-04-08T15:05:16.920Z
+ */
+!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):e("object"==typeof exports?require("jquery"):jQuery)}(function(e){"use strict";function t(e){for(var t,n=e.split(/\s+/),a=[],o=0;t=n[o];o++)t=t.charAt(0).toUpperCase(),a.push(t);return a}function n(t){return t.id&&e('label[for="'+t.id+'"]').val()||t.name}function a(t,o,s){return s||(s=0),o.each(function(){var o,i,c=e(this),r=this,l=this.nodeName.toLowerCase();switch("label"===l&&c.find("input, textarea, select").length&&(o=c.text(),c=c.children().first(),r=c.get(0),l=r.nodeName.toLowerCase()),l){case"menu":i={name:c.attr("label"),items:{}},s=a(i.items,c.children(),s);break;case"a":case"button":i={name:c.text(),disabled:!!c.attr("disabled"),callback:function(){return function(){c.click()}}()};break;case"menuitem":case"command":switch(c.attr("type")){case void 0:case"command":case"menuitem":i={name:c.attr("label"),disabled:!!c.attr("disabled"),icon:c.attr("icon"),callback:function(){return function(){c.click()}}()};break;case"checkbox":i={type:"checkbox",disabled:!!c.attr("disabled"),name:c.attr("label"),selected:!!c.attr("checked")};break;case"radio":i={type:"radio",disabled:!!c.attr("disabled"),name:c.attr("label"),radio:c.attr("radiogroup"),value:c.attr("id"),selected:!!c.attr("checked")};break;default:i=void 0}break;case"hr":i="-------";break;case"input":switch(c.attr("type")){case"text":i={type:"text",name:o||n(r),disabled:!!c.attr("disabled"),value:c.val()};break;case"checkbox":i={type:"checkbox",name:o||n(r),disabled:!!c.attr("disabled"),selected:!!c.attr("checked")};break;case"radio":i={type:"radio",name:o||n(r),disabled:!!c.attr("disabled"),radio:!!c.attr("name"),value:c.val(),selected:!!c.attr("checked")};break;default:i=void 0}break;case"select":i={type:"select",name:o||n(r),disabled:!!c.attr("disabled"),selected:c.val(),options:{}},c.children().each(function(){i.options[this.value]=e(this).text()});break;case"textarea":i={type:"textarea",name:o||n(r),disabled:!!c.attr("disabled"),value:c.val()};break;case"label":break;default:i={type:"html",html:c.clone(!0)}}i&&(s++,t["key"+s]=i)}),s}e.support.htmlMenuitem="HTMLMenuItemElement"in window,e.support.htmlCommand="HTMLCommandElement"in window,e.support.eventSelectstart="onselectstart"in document.documentElement,e.ui&&e.widget||(e.cleanData=function(t){return function(n){var a,o,s;for(s=0;null!=n[s];s++){o=n[s];try{a=e._data(o,"events"),a&&a.remove&&e(o).triggerHandler("remove")}catch(i){}}t(n)}}(e.cleanData));var o=null,s=!1,i=e(window),c=0,r={},l={},u={},d={selector:null,appendTo:null,trigger:"right",autoHide:!1,delay:200,reposition:!0,classNames:{hover:"context-menu-hover",disabled:"context-menu-disabled",visible:"context-menu-visible",notSelectable:"context-menu-not-selectable",icon:"context-menu-icon",iconEdit:"context-menu-icon-edit",iconCut:"context-menu-icon-cut",iconCopy:"context-menu-icon-copy",iconPaste:"context-menu-icon-paste",iconDelete:"context-menu-icon-delete",iconAdd:"context-menu-icon-add",iconQuit:"context-menu-icon-quit"},determinePosition:function(t){if(e.ui&&e.ui.position)t.css("display","block").position({my:"center top",at:"center bottom",of:this,offset:"0 5",collision:"fit"}).css("display","none");else{var n=this.offset();n.top+=this.outerHeight(),n.left+=this.outerWidth()/2-t.outerWidth()/2,t.css(n)}},position:function(e,t,n){var a;if(!t&&!n)return void e.determinePosition.call(this,e.$menu);a="maintain"===t&&"maintain"===n?e.$menu.position():{top:n,left:t};var o=i.scrollTop()+i.height(),s=i.scrollLeft()+i.width(),c=e.$menu.outerHeight(),r=e.$menu.outerWidth();a.top+c>o&&(a.top-=c),a.top<0&&(a.top=0),a.left+r>s&&(a.left-=r),a.left<0&&(a.left=0),e.$menu.css(a)},positionSubmenu:function(t){if(e.ui&&e.ui.position)t.css("display","block").position({my:"left top",at:"right top",of:this,collision:"flipfit fit"}).css("display","");else{var n={top:0,left:this.outerWidth()};t.css(n)}},zIndex:1,animation:{duration:50,show:"slideDown",hide:"slideUp"},events:{show:e.noop,hide:e.noop},callback:null,items:{}},m={timer:null,pageX:null,pageY:null},p=function(e){for(var t=0,n=e;;)if(t=Math.max(t,parseInt(n.css("z-index"),10)||0),n=n.parent(),!n||!n.length||"html body".indexOf(n.prop("nodeName").toLowerCase())>-1)break;return t},f={abortevent:function(e){e.preventDefault(),e.stopImmediatePropagation()},contextmenu:function(t){var n=e(this);if("right"===t.data.trigger&&(t.preventDefault(),t.stopImmediatePropagation()),!("right"!==t.data.trigger&&"demand"!==t.data.trigger&&t.originalEvent||!(void 0===t.mouseButton||!t.data||"left"===t.data.trigger&&0===t.mouseButton||"right"===t.data.trigger&&2===t.mouseButton)||n.hasClass("context-menu-active")||n.hasClass("context-menu-disabled"))){if(o=n,t.data.build){var a=t.data.build(o,t);if(a===!1)return;if(t.data=e.extend(!0,{},d,t.data,a||{}),!t.data.items||e.isEmptyObject(t.data.items))throw window.console&&(console.error||console.log).call(console,"No items specified to show in contextMenu"),new Error("No Items specified");t.data.$trigger=o,h.create(t.data)}var s=!1;for(var i in t.data.items)if(t.data.items.hasOwnProperty(i)){var c;c=e.isFunction(t.data.items[i].visible)?t.data.items[i].visible.call(e(t.currentTarget),i,t.data):"undefined"!=typeof i.visible?t.data.items[i].visible===!0:!0,c&&(s=!0)}if(s){var r=e(null===t.data.appendTo?"body":t.data.appendTo),l=t.target||t.srcElement||t.originalTarget;void 0!==t.offsetX&&void 0!==t.offsetY?h.show.call(n,t.data,e(l).offset().left-r.offset().left+t.offsetX,e(l).offset().top-r.offset().top+t.offsetY):h.show.call(n,t.data,t.pageX,t.pageY)}}},click:function(t){t.preventDefault(),t.stopImmediatePropagation(),e(this).trigger(e.Event("contextmenu",{data:t.data,pageX:t.pageX,pageY:t.pageY}))},mousedown:function(t){var n=e(this);o&&o.length&&!o.is(n)&&o.data("contextMenu").$menu.trigger("contextmenu:hide"),2===t.button&&(o=n.data("contextMenuActive",!0))},mouseup:function(t){var n=e(this);n.data("contextMenuActive")&&o&&o.length&&o.is(n)&&!n.hasClass("context-menu-disabled")&&(t.preventDefault(),t.stopImmediatePropagation(),o=n,n.trigger(e.Event("contextmenu",{data:t.data,pageX:t.pageX,pageY:t.pageY}))),n.removeData("contextMenuActive")},mouseenter:function(t){var n=e(this),a=e(t.relatedTarget),s=e(document);a.is(".context-menu-list")||a.closest(".context-menu-list").length||o&&o.length||(m.pageX=t.pageX,m.pageY=t.pageY,m.data=t.data,s.on("mousemove.contextMenuShow",f.mousemove),m.timer=setTimeout(function(){m.timer=null,s.off("mousemove.contextMenuShow"),o=n,n.trigger(e.Event("contextmenu",{data:m.data,pageX:m.pageX,pageY:m.pageY}))},t.data.delay))},mousemove:function(e){m.pageX=e.pageX,m.pageY=e.pageY},mouseleave:function(t){var n=e(t.relatedTarget);if(!n.is(".context-menu-list")&&!n.closest(".context-menu-list").length){try{clearTimeout(m.timer)}catch(t){}m.timer=null}},layerClick:function(t){var n,a,o=e(this),s=o.data("contextMenuRoot"),c=t.button,r=t.pageX,l=t.pageY;t.preventDefault(),t.stopImmediatePropagation(),setTimeout(function(){var o,u="left"===s.trigger&&0===c||"right"===s.trigger&&2===c;if(document.elementFromPoint&&s.$layer&&(s.$layer.hide(),n=document.elementFromPoint(r-i.scrollLeft(),l-i.scrollTop()),s.$layer.show()),s.reposition&&u)if(document.elementFromPoint){if(s.$trigger.is(n)||s.$trigger.has(n).length)return void s.position.call(s.$trigger,s,r,l)}else if(a=s.$trigger.offset(),o=e(window),a.top+=o.scrollTop(),a.top<=t.pageY&&(a.left+=o.scrollLeft(),a.left<=t.pageX&&(a.bottom=a.top+s.$trigger.outerHeight(),a.bottom>=t.pageY&&(a.right=a.left+s.$trigger.outerWidth(),a.right>=t.pageX))))return void s.position.call(s.$trigger,s,r,l);n&&u&&s.$trigger.one("contextmenu:hidden",function(){e(n).contextMenu({x:r,y:l,button:c})}),s.$menu.trigger("contextmenu:hide")},50)},keyStop:function(e,t){t.isInput||e.preventDefault(),e.stopPropagation()},key:function(e){var t={};o&&(t=o.data("contextMenu")||{}),void 0===t.zIndex&&(t.zIndex=0);var n=0,a=function(e){""!==e.style.zIndex?n=e.style.zIndex:null!==e.offsetParent&&void 0!==e.offsetParent?a(e.offsetParent):null!==e.parentElement&&void 0!==e.parentElement&&a(e.parentElement)};if(a(e.target),!(n>t.zIndex)){switch(e.keyCode){case 9:case 38:if(f.keyStop(e,t),t.isInput){if(9===e.keyCode&&e.shiftKey)return e.preventDefault(),t.$selected&&t.$selected.find("input, textarea, select").blur(),void t.$menu.trigger("prevcommand");if(38===e.keyCode&&"checkbox"===t.$selected.find("input, textarea, select").prop("type"))return void e.preventDefault()}else if(9!==e.keyCode||e.shiftKey)return void t.$menu.trigger("prevcommand");break;case 40:if(f.keyStop(e,t),!t.isInput)return void t.$menu.trigger("nextcommand");if(9===e.keyCode)return e.preventDefault(),t.$selected&&t.$selected.find("input, textarea, select").blur(),void t.$menu.trigger("nextcommand");if(40===e.keyCode&&"checkbox"===t.$selected.find("input, textarea, select").prop("type"))return void e.preventDefault();break;case 37:if(f.keyStop(e,t),t.isInput||!t.$selected||!t.$selected.length)break;if(!t.$selected.parent().hasClass("context-menu-root")){var s=t.$selected.parent().parent();return t.$selected.trigger("contextmenu:blur"),void(t.$selected=s)}break;case 39:if(f.keyStop(e,t),t.isInput||!t.$selected||!t.$selected.length)break;var i=t.$selected.data("contextMenu")||{};if(i.$menu&&t.$selected.hasClass("context-menu-submenu"))return t.$selected=null,i.$selected=null,void i.$menu.trigger("nextcommand");break;case 35:case 36:return t.$selected&&t.$selected.find("input, textarea, select").length?void 0:((t.$selected&&t.$selected.parent()||t.$menu).children(":not(."+t.classNames.disabled+", ."+t.classNames.notSelectable+")")[36===e.keyCode?"first":"last"]().trigger("contextmenu:focus"),void e.preventDefault());case 13:if(f.keyStop(e,t),t.isInput){if(t.$selected&&!t.$selected.is("textarea, select"))return void e.preventDefault();break}return void("undefined"!=typeof t.$selected&&null!==t.$selected&&t.$selected.trigger("mouseup"));case 32:case 33:case 34:return void f.keyStop(e,t);case 27:return f.keyStop(e,t),void t.$menu.trigger("contextmenu:hide");default:var c=String.fromCharCode(e.keyCode).toUpperCase();if(t.accesskeys&&t.accesskeys[c])return void t.accesskeys[c].$node.trigger(t.accesskeys[c].$menu?"contextmenu:focus":"mouseup")}e.stopPropagation(),"undefined"!=typeof t.$selected&&null!==t.$selected&&t.$selected.trigger(e)}},prevItem:function(t){t.stopPropagation();var n=e(this).data("contextMenu")||{},a=e(this).data("contextMenuRoot")||{};if(n.$selected){var o=n.$selected;n=n.$selected.parent().data("contextMenu")||{},n.$selected=o}for(var s=n.$menu.children(),i=n.$selected&&n.$selected.prev().length?n.$selected.prev():s.last(),c=i;i.hasClass(a.classNames.disabled)||i.hasClass(a.classNames.notSelectable)||i.is(":hidden");)if(i=i.prev().length?i.prev():s.last(),i.is(c))return;n.$selected&&f.itemMouseleave.call(n.$selected.get(0),t),f.itemMouseenter.call(i.get(0),t);var r=i.find("input, textarea, select");r.length&&r.focus()},nextItem:function(t){t.stopPropagation();var n=e(this).data("contextMenu")||{},a=e(this).data("contextMenuRoot")||{};if(n.$selected){var o=n.$selected;n=n.$selected.parent().data("contextMenu")||{},n.$selected=o}for(var s=n.$menu.children(),i=n.$selected&&n.$selected.next().length?n.$selected.next():s.first(),c=i;i.hasClass(a.classNames.disabled)||i.hasClass(a.classNames.notSelectable)||i.is(":hidden");)if(i=i.next().length?i.next():s.first(),i.is(c))return;n.$selected&&f.itemMouseleave.call(n.$selected.get(0),t),f.itemMouseenter.call(i.get(0),t);var r=i.find("input, textarea, select");r.length&&r.focus()},focusInput:function(){var t=e(this).closest(".context-menu-item"),n=t.data(),a=n.contextMenu,o=n.contextMenuRoot;o.$selected=a.$selected=t,o.isInput=a.isInput=!0},blurInput:function(){var t=e(this).closest(".context-menu-item"),n=t.data(),a=n.contextMenu,o=n.contextMenuRoot;o.isInput=a.isInput=!1},menuMouseenter:function(){var t=e(this).data().contextMenuRoot;t.hovering=!0},menuMouseleave:function(t){var n=e(this).data().contextMenuRoot;n.$layer&&n.$layer.is(t.relatedTarget)&&(n.hovering=!1)},itemMouseenter:function(t){var n=e(this),a=n.data(),o=a.contextMenu,s=a.contextMenuRoot;return s.hovering=!0,t&&s.$layer&&s.$layer.is(t.relatedTarget)&&(t.preventDefault(),t.stopImmediatePropagation()),(o.$menu?o:s).$menu.children("."+s.classNames.hover).trigger("contextmenu:blur").children(".hover").trigger("contextmenu:blur"),n.hasClass(s.classNames.disabled)||n.hasClass(s.classNames.notSelectable)?void(o.$selected=null):void n.trigger("contextmenu:focus")},itemMouseleave:function(t){var n=e(this),a=n.data(),o=a.contextMenu,s=a.contextMenuRoot;return s!==o&&s.$layer&&s.$layer.is(t.relatedTarget)?("undefined"!=typeof s.$selected&&null!==s.$selected&&s.$selected.trigger("contextmenu:blur"),t.preventDefault(),t.stopImmediatePropagation(),void(s.$selected=o.$selected=o.$node)):void n.trigger("contextmenu:blur")},itemClick:function(t){var n,a=e(this),o=a.data(),s=o.contextMenu,i=o.contextMenuRoot,c=o.contextMenuKey;if(s.items[c]&&!a.is("."+i.classNames.disabled+", .context-menu-submenu, .context-menu-separator, ."+i.classNames.notSelectable)){if(t.preventDefault(),t.stopImmediatePropagation(),e.isFunction(i.callbacks[c])&&Object.prototype.hasOwnProperty.call(i.callbacks,c))n=i.callbacks[c];else{if(!e.isFunction(i.callback))return;n=i.callback}n.call(i.$trigger,c,i)!==!1?i.$menu.trigger("contextmenu:hide"):i.$menu.parent().length&&h.update.call(i.$trigger,i)}},inputClick:function(e){e.stopImmediatePropagation()},hideMenu:function(t,n){var a=e(this).data("contextMenuRoot");h.hide.call(a.$trigger,a,n&&n.force)},focusItem:function(t){t.stopPropagation();var n=e(this),a=n.data(),o=a.contextMenu,s=a.contextMenuRoot;n.addClass([s.classNames.hover,s.classNames.visible].join(" ")).parent().find(".context-menu-item").not(n).removeClass(s.classNames.visible).filter("."+s.classNames.hover).trigger("contextmenu:blur"),o.$selected=s.$selected=n,o.$node&&s.positionSubmenu.call(o.$node,o.$menu)},blurItem:function(t){t.stopPropagation();var n=e(this),a=n.data(),o=a.contextMenu,s=a.contextMenuRoot;o.autoHide&&n.removeClass(s.classNames.visible),n.removeClass(s.classNames.hover),o.$selected=null}},h={show:function(t,n,a){var s=e(this),i={};if(e("#context-menu-layer").trigger("mousedown"),t.$trigger=s,t.events.show.call(s,t)===!1)return void(o=null);if(h.update.call(s,t),t.position.call(s,t,n,a),t.zIndex){var c=t.zIndex;"function"==typeof t.zIndex&&(c=t.zIndex.call(s,t)),i.zIndex=p(s)+c}h.layer.call(t.$menu,t,i.zIndex),t.$menu.find("ul").css("zIndex",i.zIndex+1),t.$menu.css(i)[t.animation.show](t.animation.duration,function(){s.trigger("contextmenu:visible")}),s.data("contextMenu",t).addClass("context-menu-active"),e(document).off("keydown.contextMenu").on("keydown.contextMenu",f.key),t.autoHide&&e(document).on("mousemove.contextMenuAutoHide",function(e){var n=s.offset();n.right=n.left+s.outerWidth(),n.bottom=n.top+s.outerHeight(),!t.$layer||t.hovering||e.pageX>=n.left&&e.pageX<=n.right&&e.pageY>=n.top&&e.pageY<=n.bottom||setTimeout(function(){t.hovering||t.$menu.trigger("contextmenu:hide")},50)})},hide:function(t,n){var a=e(this);if(t||(t=a.data("contextMenu")||{}),n||!t.events||t.events.hide.call(a,t)!==!1){if(a.removeData("contextMenu").removeClass("context-menu-active"),t.$layer){setTimeout(function(e){return function(){e.remove()}}(t.$layer),10);try{delete t.$layer}catch(s){t.$layer=null}}o=null,t.$menu.find("."+t.classNames.hover).trigger("contextmenu:blur"),t.$selected=null,t.$menu.find("."+t.classNames.visible).removeClass(t.classNames.visible),e(document).off(".contextMenuAutoHide").off("keydown.contextMenu"),t.$menu&&t.$menu[t.animation.hide](t.animation.duration,function(){t.build&&(t.$menu.remove(),e.each(t,function(e){switch(e){case"ns":case"selector":case"build":case"trigger":return!0;default:t[e]=void 0;try{delete t[e]}catch(n){}return!0}})),setTimeout(function(){a.trigger("contextmenu:hidden")},10)})}},create:function(n,a){function o(t){var n=e("
");return t._accesskey?(t._beforeAccesskey&&n.append(document.createTextNode(t._beforeAccesskey)),e("
").addClass("context-menu-accesskey").text(t._accesskey).appendTo(n),t._afterAccesskey&&n.append(document.createTextNode(t._afterAccesskey))):n.text(t.name),n}void 0===a&&(a=n),n.$menu=e('').addClass(n.className||"").data({contextMenu:n,contextMenuRoot:a}),e.each(["callbacks","commands","inputs"],function(e,t){n[t]={},a[t]||(a[t]={})}),a.accesskeys||(a.accesskeys={}),e.each(n.items,function(s,i){var c=e('').addClass(i.className||""),r=null,l=null;if(c.on("click",e.noop),"string"==typeof i&&(i={type:"cm_seperator"}),i.$node=c.data({contextMenu:n,contextMenuRoot:a,contextMenuKey:s}),"undefined"!=typeof i.accesskey)for(var d,m=t(i.accesskey),p=0;d=m[p];p++)if(!a.accesskeys[d]){a.accesskeys[d]=i;var x=i.name.match(new RegExp("^(.*?)("+d+")(.*)$","i"));x&&(i._beforeAccesskey=x[1],i._accesskey=x[2],i._afterAccesskey=x[3]);break}if(i.type&&u[i.type])u[i.type].call(c,i,n,a),e.each([n,a],function(t,n){n.commands[s]=i,e.isFunction(i.callback)&&(n.callbacks[s]=i.callback)});else{switch("cm_seperator"===i.type?c.addClass("context-menu-separator "+a.classNames.notSelectable):"html"===i.type?c.addClass("context-menu-html "+a.classNames.notSelectable):i.type?(r=e("
").appendTo(c),o(i).appendTo(r),c.addClass("context-menu-input"),n.hasTypes=!0,e.each([n,a],function(e,t){t.commands[s]=i,t.inputs[s]=i})):i.items&&(i.type="sub"),i.type){case"cm_seperator":break;case"text":l=e('
').attr("name","context-menu-input-"+s).val(i.value||"").appendTo(r);break;case"textarea":l=e('
').attr("name","context-menu-input-"+s).val(i.value||"").appendTo(r),i.height&&l.height(i.height);break;case"checkbox":l=e('
').attr("name","context-menu-input-"+s).val(i.value||"").prop("checked",!!i.selected).prependTo(r);break;case"radio":l=e('
').attr("name","context-menu-input-"+i.radio).val(i.value||"").prop("checked",!!i.selected).prependTo(r);break;case"select":l=e('