OSDN Git Service

crush router and render
[pettanr/pettanr.git] / app / assets / javascripts / views / balloons / show.js.coffee
index d68d10f..b9ad79a 100644 (file)
@@ -22,9 +22,49 @@ class Pettanr.Views.Balloon.Show extends Backbone.View
       caption_url: caption_url,\r
       prof_url: prof_url\r
     })\r
+    @listenTo(this, 'ready', @ready)\r
+    @speech_balloon = @item.speech_balloon()\r
+    @speech_balloon.fetch({cache: true}).done =>\r
+      @panel = @speech_balloon.panel({with_elements: true})\r
+      @panel.fetch({cache: false}).done =>  # with elements\r
+        @author = new Pettanr.Views.Show.HeaderAuthor({item: @panel})\r
+        @body = new Pettanr.Views.Panel.Body({\r
+          panel: @panel,\r
+          operators: @operators,\r
+          spot: @item\r
+        })\r
+        @credits = new Pettanr.Views.Panel.ShowModule.Credits({\r
+          pictures: @panel.licensed_pictures()\r
+        })\r
+        @listenTo(@header, 'click:icon', @click_show)\r
+        @listenTo(@header, 'click:caption', @click_show)\r
+        @listenTo(@header, 'click:prof', @click_prof)\r
+        @listenTo(@author, 'click:author', @click_author)\r
+        @listenTo(@credits, 'click:credit:icon', @click_credit_icon)\r
+        @trigger('ready')\r
   \r
   render: () ->\r
     this.$el.html('')\r
-    this.$el.append(@header.render().el)\r
     this\r
   \r
+  ready: () ->\r
+    this.$el.html('')\r
+    this.$el.append(@header.render().el)\r
+    this.$el.append(@author.render().el)\r
+    this.$el.append(@body.render().el)\r
+    this.$el.append(@credits.render().el)\r
+    rb = new Tag.RowBreak()\r
+    this.$el.append(rb.render().el)\r
+  \r
+  click_show: () ->\r
+    window.router.navigate(@item.show_url(), true)\r
+  \r
+  click_author: () ->\r
+    window.router.navigate(@panel.author().show_url(), true)\r
+  \r
+  click_prof: () ->\r
+    window.router.navigate(@item.prof_url(), true)\r
+  \r
+  click_credit_icon: (item) ->\r
+    window.router.navigate(item.show_url(), true)\r
+  \r