diff options
author | Shantur Rathore <[email protected]> | 2021-09-20 01:22:48 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-20 03:22:48 +0300 |
commit | f160fb561fa5bdcc7e35d35d16f66cc9150a0859 (patch) | |
tree | b143c46ba4748d07da0b877d43152a7444a91c13 /web | |
parent | e38c65f18187163292c9e35957ac0b62efb04b19 (diff) |
Implement macro recording for gpio (#65)
Diffstat (limited to 'web')
-rw-r--r-- | web/share/js/kvm/gpio.js | 20 | ||||
-rw-r--r-- | web/share/js/kvm/hid.js | 6 | ||||
-rw-r--r-- | web/share/js/kvm/recorder.js | 2 | ||||
-rw-r--r-- | web/share/js/kvm/session.js | 8 |
4 files changed, 25 insertions, 11 deletions
diff --git a/web/share/js/kvm/gpio.js b/web/share/js/kvm/gpio.js index 85f6070b..bd9e5dd7 100644 --- a/web/share/js/kvm/gpio.js +++ b/web/share/js/kvm/gpio.js @@ -27,7 +27,7 @@ import {tools, $, $$$} from "../tools.js"; import {wm} from "../wm.js"; -export function Gpio() { +export function Gpio(__recordWsEvent) { var self = this; /************************************************************************/ @@ -167,7 +167,14 @@ export function Gpio() { if (to === "0" && el.hasAttribute("data-confirm-off")) { confirm = el.getAttribute("data-confirm-off"); } - let act = () => __sendPost(`/api/gpio/switch?channel=${channel}&state=${to}`); + let event = { + "event_type": "gpio_switch", + "event": {"channel": channel, "state": to, "wait": 0}, + }; + let act = () => { + __sendPost(`/api/gpio/switch?channel=${channel}&state=${to}`); + __recordWsEvent(event); + }; if (confirm) { wm.confirm(confirm).then(function(ok) { if (ok) { @@ -184,7 +191,14 @@ export function Gpio() { var __pulseChannel = function(el) { let channel = el.getAttribute("data-channel"); let confirm = el.getAttribute("data-confirm"); - let act = () => __sendPost(`/api/gpio/pulse?channel=${channel}`); + let event = { + "event_type": "gpio_pulse", + "event": {"channel": channel, "delay": 0, "wait": 0}, + }; + let act = () => { + __sendPost(`/api/gpio/pulse?channel=${channel}`); + __recordWsEvent(event); + }; if (confirm) { wm.confirm(confirm).then(function(ok) { if (ok) act(); }); } else { diff --git a/web/share/js/kvm/hid.js b/web/share/js/kvm/hid.js index c53c039c..e5048d0a 100644 --- a/web/share/js/kvm/hid.js +++ b/web/share/js/kvm/hid.js @@ -26,22 +26,19 @@ import {tools, $, $$$} from "../tools.js"; import {wm} from "../wm.js"; -import {Recorder} from "./recorder.js"; import {Keyboard} from "./keyboard.js"; import {Mouse} from "./mouse.js"; -export function Hid(__getResolution) { +export function Hid(__getResolution, __recorder) { var self = this; /************************************************************************/ - var __recorder = null; var __keyboard = null; var __mouse = null; var __init__ = function() { - __recorder = new Recorder(); __keyboard = new Keyboard(__recorder.recordWsEvent); __mouse = new Mouse(__getResolution, __recorder.recordWsEvent); @@ -98,7 +95,6 @@ export function Hid(__getResolution) { if (!ws) { self.setState(null); } - __recorder.setSocket(ws); __keyboard.setSocket(ws); __mouse.setSocket(ws); }; diff --git a/web/share/js/kvm/recorder.js b/web/share/js/kvm/recorder.js index 3de98056..b1992eb7 100644 --- a/web/share/js/kvm/recorder.js +++ b/web/share/js/kvm/recorder.js @@ -217,7 +217,7 @@ export function Recorder() { } }, event.event.text, "text/plain"); return; - } else if (["key", "mouse_button", "mouse_move", "mouse_wheel"].includes(event.event_type)) { + } else if (["key", "mouse_button", "mouse_move", "mouse_wheel", "gpio_switch", "gpio_pulse"].includes(event.event_type)) { __ws.send(JSON.stringify(event)); } index += 1; diff --git a/web/share/js/kvm/session.js b/web/share/js/kvm/session.js index 061b235f..b183730a 100644 --- a/web/share/js/kvm/session.js +++ b/web/share/js/kvm/session.js @@ -26,6 +26,7 @@ import {tools, $} from "../tools.js"; import {wm} from "../wm.js"; +import {Recorder} from "./recorder.js"; import {Hid} from "./hid.js"; import {Atx} from "./atx.js"; import {Msd} from "./msd.js"; @@ -44,10 +45,11 @@ export function Session() { var __missed_heartbeats = 0; var __streamer = new Streamer(); - var __hid = new Hid(__streamer.getResolution); + var __recorder = new Recorder(); + var __hid = new Hid(__streamer.getResolution, __recorder); var __atx = new Atx(); var __msd = new Msd(); - var __gpio = new Gpio(); + var __gpio = new Gpio(__recorder.recordWsEvent); var __init__ = function() { __startSession(); @@ -227,6 +229,7 @@ export function Session() { tools.debug("Session: socket opened:", event); $("link-led").className = "led-green"; $("link-led").title = "Connected"; + __recorder.setSocket(__ws); __hid.setSocket(__ws); __missed_heartbeats = 0; __ping_timer = setInterval(__pingServer, 1000); @@ -272,6 +275,7 @@ export function Session() { __gpio.setState(null); __hid.setSocket(null); + __recorder.setSocket(null); __atx.setState(null); __msd.setState(null); __streamer.setState(null); |