OSDN Git Service

fix panel editor
[pettanr/pettanr.git] / app / models / balloon.rb
index 45d2ead..35f5971 100644 (file)
@@ -1,11 +1,75 @@
-class Balloon < ActiveRecord::Base
-  has_many :speaches
-  belongs_to :panel
-  belongs_to :resource_picture
-  accepts_nested_attributes_for :speaches
-  
-  def picture_url
-    '/resource_pictures/' + self.resource_picture.filename
+class Balloon < Peta::Element
+  load_manifest
+  belongs_to :speech_balloon
+  belongs_to :speech_balloon_template
+  belongs_to :system_picture
+  
+  validates :speech_balloon_id, :numericality => {:allow_blank => true}
+  validates :speech_balloon_template_id, :presence => true, :numericality => true, :existence => {:both => false}
+  validates :speech_balloon_template_module_name, :presence => true, :length => {:maximum => 50}
+  validates :system_picture_id, :presence => true, :numericality => true, :existence => {:both => false}
+  validates :x, :presence => true, :numericality => true
+  validates :y, :presence => true, :numericality => true
+  validates :width, :presence => true, :numericality => true, :natural_number => true
+  validates :height, :presence => true, :numericality => true, :natural_number => true
+  validates :r, :presence => true, :numericality => true
+#  validates :caption, :presence => true
+  validates :speech_balloon_template_settings, :boost => {:boost_name => :speech_balloon_template}
+
+  def attr_y
+    self.attributes['y']
+  end
+  
+  def url
+    '/system_pictures/' + self.system_picture.filename
+  end
+  
+  def supply_default
+    self.x = 0
+    self.y = 0
+    self.width = 100
+    self.height = 100
+    self.r = 0
+self.system_picture_id = 1
+  end
+  
+  def symbol_option
+    self.speech_balloon.speech_balloon_template.symbol_option
+  end
+  
+  def self.public_list_where
+    'panels.publish > 0'
+  end
+  
+  def self.by_author_list_includes
+    {
+      :speech_balloon => {
+        :panel => {
+          :author => {}
+        }
+      }
+    }
+  end
+  
+  def self.show_opt
+    {:include => {:speech_balloon => {:panel => {:author => {}}, :speech => {}, :speech_balloon_template => {} }}}
+  end
+  
+  def style
+    {
+      'width' => self.width.to_s + 'px','height' => self.height.to_s + 'px',
+      'top' => self.attr_y.to_s + 'px','left' => self.x.to_s + 'px'
+    }
+  end
+  
+  def self.panelize balloon_attributes
+    {'balloon_attributes' => balloon_attributes}
+  end
+  
+  def scenario
+  end
+  
+  def plain_scenario
   end
   
 end