-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathNumpyComponent.js
More file actions
169 lines (151 loc) · 6.07 KB
/
NumpyComponent.js
File metadata and controls
169 lines (151 loc) · 6.07 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
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
/*
* Project Name : Visual Python
* Description : GUI-based Python code generator
* File Name : NumpyComponent.js
* Author : Black Logic
* Note : Library Component
* License : GNU GPLv3 with Visual Python special exception
* Date : 2021. 11. 18
* Change Date :
*/
//============================================================================
// [CLASS] NumpyComponent
//============================================================================
define([
'text!vp_base/html/m_library/numpyComponent.html!strip',
'css!vp_base/css/m_library/numpyComponent.css',
'vp_base/js/com/component/PopupComponent',
'vp_base/js/com/com_generatorV2',
'vp_base/data/m_library/numpyLibrary',
'vp_base/data/m_library/pythonLibrary'
], function(libHtml, libCss, PopupComponent, com_generatorV2, numpyLibrary, pythonLibrary) {
/**
* NumpyComponent
*/
class NumpyComponent extends PopupComponent {
_init() {
super._init();
/** Write codes executed before rendering */
this.config.dataview = false;
this.config.sizeLevel = 1;
this.packageId = this.state.config.id;
// deep copy package info
this.package = null;
try {
let packageName = this.state.config.path.split(' - ')[2];
let findPackage = null;
if (packageName == 'numpy') {
findPackage = numpyLibrary.NUMPY_LIBRARIES[this.packageId];
} else if (packageName == 'python') {
findPackage = pythonLibrary.PYTHON_LIBRARIES[this.packageId];
}
if (findPackage) {
this.package = JSON.parse(JSON.stringify(findPackage)); // deep copy of package
} else {
throw 'Cannot find package';
}
} catch(err) {
vpLog.display(VP_LOG_TYPE.ERROR, 'Cannot find package id from library: ' + this.packageId);
return;
}
this.config.checkModules = ['np'];
vpLog.display(VP_LOG_TYPE.DEVELOP, 'loading state', this.state);
}
_bindEvent() {
super._bindEvent();
/** Implement binding events */
var that = this;
// save change of vp-state component
$(this.wrapSelector('.vp-state')).on('change', function() {
let id = $(this)[0].id;
let val = $(this).val();
that.state[id] = val;
});
}
loadState() {
vpLog.display(VP_LOG_TYPE.DEVELOP, this.state);
let that = this;
Object.keys(this.state).forEach(key => {
if (key !== 'config') {
let tag = $(that.wrapSelector('#' + key));
let tagName = $(tag).prop('tagName');
let savedValue = that.state[key];
switch(tagName) {
case 'INPUT':
let inputType = $(tag).prop('type');
if (inputType == 'text' || inputType == 'number' || inputType == 'hidden') {
$(tag).val(savedValue);
break;
}
if (inputType == 'checkbox') {
$(tag).prop('checked', savedValue);
break;
}
break;
case 'TEXTAREA':
case 'SELECT':
default:
$(tag).val(savedValue);
break;
}
}
});
}
saveState() {
let that = this;
$(this.wrapSelector('.vp-state')).each((idx, tag) => {
let id = tag.id;
let tagName = $(tag).prop('tagName');
let newValue = '';
switch(tagName) {
case 'INPUT':
let inputType = $(tag).prop('type');
if (inputType == 'text' || inputType == 'number' || inputType == 'hidden') {
newValue = $(tag).val();
break;
}
if (inputType == 'checkbox') {
newValue = $(tag).prop('checked');
break;
}
break;
case 'TEXTAREA':
case 'SELECT':
default:
newValue = $(tag).val();
break;
}
that.state[id] = newValue;
});
vpLog.display(VP_LOG_TYPE.DEVELOP, 'savedState', that.state);
}
templateForBody() {
return libHtml;
}
render() {
super.render();
// show interface
com_generatorV2.vp_showInterfaceOnPage(this, this.package, this.state);
// hide required page if no options
if ($.trim($(this.wrapSelector('#vp_inputOutputBox table tbody')).html())=='') {
$(this.wrapSelector('.vp-require-box')).hide();
}
// hide optional page if no options
if ($.trim($(this.wrapSelector('#vp_optionBox table tbody')).html())=='') {
$(this.wrapSelector('.vp-option-box')).hide();
}
}
open() {
super.open();
// hide optional page if no options
if ($.trim($(this.wrapSelector('#vp_optionBox table tbody')).html())=='') {
$(this.wrapSelector('.vp-option-box')).hide();
}
}
generateCode() {
let code = com_generatorV2.vp_codeGenerator(this, this.package, this.state);
return code;
}
}
return NumpyComponent;
});