forked from jpadie/workspace-grbl1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto-generated-workspace.html
1736 lines (1556 loc) · 83.3 KB
/
auto-generated-workspace.html
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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Workspace / grbl 1</title>
<!-- ChiliPeppr is based on bootstrap CSS. -->
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Customized version of require.js for ChiliPeppr. Please see require.js docs for how
ChiliPeppr's dependency system works as it's based on require.js. -->
<script type='text/javascript' src="//i2dcui.appspot.com/js/require.js"></script>
<style type='text/css'>
.workspace-dropdown li {
padding: 6px 20px;
}
.btn-ws {
width:100%;
/*margin:6px 20px;*/
}
.zipwhip-button {
line-height:0px;
padding: 1px 2px;
}
.zipwhip {
background: url('http://www.zipwhip.com/resources/images/favicon.ico') no-repeat top left;
display: inline-block;
margin: 1px 0;
height: 16px;
width: 16px;
/* line-height:0px; */
background-size: 16px 16px;
/* -webkit-background-size: 50% 50%; Safari
-khtml-background-size: 50% 50%; Konqueror
-moz-background-size: 50% 50%; Firefox */
}
#com-chilipeppr-ws-gcode-wrapper .dropdown-menu {
/* z-index:6; */
/* position:inherit; */
}
#com-chilipeppr-ws-gcode-wrapper .panel-heading {
/* padding: 10px 12px; */
}
#com-chilipeppr-ws-gcode-wrapper .well.com-chilipeppr-ws-hdr {
/* padding: 10px 15px; */
}
#com-chilipeppr-ws-gcode-dragdrop {
margin-right:6px;
}
#com-chilipeppr-ws-gcode-hdr {
height:64px;
margin-bottom:10px;
}
.panel {
margin-bottom:10px;
}
#com-chilipeppr-ws-gcode-wrapper #com-chilipeppr-widget-gcode-body {
/* max-height:250px; */
height:250px;
}
#com-chilipeppr-ws-gcode-wrapper .com-chilipeppr-widget-spconsole {
margin-bottom:0;
}
#com-chilipeppr-ws-gcode-dragdropoverlay {
position: absolute;
top:0;
bottom:0;
left:0;
right:0;
z-index:10;
background-color: rgba(255, 255, 255, 0.5);
font-size: 20px;
padding:100px;
border: 3px dashed #3276b1;
text-align:center;
pointer-events: none;
}
#com-chilipeppr-ws-gcode-dragdropoverlay .well {
background-color: rgba(127, 127, 127, 0.5);
}
#com-chilipeppr-ws-gcode-wrapper.hover {
/* background-color: blue; */
}
.com-chilipeppr-elem-dragdrop {
/* border: 1px dashed gray; */
/* border-radius: 4px; */
padding:0;
margin-right:6px;
}
.padrt {
padding-right:10px;
}
.zhigh {
/* z-index:5; */
position:relative;
}
#com-chilipeppr-ws-gcode-wrapper .dropdown-menu {
/* z-index:20; */
}
#mainnav {
z-index:5;
}
.nopadding {
padding:0;
}
#com-chilipeppr-widget-3dviewer .panel-heading, #com-chilipeppr-3dviewer-controlpanel .panel-heading {
background:none;
/* border:none; */
padding:10px 15px;
margin-bottom:0;
}
#com-chilipeppr-3dviewer-controlpanel {
padding:0 10px;
float:left;
}
#com-chilipeppr-gcode-list {
/* padding-right: 10px; */
/* z-index:5; */
/* position: relative; */
}
#com-chilipeppr-serialport-ws-hdr {
/* z-index:5; */
}
.well.com-chilipeppr-ws-hdr {
padding:10px 15px;
/* padding:8px; */
/* padding-left:15px; */
/* margin:0; */
/* margin-bottom:10px; */
}
#chilipeppr-3dviewer {
/* z-index: -1; */
padding-right:10px;
}
#com-chilipeppr-widget-3dviewer-renderArea {
/* z-index:0; */
}
.row .widget {
margin:0;
padding:0;
}
.dropArea.hover {
background: #dddddd;
}
#pnlWorkspace.hover {
background: red;
}
body.hover {
background: #5bc0de;
}
#chilipeppr-serialport-wrapper .com-chilipeppr-widget-serialport-spselector {
max-height: none;
}
#chilipeppr-serialport-log {
/*height:200px;*/
/* padding-right:10px; */
/* z-index:5; */
/* position: relative; */
}
.nomargin {
margin:0;
}
.noheight {
height:0;
}
</style>
<script type='text/javascript'>
//<![CDATA[
/* global cpdefine chilipeppr cprequire $ cprequire_test */
cprequire_test(["inline:com-chilipeppr-workspace-timg"], function(ws) {
console.log("initting workspace");
/**
* The Root workspace (when you see the ChiliPeppr Header) auto Loads the Flash
* Widget so we can show the 3 second flash messages. However, in test mode we
* like to see them as well, so just load it from the cprequire_test() method
* so we have similar functionality when testing this workspace.
*/
var loadFlashMsg = function() {
chilipeppr.load("#com-chilipeppr-widget-flash-instance",
"http://fiddle.jshell.net/chilipeppr/90698kax/show/light/",
function() {
console.log("mycallback got called after loading flash msg module");
cprequire(["inline:com-chilipeppr-elem-flashmsg"], function(fm) {
//console.log("inside require of " + fm.id);
fm.init();
});
}
);
};
loadFlashMsg();
// Init workspace
ws.init();
// Do some niceties for testing like margins on widget and title for browser
$('title').html("grbl Workspace");
$('body').css('padding', '10px');
} /*end_test*/ );
Function.prototype.clone = function() {
var that = this;
var temp = function temporary() {
return that.apply(this, arguments);
};
for (var key in this) {
if (this.hasOwnProperty(key)) {
temp[key] = this[key];
}
}
return temp;
};
// This is the main definition of your widget. Give it a unique name.
cpdefine("inline:com-chilipeppr-workspace-timg", ["chilipeppr_ready"], function() {
return {
/**
* The ID of the widget. You must define this and make it unique.
*/
id: "com-chilipeppr-workspace-timg", // Make the id the same as the cpdefine id
name: "Workspace / grbl 1", // The descriptive name of your widget.
desc: `A ChiliPeppr Workspace for grbl 1.`,
url: "http://raw.githubusercontent.com/timothy-godfrey/workspace-grbl1/master/auto-generated-workspace.html", // The final URL of the working widget as a single HTML file with CSS and Javascript inlined. You can let runme.js auto fill this if you are using Cloud9.
fiddleurl: "http://ide.c9.io/timgodfrey/grbl_one", // The edit URL. This can be auto-filled by runme.js in Cloud9 if you'd like, or just define it on your own to help people know where they can edit/fork your widget
githuburl: "http://github.com/timothy-godfrey/workspace-grbl1", // The backing github repo
testurl: "http://grbl_one-timgodfrey.c9users.io/workspace.html", // The standalone working widget so can view it working by itself
/**
* Contains reference to the Console widget object. Hang onto the reference
* so we can resize it when the window resizes because we want it to manually
* resize to fill the height of the browser so it looks clean.
*/
widgetConsole: null,
/**
* Contains reference to the Serial Port JSON Server object.
*/
//widgetSpjs: null,
/**
* The workspace's init method. It loads the all the widgets contained in the workspace
* and inits them.
*/
init: function() {
/*
// Most workspaces will instantiate the Serial Port JSON Server widget
this.loadSpjsWidget();
// Most workspaces will instantiate the Serial Port Console widget
this.loadConsoleWidget(function() {
setTimeout(function() { $(window).trigger('resize'); }, 100);
});
*/
this.loadWidgets();
//this.loadTemplateWidget();
// Create our workspace upper right corner triangle menu
this.loadWorkspaceMenu();
// Add our billboard to the menu (has name, url, picture of workspace)
this.addBillboardToWorkspaceMenu();
//chilipeppr.publish('/com-chilipeppr-elem-flashmsg/flashmsg', "Recent Maintenance", "Hello! We recently updated the GRBL workspace. Please let us know if you have any issues. If auto-level still does not work, please continue to use chilipeppr.com/imania. But we'd really like to hear if it does! ", 15 * 1000);
// Setup an event to react to window resize. This helps since
// some of our widgets have a manual resize to cleanly fill
// the height of the browser window. You could turn this off and
// just set widget min-height in CSS instead
this.setupResize();
setTimeout(function() {
$(window).trigger('resize');
}, 100);
},
/**
* Returns the billboard HTML, CSS, and Javascript for this Workspace. The billboard
* is used by the home page, the workspace picker, and the fork pulldown to show a
* consistent name/image/description tag for the workspace throughout the ChiliPeppr ecosystem.
*/
getBillboard: function() {
var el = $('#' + this.id + '-billboard').clone();
el.removeClass("hidden");
el.find('.billboard-desc').text(this.desc);
return el;
},
/**
* Inject the billboard into the Workspace upper right corner pulldown which
* follows the standard template for workspace pulldown menus.
*/
addBillboardToWorkspaceMenu: function() {
// get copy of billboard
var billboardEl = this.getBillboard();
$('#' + this.id + ' .com-chilipeppr-ws-billboard').append(billboardEl);
},
/**
* Listen to window resize event.
*/
setupResize: function() {
$(window).on('resize', this.onResize.bind(this));
},
/**
* When browser window resizes, forcibly resize the Console window
*/
onResize: function() {
if (this.widgetConsole) this.widgetConsole.resize();
},
/**
* Load the Template widget via chilipeppr.load() so folks have a sample
* widget they can fork as a starting point for their own.
*/
loadTemplateWidget: function(callback) {
chilipeppr.load(
"#com-chilipeppr-widget-template-instance",
"http://raw.githubusercontent.com/chilipeppr/widget-template/master/auto-generated-widget.html",
function() {
// Callback after widget loaded into #myDivWidgetTemplate
// Now use require.js to get reference to instantiated widget
cprequire(
["inline:com-chilipeppr-widget-template"], // the id you gave your widget
function(myObjWidgetTemplate) {
// Callback that is passed reference to the newly loaded widget
console.log("Widget / Template just got loaded.", myObjWidgetTemplate);
myObjWidgetTemplate.init();
}
);
}
);
},
/**
* Load the Serial Port JSON Server widget via chilipeppr.load()
*/
loadSpjsWidget: function(callback) {
var that = this;
chilipeppr.load(
"#com-chilipeppr-widget-serialport-instance",
"http://fiddle.jshell.net/chilipeppr/vetj5fvx/show/light/",
function() {
console.log("mycallback got called after loading spjs module");
cprequire(["inline:com-chilipeppr-widget-serialport"], function(spjs) {
//console.log("inside require of " + fm.id);
spjs.setSingleSelectMode();
spjs.init({
isSingleSelectMode: true,
defaultBuffer: "default",
defaultBaud: 115200,
bufferEncouragementMsg: 'For your device please choose the "default" buffer in the pulldown and a 115200 baud rate before connecting.'
});
//spjs.showBody();
//spjs.consoleToggle();
that.widgetSpjs - spjs;
if (callback) callback(spjs);
});
}
);
},
/**
* Load the Console widget via chilipeppr.load()
*/
loadConsoleWidget: function(callback) {
var that = this;
chilipeppr.load(
"#com-chilipeppr-widget-spconsole-instance",
"http://fiddle.jshell.net/chilipeppr/rczajbx0/show/light/",
function() {
// Callback after widget loaded into #com-chilipeppr-widget-spconsole-instance
cprequire(
["inline:com-chilipeppr-widget-spconsole"], // the id you gave your widget
function(mywidget) {
// Callback that is passed reference to your newly loaded widget
console.log("My Console widget just got loaded.", mywidget);
that.widgetConsole = mywidget;
// init the serial port console
// 1st param tells the console to use "single port mode" which
// means it will only show data for the green selected serial port
// rather than for multiple serial ports
// 2nd param is a regexp filter where the console will filter out
// annoying messages you don't generally want to see back from your
// device, but that the user can toggle on/off with the funnel icon
that.widgetConsole.init(true, /myfilter/);
if (callback) callback(mywidget);
}
);
}
);
},
/**
* Load the workspace menu and show the pubsubviewer and fork links using
* our pubsubviewer widget that makes those links for us.
*/
loadWorkspaceMenu: function(callback) {
// Workspace Menu with Workspace Billboard
var that = this;
chilipeppr.load(
"http://fiddle.jshell.net/chilipeppr/zMbL9/show/light/",
function() {
require(['inline:com-chilipeppr-elem-pubsubviewer'], function(pubsubviewer) {
var el = $('#' + that.id + ' .com-chilipeppr-ws-menu .dropdown-menu-ws');
console.log("got callback for attachto menu for workspace. attaching to el:", el);
pubsubviewer.attachTo(
el,
that,
"Workspace"
);
if (callback) callback();
});
}
);
},
loadWidgets: function(callback) {
console.log('WORKSPACE: loading widgets');
// Load top bar elements
// Zipwhip texting
// com-chilipeppr-ws-zipwhip
console.log('WORKSPACE: loading zipwhip');
chilipeppr.load(
"#com-chilipeppr-ws-zipwhip",
"http://fiddle.jshell.net/chilipeppr/56X9G/show/light/",
function() {
require(["inline:com-chilipeppr-elem-zipwhip"], function(zipwhip) {
zipwhip.init();
// setup toggle button
var zwBtn = $('#com-chilipeppr-ws-gcode-menu .zipwhip-button');
var zwDiv = $('#com-chilipeppr-ws-zipwhip');
zwBtn.click(function() {
if (zwDiv.hasClass("hidden")) {
// unhide
zwDiv.removeClass("hidden");
zwBtn.addClass("active");
}
else {
zwDiv.addClass("hidden");
zwBtn.removeClass("active");
}
$(window).trigger('resize');
});
});
});
console.log('WORKSPACE: loading autolevel');
chilipeppr.load(
"#com-chilipeppr-ws-autolevel",
"http://raw.githubusercontent.com/jpadie/widget-grbl-autolevel/master/auto-generated-widget.html",
function() {
require(["inline:com-chilipeppr-widget-autolevel"],
function(autolevel) {
autolevel.init();
// setup toggle button
var alBtn = $('#com-chilipeppr-ws-gcode-menu .autolevel-button');
var alDiv = $('#com-chilipeppr-ws-autolevel');
alBtn.click(function() {
if (alDiv.hasClass("hidden")) {
// unhide
alDiv.removeClass("hidden");
alBtn.addClass("active");
autolevel.onDisplay();
}
else {
alDiv.addClass("hidden");
alBtn.removeClass("active");
autolevel.onUndisplay();
}
$(window).trigger('resize');
});
});
});
/*
// Inject new div to contain widget or use an existing div with an ID
$("body").append('<' + 'div id="myDivWidgetAutolevel"><' + '/div>');
chilipeppr.load(
"#myDivWidgetAutolevel",
"http://raw.githubusercontent.com/raykholo/grbl-widget-autolevel/master/auto-generated-widget.html",
function() {
// Callback after widget loaded into #myDivWidgetAutolevel
// Now use require.js to get reference to instantiated widget
cprequire(
["inline:com-chilipeppr-widget-autolevel"], // the id you gave your widget
function(myObjWidgetAutolevel) {
// Callback that is passed reference to the newly loaded widget
console.log("Widget / Auto-Level just got loaded.", myObjWidgetAutolevel);
myObjWidgetAutolevel.init();
}
);
}
);*/
// Macro
// com-chilipeppr-ws-macro
console.log('WORKSPACE: loading macro');
chilipeppr.load(
"#com-chilipeppr-ws-macro",
"http://raw.githubusercontent.com/chilipeppr/widget-macro/master/auto-generated-widget.html",
function() {
//"http://fiddle.jshell.net/chilipeppr/ZJ5vV/show/light/", function () {
cprequire(["inline:com-chilipeppr-widget-macro"], function(macro) {
macro.init();
// setup toggle button
var alBtn = $('#com-chilipeppr-ws-menu .macro-button');
var alDiv = $('#com-chilipeppr-ws-macro');
alBtn.click(function() {
if (alDiv.hasClass("hidden")) {
// unhide
alDiv.removeClass("hidden");
alBtn.addClass("active");
//autolevel.onDisplay();
}
else {
alDiv.addClass("hidden");
alBtn.removeClass("active");
//autolevel.onUndisplay();
}
$(window).trigger('resize');
});
});
}); //End Macro
/*
// Macro (original)
// com-chilipeppr-ws-autolevel
chilipeppr.load(
"#com-chilipeppr-ws-macro",
"http://fiddle.jshell.net/chilipeppr/ZJ5vV/show/light/",
function() {
require(["inline:com-chilipeppr-widget-macro"], function(macro) {
macro.init();
// setup toggle button
var alBtn = $('#com-chilipeppr-ws-gcode-menu .macro-button');
var alDiv = $('#com-chilipeppr-ws-macro');
alBtn.click(function() {
if (alDiv.hasClass("hidden")) {
// unhide
alDiv.removeClass("hidden");
alBtn.addClass("active");
//autolevel.onDisplay();
}
else {
alDiv.addClass("hidden");
alBtn.removeClass("active");
//autolevel.onUndisplay();
}
$(window).trigger('resize');
});
});
});
*/
/*
// Macro (imania)
// com-chilipeppr-ws-autolevel
chilipeppr.load(
"#com-chilipeppr-ws-macro",
"http://jsfiddle.net/forstuvning/3gmfmnna/8/show/light/",
function() {
require(["inline:com-chilipeppr-widget-macro"], function(macro) {
macro.init();
// setup toggle button
var alBtn = $('#com-chilipeppr-ws-gcode-menu .macro-button');
var alDiv = $('#com-chilipeppr-ws-macro');
alBtn.click(function() {
if (alDiv.hasClass("hidden")) {
// unhide
alDiv.removeClass("hidden");
alBtn.addClass("active");
//autolevel.onDisplay();
}
else {
alDiv.addClass("hidden");
alBtn.removeClass("active");
//autolevel.onUndisplay();
}
$(window).trigger('resize');
});
});
});*/
// JScut
// com-chilipeppr-ws-jscut
console.log('WORKSPACE: loading jscut');
chilipeppr.load(
"#com-chilipeppr-ws-jscut",
"http://fiddle.jshell.net/chilipeppr/7ZzSV/show/light/",
function() {
require(["inline:org-jscut-gcode-widget"], function(jscut) {
jscut.init();
// setup toggle button
var alBtn = $('#com-chilipeppr-ws-gcode-menu .jscut-button');
var alDiv = $('#com-chilipeppr-ws-jscut');
alBtn.click(function() {
if (alDiv.hasClass("hidden")) {
// unhide
alDiv.removeClass("hidden");
alBtn.addClass("active");
}
else {
alDiv.addClass("hidden");
alBtn.removeClass("active");
}
$(window).trigger('resize');
});
});
});
// Eagle BRD Import
// com-chilipeppr-widget-eagle
// Setup drag/drop for BRD files on our own because we don't
// want to instantiate the Eagle BRD codebase (i.e. load its massive
// javascript files) until the user try requests that we do
var eagleObj = {
eagleBtn: null,
eagleDiv: null,
eagleInstance: null,
init: function() {
this.eagleBtn = $('#com-chilipeppr-ws-gcode-menu .eagle-button');
this.eagleDiv = $('#com-chilipeppr-ws-eagle');
this.setupDragDrop();
this.setupBtn();
console.log("done instantiating micro Eagle BRD plug-in");
},
setupBtn: function() {
this.eagleBtn.click(this.toggleEagle.bind(this));
},
toggleEagle: function() {
if (this.eagleDiv.hasClass("hidden")) {
// unhide
this.showEagle();
}
else {
this.hideEagle();
}
},
showEagle: function(callback) {
this.eagleDiv.removeClass("hidden");
this.eagleBtn.addClass("active");
// see if instantiated already
// if so, just activate
if (this.eagleInstance != null) {
this.eagleInstance.activateWidget();
if (callback) callback();
}
else {
// otherwise, dynamic load
var that = this;
chilipeppr.load(
"#com-chilipeppr-ws-eagle",
"http://raw.githubusercontent.com/chilipeppr/widget-eagle/master/auto-generated-widget.html",
function() {
require(["inline:com-chilipeppr-widget-eagle"], function(eagle) {
that.eagleInstance = eagle;
console.log("Eagle BRD instantiated. eagleInstance:", that.eagleInstance);
that.eagleInstance.init();
//eagleInstance.activateWidget();
var newExportGcodeMillHoles = function() {
var g = '';
if (!$('#com-chilipeppr-widget-eagle .use-milling').is(':checked')) return g;
var that = eagle;
var dir = $('#DirectionCutting').val();
//var diaOfEndmill = $('.dimension-mill-diameter').val();
var diaOfEndmill = that.millDiameterMin;
if ((!$('#com-chilipeppr-widget-eagle .use-drilling').is(':checked')) ||
eagle.holesToMill.length == 0)
return g;
g += "(------ MILLING HOLES -------)\n";
g += "M5 (spindle off)\n";
g += "T" + ++eagle.toolCount + " M6 (Milling holes/board dimensions)\n";
g += "(T" + eagle.toolCount + " D=" + diaOfEndmill + "mm - PCB End Mill)\n";
g += "M3 S" + eagle.spindleRPM + " (spindle on)\n";
g += "F" + eagle.feedRateDimensions + "\n";
eagle.holesToMill.forEach(function(hole) {
//g += that.generateGcodeHole(hole.D, hole.X, hole.Y)
var radius = hole.D / 2;
var gdiameter = radius - (eagle.millDiameter / 2); // inside milling
var stepDownPasses = Math.round(eagle.depthOfDimensions / eagle.stepDownDimensions + .5);
g += '(generate hole at x:' + hole.X + ' y:' + hole.Y + ' with dia:' + hole.D + ' in ' + stepDownPasses + ' passes)' + "\n";
g += "F" + eagle.feedRateDimensions + "\n";
g += "G0 Z" + eagle.clearanceHeight + "\n";
g += "G0 X" + eagle.round(hole.X - gdiameter) + " Y" + eagle.round(hole.Y) + "\n";
for (var i = 0; i < stepDownPasses; i++) {
var z = eagle.stepDownDimensions * (i + 1);
if (z < eagle.depthOfDimensions) {
z = eagle.depthOfDimensions;
}
g += "G1 Z" + z.toFixed(4) + "\n"; //V5.2QUICKFIX
g += (dir == 2) ? "G2" : "G3";
g += " X" + eagle.round(hole.X - gdiameter) + " Y" + eagle.round(hole.Y);
g += " I" + gdiameter.toFixed(4) + "\n";
}
g += "G0 Z" + eagleObj.clearanceHeight + "\n";
});
return g;
};
eagle.exportGcodeMillHoles = newExportGcodeMillHoles;
if (callback) callback();
var t = $('#com-chilipeppr-widget-eagle .fb-build').text();
$('#com-chilipeppr-widget-eagle .fb-build').text(t + "jpa3");
});
}
);
}
$(window).trigger('resize');
},
hideEagle: function() {
this.eagleDiv.addClass("hidden");
this.eagleBtn.removeClass("active");
if (this.eagleInstance != null) {
this.eagleInstance.unactivateWidget();
}
$(window).trigger('resize');
},
setupDragDrop: function() {
// subscribe to events
chilipeppr.subscribe("/com-chilipeppr-elem-dragdrop/ondragover", this, this.onDragOver);
chilipeppr.subscribe("/com-chilipeppr-elem-dragdrop/ondragleave", this, this.onDragLeave);
// /com-chilipeppr-elem-dragdrop/ondropped
chilipeppr.subscribe("/com-chilipeppr-elem-dragdrop/ondropped", this, this.onDropped, 9); // default is 10, we do 9 to be higher priority
},
onDropped: function(data, info) {
console.log("onDropped. len of file:", data.length, "info:", info);
// we have the data
// double check it's a board file, cuz it could be gcode
if (data.match(/<!DOCTYPE eagle SYSTEM "eagle.dtd">/i)) {
// check that there's a board tag
if (data.match(/<board>/i)) {
console.log("we have an eagle board file!");
this.fileInfo = info;
var that = this;
this.showEagle(function() {
console.log("got callback after showing eagle. now opening file.");
that.eagleInstance.open(data, info);
});
console.log("opened brd file");
// do NOT store a lastDropped, rather we should
// get told from the workspace what the last file
// was and if it was a BRD file we should auto-open
/*
localStorage.setItem('com-chilipeppr-widget-eagle-lastDropped', data);
localStorage.setItem('com-chilipeppr-widget-eagle-lastDropped-info', JSON.stringify(info));
console.log("saved brd file to localstorage");
*/
}
else {
console.log("looks like it is an eagle generated file, but not a board file. sad.");
chilipeppr.publish('/com-chilipeppr-elem-flashmsg/flashmsg', "Looks like you dragged in an Eagle CAD file, but it contains no board tag. You may have dragged in a schematic instead. Please retry with a valid board file.");
}
// now, we need to return false so no other widgets see this
// drag/drop event because they won't know how to handle
// an Eagle Brd file
return false;
}
else {
if (info && 'name' in info && info.name.match(/.brd$/i)) {
// this looks like an Eagle brd file, but it's binary
chilipeppr.publish('/com-chilipeppr-elem-flashmsg/flashmsg', "Error Loading Eagle BRD File", "Looks like you dragged in an Eagle BRD file, but it seems to be in binary. You can open this file in Eagle and then re-save it to a new file to create a text version of your Eagle BRD file.", 15 * 1000);
return false;
}
else {
console.log("we do not have an eagle board file. sad.");
}
}
},
onDragOver: function() {
console.log("onDragOver");
$('#com-chilipeppr-widget-eagle').addClass("panel-primary");
$('#com-chilipeppr-ws-gcode-menu .eagle-button').addClass("btn-primary");
},
onDragLeave: function() {
console.log("onDragLeave");
$('#com-chilipeppr-widget-eagle').removeClass("panel-primary");
$('#com-chilipeppr-ws-gcode-menu .eagle-button').removeClass("btn-primary");
},
};
eagleObj.init();
// GPIO
// net-delarre-widget-gpio
// Dynamically load the GPIO widget, i.e. wait til user clicks on the button
// first time.
console.log('WORKSPACE: loading GPIO Widget');
var gpioObj = {
gpioBtn: null,
gpioDiv: null,
gpioInstance: null,
init: function() {
this.gpioBtn = $('#com-chilipeppr-ws-gcode-menu .gpio-button');
this.gpioDiv = $('#com-chilipeppr-ws-gpio');
this.setupBtn();
console.log("done instantiating GPIO add-on widget");
},
setupBtn: function() {
this.gpioBtn.click(this.toggleGpio.bind(this));
},
toggleGpio: function() {
if (this.gpioDiv.hasClass("hidden")) {
// unhide
this.showGpio();
}
else {
this.hideGpio();
}
},
showGpio: function(callback) {
this.gpioDiv.removeClass("hidden");
this.gpioBtn.addClass("active");
// see if instantiated already
// if so, just activate
if (this.gpioInstance != null) {
//this.gpioInstance.activateWidget();
if (callback) callback();
}
else {
// otherwise, dynamic load
var that = this;
chilipeppr.load(
"#com-chilipeppr-ws-gpio",
"http://fiddle.jshell.net/benjamind/L3c7csaw/show/light/",
function() {
require(["inline:net-delarre-widget-gpio"], function(gpio) {
that.gpioInstance = gpio;
console.log("GPIO instantiated. gpioInstance:", that.gpioInstance);
that.gpioInstance.init();
//eagleInstance.activateWidget();
if (callback) callback();
});
}
);
}
$(window).trigger('resize');
},
hideGpio: function() {
this.gpioDiv.addClass("hidden");
this.gpioBtn.removeClass("active");
if (this.gpioInstance != null) {
//this.gpioInstance.unactivateWidget();
}
$(window).trigger('resize');
},
};
gpioObj.init();
console.log('WORKSPACE: loading shuttleExpress');
// SuttleXpress
// Dynamically load the ShuttleXpress Widget. i.e. wait til user clicks on
// the button first time.
// uses generic object so can cut/paste easier for others (or create actual object)
var shuttlexpressObj = {
id: "shuttlexpress",
url: "http://fiddle.jshell.net/lordmundi/btyfqk7w/show/light/",
requireName: "inline:com-chilipeppr-widget-shuttlexpress",
btn: null,
div: null,
instance: null,
init: function() {
this.btn = $('#com-chilipeppr-ws-gcode-menu .' + this.id + '-button');
this.div = $('#com-chilipeppr-ws-' + this.id + '');
this.setupBtn();
console.log('done instantiating ' + this.id + ' add-on widget');
},
setupBtn: function() {
this.btn.click(this.toggle.bind(this));
},
toggle: function() {
if (this.div.hasClass("hidden")) {
// unhide
this.show();
}
else {
this.hide();
}
},
show: function(callback) {
this.div.removeClass("hidden");
this.btn.addClass("active");
// see if instantiated already
// if so, just activate
if (this.instance != null) {
this.instance.activateWidget();
if (callback) callback();
}
else {
// otherwise, dynamic load
var that = this;
chilipeppr.load(
'#com-chilipeppr-ws-' + this.id + '',
this.url,
function() {
require([that.requireName], function(myinstance) {
that.instance = myinstance;
console.log(that.id + " instantiated. instance:", that.instance);
that.instance.init();
if (callback) callback();
});
}
);
}
$(window).trigger('resize');
},
hide: function() {
this.div.addClass("hidden");
this.btn.removeClass("active");
if (this.instance != null) {
this.instance.unactivateWidget();
}
$(window).trigger('resize');
},
};
shuttlexpressObj.init();
console.log('WORKSPACE: loading touch plate widget');
var touchPlateObj = {
touchPlateBtn: null,
touchPlateDiv: null,
touchPlateInstance: null,
init: function() {
this.touchPlateBtn = $('#com-chilipeppr-ws-gcode-menu .touchplate-button');
this.touchPlateDiv = $('#com-chilipeppr-ws-touchplate');
this.setupBtn();
console.log("done instantiating touchPlate add-on widget");
},
setupBtn: function() {
this.touchPlateBtn.click(this.toggletouchPlate.bind(this));
},
toggletouchPlate: function() {
if (this.touchPlateDiv.hasClass("hidden")) {
// unhide
this.showtouchPlate();
}
else {
this.hidetouchPlate();
}
},
showtouchPlate: function(callback) {
this.touchPlateDiv.removeClass("hidden");
this.touchPlateBtn.addClass("active");
// see if instantiated already
// if so, just activate
if (this.touchPlateInstance != null) {
//this.gpioInstance.activateWidget();
if (callback) callback();
}
else {
// otherwise, dynamic load
var that = this;
chilipeppr.load(
"#com-chilipeppr-ws-touchplate",
"http://fiddle.jshell.net/jarret/kvab65ot/show/light/",
function() {
require(["inline:com-chilipeppr-widget-touchplate"], function(touchPlate) {
that.touchPlateInstance = touchPlate;
console.log("touchPlate instantiated. touchPlateInstance:", that.touchPlateInstance);
that.touchPlateInstance.init();
//eagleInstance.activateWidget();
if (callback) callback();
});
}
);
}
$(window).trigger('resize');
},
hidetouchPlate: function() {