From 6efe1aa6a92ce7f9f264903e9d27fb5cf6c32bfe Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Tue, 16 Sep 2014 16:26:16 +1200 Subject: We're not ready for ES6 Lets re-evaluate in June next year when it's actually released --- web/src/js/connection.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 web/src/js/connection.js (limited to 'web/src/js/connection.js') diff --git a/web/src/js/connection.js b/web/src/js/connection.js new file mode 100644 index 00000000..1f2daeef --- /dev/null +++ b/web/src/js/connection.js @@ -0,0 +1,33 @@ +function _Connection(root) {"use strict"; + if (!root) { + root = location.origin + "/api/v1"; + } + this.root = root; + } + _Connection.prototype.init=function() {"use strict"; + this.openWebSocketConnection(); + }; + _Connection.prototype.openWebSocketConnection=function() {"use strict"; + this.ws = new WebSocket(this.root.replace("http", "ws") + "/ws"); + var ws = this.ws; + + ws.onopen = this.onopen.bind(this); + ws.onmessage = this.onmessage.bind(this); + ws.onerror = this.onerror.bind(this); + ws.onclose = this.onclose.bind(this); + }; + _Connection.prototype.onopen=function(open) {"use strict"; + console.log("onopen", this, arguments); + }; + _Connection.prototype.onmessage=function(message) {"use strict"; + //AppDispatcher.dispatchServerAction(...); + console.log("onmessage", this, arguments); + }; + _Connection.prototype.onerror=function(error) {"use strict"; + console.log("onerror", this, arguments); + }; + _Connection.prototype.onclose=function(close) {"use strict"; + console.log("onclose", this, arguments); + }; + +var Connection = new _Connection(); -- cgit v1.2.3