// ----------------------------------------------------------------------------- // input handling // ----------------------------------------------------------------------------- var isSendMessage = function(event) { return event.keyCode == 13 && event.shiftKey; } var InputHandler = function(selector) { this.elem = $(selector); this.elem.keydown(_.bind(this.keydown, this)); }; InputHandler.prototype.keydown = function(event) { if (isSendMessage(event)) { return this.handleSend(event); } }; InputHandler.prototype.handleSend = function(event) { event.preventDefault(); event.stopPropagation(); this.sendMessage(event.target.value); this.clear(); }; InputHandler.prototype.sendMessage = function(message) { var event = document.createEvent("Event"); event.initEvent("sendMsg", true, true); event.message = message; document.dispatchEvent(event); }; InputHandler.prototype.clear = function() { this.elem.val(''); } // ----------------------------------------------------------------------------- // connection handling // ----------------------------------------------------------------------------- var ConnectionHandler = function(wsPath) { this.path = wsPath; this.c = new WebSocket(wsPath); this.c.onopen = _.bind(this.onopen, this); this.c.onclose = _.bind(this.onclose, this); this.c.onerror = _.bind(this.onerror, this); this.c.onmessage = _.bind(this.onmessage, this); }; ConnectionHandler.prototype.onopen = function(event) { console.log({open: event}); }; ConnectionHandler.prototype.onclose = function(event) { console.log({close: event}); }; ConnectionHandler.prototype.onmessage = function(event) { this.broadcastMessageReceived(event.data); }; ConnectionHandler.prototype.broadcastMessageReceived = function(message) { var event = document.createEvent("Event"); event.initEvent("receiveResponse", true, true); event.message = message; document.dispatchEvent(event); } ConnectionHandler.prototype.onerror = function(event) { console.log({error: event}); }; ConnectionHandler.prototype.sendMsg = function(message) { this.c.send(message); }; // ----------------------------------------------------------------------------- // response rendering // ----------------------------------------------------------------------------- var MessageDisplay = function(selector, templateSelector) { this.elem = $(selector); this.renderMessage = _.template($(templateSelector).html()); } MessageDisplay.prototype.addMessage = function(message) { var rendered = this.renderMessage({message: message}); this.elem.append(rendered); }; var Skeam = function(config) { this.inputHandler = new InputHandler(config.inputSelector); this.messageDisplay = new MessageDisplay(config.outputSelector, config.messageTemplateSelector); this.conn = new ConnectionHandler(config.wsPath); document.addEventListener("sendMsg", _.bind(this.sendMsg, this), false); document.addEventListener("receiveResponse", _.bind(this.receiveResponse, this), false); }; Skeam.prototype.sendMsg = function(event) { this.conn.sendMsg(event.message + "\n"); } Skeam.prototype.receiveResponse = function(event) { this.messageDisplay.addMessage(event.message); }