embark-area-51/lib/dashboard/monitor.js

220 lines
4.1 KiB
JavaScript
Raw Normal View History

2018-06-13 15:17:55 +00:00
let blessed = require("neo-blessed");
2018-07-23 10:19:44 +00:00
let LightMonitor = require('./light_monitor');
2016-09-17 03:56:25 +00:00
2018-07-23 10:19:44 +00:00
class Monitor extends LightMonitor {
constructor(_options) {
2018-07-23 10:19:44 +00:00
super(_options);
2017-03-30 11:12:39 +00:00
this.layoutStatus();
this.layoutModules();
this.setContracts = this.setContracts.bind(this);
this.availableServices = this.availableServices.bind(this);
this.status.setContent(this.env.green);
}
availableServices(_services) {
2017-12-16 15:54:17 +00:00
let stateColors = {
'on': 'green',
'off': 'red',
'warn': 'grey'
};
let services = Object.keys(_services).map((service) => {
let checkObj = _services[service];
if (checkObj.status in stateColors) {
let color = stateColors[checkObj.status];
return checkObj.name[color];
}
2017-12-16 15:54:17 +00:00
return checkObj.name;
});
2017-03-30 11:12:39 +00:00
this.progress.setContent(services.join('\n'));
this.screen.render();
}
setStatus(status) {
this.operations.setContent(status);
this.screen.render();
}
setContracts(contracts) {
let data = [];
2016-09-17 03:56:25 +00:00
2018-05-08 21:49:46 +00:00
data.push([__("Contract Name"), __("Address"), __("Status")]);
2017-03-30 11:12:39 +00:00
contracts.forEach(function (row) {
data.push(row);
});
this.moduleTable.setData(data);
this.screen.render();
}
2017-03-30 11:12:39 +00:00
layoutLog() {
this.log = blessed.box({
2018-05-08 21:49:46 +00:00
label: __("Logs"),
2017-03-30 11:12:39 +00:00
padding: 1,
width: "100%",
height: "55%",
left: "0%",
top: "42%",
2016-09-17 03:56:25 +00:00
border: {
2017-03-30 11:12:39 +00:00
type: "line"
},
style: {
fg: -1,
border: {
fg: this.color
}
2016-10-23 00:10:25 +00:00
}
2017-03-30 11:12:39 +00:00
});
this.logText = blessed.log({
parent: this.log,
tags: true,
width: "100%-5",
//height: '90%',
scrollable: true,
input: false,
alwaysScroll: true,
scrollbar: {
ch: " ",
inverse: true
},
keys: false,
vi: false,
mouse: true
});
this.screen.append(this.log);
}
layoutModules() {
this.modules = blessed.box({
2018-05-08 21:49:46 +00:00
label: __("Contracts"),
2017-03-30 11:12:39 +00:00
tags: true,
padding: 1,
width: "75%",
height: "42%",
left: "0%",
top: "0",
2016-09-17 03:56:25 +00:00
border: {
2017-03-30 11:12:39 +00:00
type: "line"
},
style: {
fg: -1,
border: {
fg: this.color
}
2016-10-23 00:10:25 +00:00
}
2017-03-30 11:12:39 +00:00
});
this.moduleTable = blessed.table({
parent: this.modules,
height: "100%",
width: "100%-5",
align: "left",
pad: 1,
margin: "auto",
shrink: true,
scrollable: true,
alwaysScroll: true,
scrollbar: {
ch: " ",
inverse: true
},
keys: false,
vi: false,
mouse: true,
data: [["ContractName", "Address", "Status"]]
});
this.screen.append(this.modules);
}
layoutStatus() {
this.wrapper = blessed.layout({
width: "25%",
height: "42%",
top: "0%",
left: "75%",
layout: "grid"
});
this.status = blessed.box({
parent: this.wrapper,
2018-05-08 21:49:46 +00:00
label: __("Environment"),
2017-03-30 11:12:39 +00:00
tags: true,
padding: {
left: 1
},
width: "100%",
height: "20%",
valign: "middle",
2016-09-17 03:56:25 +00:00
border: {
2017-03-30 11:12:39 +00:00
type: "line"
},
style: {
fg: -1,
border: {
fg: this.color
}
2016-10-23 00:16:00 +00:00
}
2017-03-30 11:12:39 +00:00
});
this.operations = blessed.box({
parent: this.wrapper,
2018-05-08 21:49:46 +00:00
label: __("Status"),
2017-03-30 11:12:39 +00:00
tags: true,
padding: {
left: 1
},
width: "100%",
height: "20%",
valign: "middle",
2016-09-17 03:56:25 +00:00
border: {
2017-03-30 11:12:39 +00:00
type: "line"
},
style: {
fg: -1,
border: {
fg: this.color
}
2016-10-23 00:16:00 +00:00
}
2017-03-30 11:12:39 +00:00
});
this.progress = blessed.box({
parent: this.wrapper,
2018-05-08 21:49:46 +00:00
label: __("Available Services"),
2017-03-30 11:12:39 +00:00
tags: true,
padding: this.minimal ? {
left: 1
} : 1,
width: "100%",
height: "60%",
valign: "top",
2016-09-17 03:56:25 +00:00
border: {
2017-03-30 11:12:39 +00:00
type: "line"
},
scrollable: true,
alwaysScroll: true,
scrollbar: {
ch: " ",
inverse: true
},
2017-03-30 11:12:39 +00:00
style: {
fg: -1,
border: {
fg: this.color
}
2016-10-23 00:16:00 +00:00
}
2017-03-30 11:12:39 +00:00
});
this.screen.append(this.wrapper);
}
}
2016-09-17 03:56:25 +00:00
2018-07-23 09:36:53 +00:00
module.exports = Monitor;