forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateAppsBtn.js
More file actions
111 lines (97 loc) · 3.54 KB
/
Copy pathcreateAppsBtn.js
File metadata and controls
111 lines (97 loc) · 3.54 KB
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
/*
* Project Name : Visual Python
* Description : GUI-based Python code generator
* File Name : createAppsBtn.js
* Author : Black Logic
* Note : Create Apps button
* License : GNU GPLv3 with Visual Python special exception
* Date : 2021. 10. 05
* Change Date :
*/
//============================================================================
// [CLASS] Create Apps button
//============================================================================
define([
'./constData.js'
, 'nbextensions/visualpython/src/common/StringBuilder'
], function(constData, sb) {
'use strict';
const { APPS_CONFIG } = constData;
//========================================================================
// [CLASS] CreateAppsBtn
//========================================================================
class CreateAppsBtn {
constructor(blockContainerThis, menu) {
this.blockContainerThis = blockContainerThis;
this.menu = menu;
this.icon = APPS_CONFIG[menu].icon;
this.label = APPS_CONFIG[menu].label;
this.tooltip = APPS_CONFIG[menu].tooltip;
if (!this.tooltip) {
this.tooltip = this.label;
}
this.colorLevel = APPS_CONFIG[menu].color;
this.dom = undefined;
}
_getColorClass() {
switch(this.colorLevel) {
case 0:
return 'preparing';
case 1:
case 2:
case 3:
case 4:
return 'line' + this.colorLevel;
}
}
render() {
var page = new sb.StringBuilder();
page.appendFormatLine('<div class="vp-apiblock-menu-apps-item {0}" data-menu="{1}" title="{2}">'
, this._getColorClass(), this.menu, this.tooltip);
page.appendFormatLine('<img src="{0}">', this.icon);
page.appendFormatLine('<div class="vp-apiblock-menu-apps-name">{0}</div>', this.label);
page.append('</div>');
// save as dom
this.dom = $(page.toString());
return this.dom;
}
bindEvent() {
var blockContainer = this.blockContainerThis;
// block preparing apps
if (this.colorLevel == 0) {
return;
}
$(this.dom).on('click', function() {
var menu = $(this).attr('data-menu');
var { file, config } = APPS_CONFIG[menu];
if (config == undefined) {
config = {}
}
switch (menu)
{
case 'markdown':
blockContainer.createTextBlock();
break;
case 'import':
case 'snippets':
case 'variable':
case 'file':
case 'instance':
case 'subset':
case 'frame':
case 'chart':
case 'profiling':
case 'pdf':
case 'groupby':
case 'bind':
case 'reshape':
blockContainer.setSelectBlock(null);
blockContainer.createAppsPage(menu, file, config);
break;
}
});
}
}
return CreateAppsBtn;
});
/* End of file */