OSDN Git Service

add credit
[pettanr/pettanr.git] / app / assets / javascripts / models / speech.js.coffee
index bf3fb39..7109b72 100644 (file)
@@ -1,70 +1,44 @@
-class SpeechBalloon extends Element\r
-  @single: () ->\r
+class Pettanr.Speech extends Peta.Element\r
+  url: '/speeches/'\r
+  \r
+  @singular: () ->\r
     'Speech'\r
   \r
   @plural: () ->\r
     'Speeches'\r
   \r
-  @colum_structures: ->\r
-    {}\r
-  \r
   defaults: {\r
-    x: 11\r
+    id: null,\r
+    x: 0,\r
+    y: 0,\r
+    width: 100,\r
+    height: 100\r
   } \r
   \r
-  initialize: () ->\r
-    confirm("Welcome to this world")\r
+  speech_balloon: () ->\r
+    new Pettanr.SpeechBalloon({id: @get('speech_balloon_id')})\r
   \r
-  @test: () ->\r
-    confirm( @single())\r
-    confirm( @plural() )\r
-    confirm( @class_name() )\r
-    confirm( @element_name() )\r
-    confirm( @table_name() )\r
-    confirm( @path_name() )\r
-    confirm( @colum_structures() )\r
-    \r
-  has_picture: () ->\r
-    true\r
+  @text_align_texts: () -> \r
+    ['left', 'left', 'right', 'center']\r
   \r
-  has_part: () ->\r
-    false\r
+  symbol_option: (cb) ->\r
+    sb = @speech_balloon()\r
+    sb.fetch().done ->\r
+      sbt = sb.speech_balloon_template()\r
+      sbt.fetch().done ->\r
+        sp = sbt.system_picture()\r
+        sp.fetch().done ->\r
+          cb(sp.tmb_opt_img_tag())\r
   \r
-  extend_column: () ->\r
-    null\r
+  text_align_text: () ->\r
+    Pettanr.Speech.text_align_texts()[@get('text_align')]\r
+  \r
+  scenario: () ->\r
+    @boosts('read')\r
+    @render(@get('content'))\r
+    \r
+  \r
+  initialize: () ->\r
+    if @id\r
+      @url = @url + @id\r
   \r
-  test: () ->\r
-    confirm( @has_picture() )\r
-    confirm( @has_part() )\r
-    confirm( @parts() )\r
-    confirm( @has_helper('column_name') )\r
-    confirm( @element_name() )\r
-    confirm( @extend_column() )\r
-    confirm( @extend_element_name() )\r
-    confirm( @find_configurations(window.configurations,'v') )\r
-    confirm( @new_index() )\r
-    confirm( @set_new_index(3) )\r
-    confirm( @set_new_panel('v') )\r
-    confirm( @get_new_panel() )\r
-    confirm( '@get_panel()' )\r
-    confirm( @get_panel() )\r
-    confirm( @tag_id('c') )\r
-    confirm( @field_tag_id('f') )\r
-    confirm( @tag_panel_id() )\r
-    confirm( @tag_element_id() )\r
-    confirm( @tag_element_type() )\r
-    confirm( @tag_new_index() )\r
-    confirm( @path_name() )\r
-    confirm( @form_template() )\r
-    confirm( @scenario_template() )\r
-    confirm( @element_face_template() )\r
-    confirm( @form_helper_template('colum_name') )\r
-    confirm( @tag_attributes('column') )\r
-    confirm( @field_tag_attributes('column', 0, {}) )\r
-    confirm( @any_tag_attributes('name', {}) )\r
-    confirm( @select_tag_attributes(true, 'column', 0) )\r
-    confirm( @tag_attr('column', {}) )\r
-    confirm( @field_tag_attr('column', 1, {}) )\r
-    confirm( @any_tag_attr('name', {}) )\r
-\r
-@PanelPicture = PanelPicture\r