forked from lirantal/dockly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactionsMenu.widget.js
152 lines (130 loc) · 4.03 KB
/
actionsMenu.widget.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
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
'use strict'
const baseWidget = require('../src/baseWidget')
class myWidget extends baseWidget() {
constructor ({ blessed = {}, contrib = {}, screen = {}, grid = {} }) {
super()
this.blessed = blessed
this.contrib = contrib
this.screen = screen
this.grid = grid
this.label = 'Menu'
this.widget = this.getWidget()
this.toggleVisibility = 0
this.menuItems = {
'Stop All Containers': this.stopAllContainers,
'Remove Selected Container': this.deleteSelectedContainer,
'Remove All Containers': this.removeAllContainers,
'Remove All Images': this.removeAllImages
}
this.widget.setItems(Object.keys(this.menuItems))
}
stopAllContainers () {
const actionStatus = this.widgetsRepo.get('actionStatus')
const data = {
title: 'Stopping all containers',
message: 'Stopping all containers...'
}
actionStatus.emit('message', data)
this.utilsRepo.get('docker').stopAllContainers((res) => {
actionStatus.emit('message', Object.assign(data, { message: 'All containers stopped successfully' }))
})
}
removeAllContainers () {
const actionStatus = this.widgetsRepo.get('actionStatus')
const data = {
title: 'Removing all containers',
message: 'Removing all containers...'
}
this.utilsRepo.get('docker').removeAllContainers((res) => {
actionStatus.emit('message', Object.assign(data, { message: 'All containers removed successfully' }))
})
}
removeAllImages () {
const actionStatus = this.widgetsRepo.get('actionStatus')
const data = {
title: 'Removing all images',
message: 'Removing all images...'
}
this.utilsRepo.get('docker').removeAllImages((res) => {
actionStatus.emit('message', Object.assign(data, { message: 'All images removed successfully' }))
})
}
deleteSelectedContainer () {
const actionStatus = this.widgetsRepo.get('actionStatus')
const data = {
title: 'Removing selected container',
message: 'Removing selected container...'
}
if (this.widgetsRepo && this.widgetsRepo.has('containerList')) {
const containerId = this.widgetsRepo.get('containerList').getSelectedContainer()
if (containerId && containerId !== 0 && containerId !== false) {
this.utilsRepo.get('docker').removeContainer(containerId, () => {
actionStatus.emit('message', Object.assign(data, { message: `Container removed successfully: ${containerId}` }))
})
}
}
}
init () {
if (!this.widgetsRepo.has('toolbar')) {
return null
}
this.widget.on('keypress', (ch, key) => {
if (key.name === 'escape' || key.name === 'return') {
this.toggleVisibility = !this.toggleVisibility
this.widget.destroy()
}
})
this.widget.on('select', (el, selected) => {
this.toggleVisibility = !this.toggleVisibility
const option = el.getText()
const optionFunction = this.menuItems[option]
if (typeof optionFunction === 'function') {
optionFunction.call(this)
}
})
const toolbar = this.widgetsRepo.get('toolbar')
toolbar.on('key', (keyString) => {
// on info keypress m
if (keyString === 'm') {
this.toggleVisibility = !this.toggleVisibility
if (this.toggleVisibility) {
// show the widget and focus on it,
this.screen.append(this.widget)
this.screen.render()
this.widget.focus()
} else {
this.screen.remove(this.widget)
}
}
})
}
getWidget () {
return this.grid.gridObj.set(...this.grid.gridLayout, this.blessed.list, {
label: this.label,
scrollable: true,
alwaysScroll: true,
keys: true,
interactive: true,
style: {
selected: {
bg: 'green'
}
},
border: {
type: 'line'
},
hover: {
bg: 'blue'
},
scrollbar: {
fg: 'blue',
ch: '|'
},
align: 'center'
})
}
renderWidget () {
return null
}
}
module.exports = myWidget