X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=www%2Fjssrc%2Fblerg%2FPost.js;h=2aa7c3a7a3a7f66462cc7726204c25ab7b320a07;hb=f3923c00ac2967a36685d35fa42224538c6a2d79;hp=a43abf8cb3f6065d4134d3e13367e75c534d1b41;hpb=f4fcda2f29d7c2efe91d9afabf7d5fcd4bd04b5a;p=blerg.git diff --git a/www/jssrc/blerg/Post.js b/www/jssrc/blerg/Post.js index a43abf8..2aa7c3a 100644 --- a/www/jssrc/blerg/Post.js +++ b/www/jssrc/blerg/Post.js @@ -1,21 +1,47 @@ enyo.kind({ name: "blerg.Post", - kind: "Control", + kind: "FittableRows", classes: "blerg-post", handlers: { - onPostVisibility: "postVisibilityUpdate" + onPostVisibility: "postVisibilityUpdate", + onLogin: "loggedIn", + onLogout: "loggedOut" }, - resizePostContentTimeout: null, components: [ {tag: "h2", content: "What's on your mind?"}, - {kind: "onyx.InputDecorator", components: [ - {name: "postContent", classes: "content", kind: "onyx.TextArea", onkeydown: "resizePostContent"} + {kind: "onyx.InputDecorator", alwaysLooksFocused: true, classes: "content-decorator", fit: true, components: [ + {name: "postContent", kind: "onyx.TextArea", classes: "content", onkeyup: "updatePreview", attributes: {tabindex: 4}} ]}, - {classes: "buttons", components: [ - {kind: "onyx.Button", content: "Close", onclick: "closePost", classes: "onyx-negative"}, - {kind: "onyx.Button", content: "Post", onclick: "doPost", classes: "onyx-affirmative"} - ]} + {name: "toolbar", kind: "FittableColumns", classes: "toolbar", components: [ + {classes: "switcher", components: [ + {kind: "onyx.RadioGroup", onActivate: "switchBottomPanel", components: [ + {content: "Replying to"}, + {content: "Preview"}, + {content: "Help"} + ]} + ]}, + {classes: "buttons", fit: true, components: [ + {name: "loginReminder", tag: "span", classes: "blerg-error", style: "margin-right: 8px", content: "You must log in before posting."}, + {kind: "onyx.Button", content: "Close", onclick: "closePost", classes: "onyx-negative", attributes: {tabindex: 6}}, + {name: "postButton", kind: "onyx.Button", content: "Post", onclick: "doPost", classes: "onyx-affirmative", disabled: true, attributes: {tabindex: 5}} + ]}, + ]}, + {name: "bottomPanel", kind: "Panels", classes: "bottom-panel", draggable: false, fit: true, components: [ + {content: "In reply to:"}, + {kind: "Scroller", components: [ + {name: "preview", classes: "record", allowHtml: true}, + ]}, + {kind: "Scroller", components: [ + {name: "helpContent", allowHtml: true}, + ]} + ]}, + {name: "api", kind: "blerg.API", + onPostSuccessful: "postSuccessful", + onPostFailed: "postFailed"} ], + create: function() { + this.inherited(arguments); + }, getData: function() { return this.$.postContent.getValue(); }, @@ -26,11 +52,27 @@ enyo.kind({ this.bubble('onPostVisibility', {showing: false}); }, doPost: function() { - this.bubble('onPost', {data: this.getData()}); + this.$.api.post(this.getData()); + }, + postSuccessful: function() { + this.setData(''); + this.closePost(); + if (location.hash != '#' + blerg.API.username) { + location.hash = '#' + blerg.API.username + this.bubble('onNavigate'); + } else { + this.bubble('onReload'); + } + }, + postFailed: function() { + alert('Could not post!'); }, postVisibilityUpdate: function(inSender, inEvent) { if (inEvent.showing) { this.show(); + // Need to reflow manually because this is hidden by default + this.$.toolbar.reflow(); + this.reflow(); this.$.postContent.focus(); if (inEvent.data && this.getData() == "") { this.setData(inEvent.data); @@ -40,24 +82,35 @@ enyo.kind({ this.hide(); } }, - resizePostContent: function(inSender, inEvent) { - if (this.resizePostContentTimeout) - clearTimeout(this.resizePostContentTimeout); - this.resizePostContentTimeout = setTimeout(function() { - var n = this.$.postContent.hasNode(); - if (!n) - return; - var c = this.getData(); - var lines = Math.floor(c.length / (100 * (n.clientWidth / 1000))) + 1; - var m = c.match(/\r?\n/g); - if (m) - lines += m.length; - if (lines <= 3) { - this.$.postContent.setStyle(""); - } else { - this.$.postContent.setStyle("height: " + (lines * 17) + "pt"); - } - this.resizePostContentTimeout = null; - }.bind(this), 150); - } + updatePreview: function(inSender, inEvent) { + this.$.preview.setContent(blerg.Util.blergFormat(this.getData())); + }, + loggedIn: function() { + this.$.postButton.setDisabled(false); + this.$.loginReminder.hide(); + }, + loggedOut: function() { + this.$.postButton.setDisabled(true); + this.$.loginReminder.show(); + }, + loadHelp: function() { + if (this.$.helpContent.getContent() == '') { + var req = new enyo.Ajax({ + url: baseURL + '/doc/post_help.html', + handleAs: 'text' + }); + req.response(function(inSender, inResponse) { + this.$.helpContent.setContent(inResponse); + }.bind(this)); + req.go(); + } + }, + switchBottomPanel: function(inSender, inEvent) { + var active = inSender.getActive(); + var index = inSender.children.indexOf(active); + this.$.bottomPanel.setIndex(index); + if (index == 2) { + this.loadHelp(); + } + }, });