This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
125 lines (121 loc) Β· 2.29 KB
/
main.js
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
import Flutter from 'flutter-node'
function entry({
StatusBarItem,
ContextMenu,
RunningConfig,
EnvClient
}){
let flutterDevices = [
{
name:'No devices found.'
}
]
let flutterApp;
let selectedDevice;
const button = new StatusBarItem({
label:'Detecting devices',
action:(e)=>{
new ContextMenu({
list:[
...
flutterDevices.map( device => {
return {
label: device.name,
action:()=>{
selectedDevice = device
}
}
}),
{},
{
label:'Run',
action(e){
new ContextMenu({
list:[
...
RunningConfig.data.workspaceConfig.folders.map( folder => {
return {
label: folder.path,
action(){
runApp(flutterApp,folder,selectedDevice,EnvClient,RunningConfig)
}
}
})
],
x:e.pageX,
y:e.pageY,
parent:e.target
})
}
},
{
label:'Hot reload',
action(){
flutterApp && flutterApp.reload()
}
},
{
label:'Close',
action(){
flutterApp && flutterApp.close()
}
}
],
x:e.pageX,
y:e.pageY,
parent:e.target
})
}
})
Flutter.isInstalled().then( res => {
if( !res ){
button.setLabel('Flutter is not installed')
}
})
Flutter.getDevices().then( res => {
if( res.devices.length == 0 ){
button.setLabel('No devices found')
}else{
selectedDevice = res.devices[0]
button.setLabel( selectedDevice.name )
flutterDevices = res.devices
}
})
}
function runApp(flutterApp,folder,selectedDevice,EnvClient,RunningConfig){
if( !selectedDevice ) return
flutterApp = new Flutter.app({
path: folder.path,
deviceId: selectedDevice.id
})
const flutterEnv = new EnvClient({
name: 'Flutter'
})
flutterEnv.on('start',()=>{
flutterApp.run({
onData:function(data){
console.log(data)
},
onExit:function(data){
console.log(data)
},
onClose:function(data){
console.log(data)
}
})
RunningConfig.on('tabSaved',({ parentFolder }) => {
if( parentFolder == folder.path ){
flutterApp.reload();
}
})
})
flutterEnv.on('stop',() => {
flutterApp && flutterApp.close()
})
flutterEnv.on('reload',() => {
flutterApp && flutterApp.reload()
})
}
module.exports = {
entry
}