Add post functionality
[blerg.git] / www / jssrc / blerg / Post.js
index 112a497..ee537f2 100644 (file)
@@ -17,7 +17,10 @@ enyo.kind({
             {name: "loginReminder", tag: "span", classes: "blerg-error", style: "margin-right: 8px; vertical-align: 60%", 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: "api", kind: "blerg.API",
+         onPostSuccessful: "postSuccessful",
+         onPostFailed: "postFailed"}
     ],
     create: function() {
         this.inherited(arguments);
@@ -32,7 +35,15 @@ 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();
+        this.href = '#' + blerg.API.username;
+    },
+    postFailed: function() {
+        alert('Could not post!');
     },
     postVisibilityUpdate: function(inSender, inEvent) {
         if (inEvent.showing) {