Reuse Light Monitor

This commit is contained in:
Anthony Laibe 2018-07-23 11:19:44 +01:00 committed by Pascal Precht
parent 797845c791
commit bade74d2c2
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 3 additions and 76 deletions

View File

@ -1,42 +1,16 @@
let blessed = require("neo-blessed");
let CommandHistory = require('./command_history.js');
let LightMonitor = require('./light_monitor');
class Monitor {
class Monitor extends LightMonitor {
constructor(_options) {
let options = _options || {};
this.env = options.env;
this.console = options.console;
this.history = new CommandHistory();
this.events = options.events;
super(_options);
this.color = options.color || "green";
this.minimal = options.minimal || false;
this.screen = blessed.screen({
smartCSR: true,
title: options.title || ("Embark " + options.version),
dockBorders: false,
fullUnicode: true,
autoPadding: true
});
this.layoutLog();
this.layoutStatus();
this.layoutModules();
this.layoutCmd();
this.screen.key(["C-c"], function () {
process.exit(0);
});
this.logEntry = this.logEntry.bind(this);
this.setContracts = this.setContracts.bind(this);
this.availableServices = this.availableServices.bind(this);
this.status.setContent(this.env.green);
this.screen.render();
this.input.focus();
}
availableServices(_services) {
@ -77,11 +51,6 @@ class Monitor {
this.screen.render();
}
logEntry() {
this.logText.log(...arguments);
this.screen.render();
}
layoutLog() {
this.log = blessed.box({
label: __("Logs"),
@ -164,49 +133,7 @@ class Monitor {
this.screen.append(this.modules);
}
layoutAssets() {
this.assets = blessed.box({
label: __("Asset Pipeline"),
tags: true,
padding: 1,
width: "50%",
height: "55%",
left: "50%",
top: "42%",
border: {
type: "line"
},
style: {
fg: -1,
border: {
fg: this.color
}
}
});
this.assetTable = blessed.table({
parent: this.assets,
height: "100%",
width: "100%-5",
align: "left",
pad: 1,
scrollable: true,
alwaysScroll: true,
scrollbar: {
ch: " ",
inverse: true
},
keys: false,
vi: false,
mouse: true,
data: [["Name", "Size"]]
});
this.screen.append(this.assets);
}
layoutStatus() {
this.wrapper = blessed.layout({
width: "25%",
height: "42%",