svghmi/svghmi.js
author Edouard Tisserant
Fri, 20 Sep 2019 13:38:58 +0200
branchsvghmi
changeset 2783 5ee6967f721d
parent 2780 e468f18df200
child 2788 2ed9ff826d03
permissions -rw-r--r--
SVGHMI: Starting to define JS side more in details.
// svghmi.js

(function(){
    // Open WebSocket to relative "/ws" address
    var ws = new WebSocket(window.location.href.replace(/^http(s?:\/\/[^\/]*)\/.*$/, 'ws$1/ws'));

    // Register message reception handler 
    ws.onmessage = function (evt) {
        // TODO : dispatch and cache hmi tree updates

        var received_msg = evt.data;
        alert("Message is received..."+received_msg); 
    };

    // Once connection established
    ws.onopen = function (evt) {
        // TODO : enable the HMI (was previously offline, or just starts)
        //        show main page

        ws.send("test");
    };
})();