2017-03-22 22:17:16 +01:00
|
|
|
/*
|
|
|
|
* Author: ntoff
|
|
|
|
* License: AGPLv3
|
|
|
|
*/
|
|
|
|
$(function() {
|
|
|
|
function EstopViewModel(parameters) {
|
|
|
|
var self = this;
|
2018-03-01 03:04:10 +01:00
|
|
|
|
2017-03-22 22:17:16 +01:00
|
|
|
self.loginState = parameters[0];
|
2017-03-22 23:54:26 +01:00
|
|
|
self.printerState = parameters[1];
|
2017-11-09 15:22:35 +01:00
|
|
|
self.settings = parameters[2];
|
|
|
|
|
|
|
|
self.estopCommand = ko.observable("M112");
|
2018-03-01 03:04:10 +01:00
|
|
|
self.estopReconnect = ko.observable(false);
|
2017-03-24 07:18:17 +01:00
|
|
|
|
2018-03-01 03:04:10 +01:00
|
|
|
self.enableEstop = ko.pureComputed(function() {
|
2017-03-22 23:54:26 +01:00
|
|
|
return self.printerState.isOperational() && self.loginState.isUser();
|
|
|
|
});
|
2017-03-24 07:18:17 +01:00
|
|
|
|
|
|
|
self.estopState = ko.pureComputed(function() {
|
|
|
|
return self.loginState.isUser() > 0 ? "estop_sidebar" : "estop_sidebar_disabled";
|
|
|
|
});
|
|
|
|
|
|
|
|
self.buttonText = ko.pureComputed(function() {
|
|
|
|
if (self.enableEstop()) {
|
|
|
|
return gettext("EMERGENCY STOP");
|
|
|
|
} else {
|
|
|
|
return gettext("Offline");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-11-09 15:22:35 +01:00
|
|
|
self.buttonTitle = ko.pureComputed(function() {
|
|
|
|
self.estopCommand(self.settings.settings.plugins.estop.estopCommand());
|
|
|
|
return gettext("Sends " + self.estopCommand() + " to the printer IMMEDIATELY");
|
|
|
|
});
|
|
|
|
|
|
|
|
self.onBeforeBinding = function () {
|
2018-03-01 03:04:10 +01:00
|
|
|
self.updateSettingsValues();
|
2017-11-09 15:22:35 +01:00
|
|
|
}
|
2018-03-01 03:04:10 +01:00
|
|
|
self.onSettingsHidden = function () {
|
|
|
|
self.updateSettingsValues();
|
|
|
|
}
|
|
|
|
|
|
|
|
self.updateSettingsValues = function () { //lazy way of making sure we have the latest version of the settings
|
|
|
|
self.estopCommand(self.settings.settings.plugins.estop.estopCommand());
|
|
|
|
self.estopReconnect(self.settings.settings.plugins.estop.estopReconnect());
|
|
|
|
}
|
|
|
|
|
|
|
|
self.sendEstopCommand = function () {
|
|
|
|
if (self.enableEstop()) {
|
2017-11-09 15:22:35 +01:00
|
|
|
self.estopCommand(self.settings.settings.plugins.estop.estopCommand());
|
|
|
|
OctoPrint.control.sendGcode(self.estopCommand());
|
2018-03-01 03:04:10 +01:00
|
|
|
|
|
|
|
if (self.estopReconnect()) { //cycle the connection (if enabled) to reset the control board
|
|
|
|
OctoPrint.connection.disconnect(); //send a disconnect, maybe useful for breaking out of blocking commands.
|
|
|
|
|
|
|
|
self.onEventDisconnected =function () { //wait until octoprint has disconnected
|
|
|
|
OctoPrint.connection.connect(); //reconnect
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-03-22 22:17:16 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-01 03:04:10 +01:00
|
|
|
OCTOPRINT_VIEWMODELS.push({
|
2017-03-22 22:17:16 +01:00
|
|
|
construct: EstopViewModel,
|
|
|
|
dependencies: [
|
2018-03-01 03:04:10 +01:00
|
|
|
"loginStateViewModel",
|
|
|
|
"printerStateViewModel",
|
|
|
|
"settingsViewModel"],
|
2017-03-24 07:18:17 +01:00
|
|
|
elements: ["#sidebar_plugin_estop_wrapper"]
|
2017-03-22 22:17:16 +01:00
|
|
|
});
|
|
|
|
});
|