Node-RED dashboard のボタンで押したときと離したときを検出したい
経緯
ラジコンのコントローラーのようなものをNode-REDのdashboardで作ろうとしたのだが、dashboardのボタンはclickイベントしか検出できないため、ボタンを押している間動くようなことが実現できない。
ui-templateを使えばできそうなのだが、Angular.jsとjQueryがわからず途方に暮れていた。
解決策を発見
いろいろ検索していたら以下のgistを発見した。
This ui-template creates a momentary button that outputs true on mousedown/touchstart and false on mouseup/touchend
とあるので、まさにやりたいことであった。しかも、スマホ操作touchdownとtouchendにも対応。
ui-templateノードの中身だけ抜き出させてもらった。
<style>
.nr-dashboard-template {
padding: 0px;
}
</style>
<div class="momentary">
<md-button style="width:100%; height:48px; margin: 0px"> Momentary Button</md-button>
</div>
<script>
(function($scope) {
$('.momentary').on('touchstart mousedown', function(e) {
e.preventDefault(); //prevent default behavior
$scope.send({"payload": true});
});
$('.momentary').on('touchend mouseup', function(e) {
e.preventDefault(); //prevent default behavior
$scope.send({"payload": false});
});
})(scope);
</script>
これをui-templateノードの中に入れてデプロイすれば、ボタンを押したときはpayloadにtrueが、離したときにはpayloadにfalseが出てくるようになる。
おわりに
node-red-dashboardのtemplateノードを調べたかったのだが、Node-REDにもtemplateノードがあるので検索性が悪かった。
Author And Source
この問題について(Node-RED dashboard のボタンで押したときと離したときを検出したい), 我々は、より多くの情報をここで見つけました https://qiita.com/ktetsuo/items/c2ed7d26db797caf53a4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .