-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathSampleComponent.js
More file actions
66 lines (55 loc) · 1.71 KB
/
SampleComponent.js
File metadata and controls
66 lines (55 loc) · 1.71 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
/*
* Project Name : Visual Python
* Description : GUI-based Python code generator
* File Name : SampleComponent.js
* Author : Black Logic
* Note : Sample Component
* License : GNU GPLv3 with Visual Python special exception
* Date : 2021. 11. 18
* Change Date :
*/
//============================================================================
// [CLASS] SampleComponent
//============================================================================
define([
'vp_base/js/com/com_String',
'vp_base/js/com/component/Component'
], function(com_String, Component) {
/**
* SampleComponent
* Add below code in /data/libraries.json
{
"id" : "apps_sample",
"type" : "function",
"level": 1,
"name" : "Sample",
"tag" : "SAMPLE,APPS",
"path" : "visualpython - apps - sample",
"desc" : "Sample app for testing",
"file" : "m_apps/SampleApp",
"apps" : {
"color": 4,
"icon": "apps/apps_white.svg"
}
}
*/
class SampleComponent extends Component {
_init() {
super._init();
/** Write codes executed before rendering */
}
_bindEvent() {
/** Implement binding events */
}
template() {
/** Implement generating template */
var page = new com_String();
return page.toString();
}
render() {
super.render();
/** Implement after rendering */
}
}
return SampleComponent;
});