OSDN Git Service

t#32471:add profiles
[pettanr/pettanr.git] / app / models / ground_color.rb
index b3c4e23..2f61ce1 100644 (file)
@@ -6,6 +6,9 @@ class GroundColor < ActiveRecord::Base
   
   validates :panel_id, :numericality => {:allow_blank => true}
   validates :code, :presence => true, :numericality => {:greater_than_or_equal_to => 0, :less_than => 0x1000000}
+  validates :orientation, :presence => true, :numericality => true, :inclusion => {:in => 0..1}
+  validates :xy, :numericality => {:greater_than_or_equal_to => 0, :allow_blank => true}
+  validates :wh, :numericality => {:greater_than_or_equal_to => 0, :allow_blank => true}
   validates :z, :presence => true, :numericality => {:greater_than => 0}
   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
   
@@ -18,6 +21,14 @@ class GroundColor < ActiveRecord::Base
     end
   end
   
+  def self.colum_structures
+    @@colum_structures ||= {
+      :code => {
+        :helper => 'panels/color_helper'
+      }
+    }
+  end
+  
   def self.list_opt_for_panel
     {
       :ground_colors => {
@@ -63,58 +74,58 @@ class GroundColor < ActiveRecord::Base
     self.panel.visible? roles
   end
   
-  def opt_div_style spot = nil, opacity = 20
-    o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : ''
-    "position: absolute; width:#{self.get_panel.width}px; height:#{self.get_panel.height}px; z-index:#{self.z}; background-color:##{format("%06x", self.code)}; #{o}"
-  end
-  
-  def new_index
-    @new_index
+  def div_offset
+    xy ? xy : 0
   end
   
-  def new_index= v
-    @new_index = v
+  def div_size
+    wh ? wh : 100 - self.div_offset
   end
   
-  def new_panel
-    @new_panel
-  end
-  
-  def new_panel= v
-    @new_panel = v
-  end
-  
-  def get_panel
-    self.panel || @new_panel
+  def div_x
+    if self.orientation == 0
+      0
+    else
+      self.div_offset
+    end
   end
   
-  def boost
+  def div_y
+    if self.orientation == 0
+      self.div_offset
+    else
+      0
+    end
   end
   
-  def tag_id c = nil
-    'panel' + tag_panel_id + 'ground_color' + tag_element_id + c.to_s
+  def div_width
+    if self.orientation == 0
+      100
+    else
+      self.div_size
+    end
   end
   
-  def field_tag_id f
-    self.tag_id + f.to_s
+  def div_height 
+    if self.orientation == 0
+      self.div_size
+    else
+      100
+    end
   end
   
-  def tag_panel_id
-    self.get_panel.new_record? ? '0' : self.get_panel.id.to_s
+  def opt_div_style spot = nil, opacity = 20
+    o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : ''
+    "position: absolute; left:#{self.div_x}%; top:#{self.div_y}%; width:#{self.div_width}%; height:#{self.div_height}%; z-index:#{self.z}; background-color:##{format("%06x", self.code)}; #{o}"
   end
   
-  def tag_element_id
-    self.new_record? ? '0' : self.id.to_s
+  def boost
   end
   
   def tag_element_type
     'ground_color'
   end
   
-  def tag_new_index
-    self.new_index.to_s
-  end
-  
   def self.default_page_size
     25
   end
@@ -172,6 +183,14 @@ class GroundColor < ActiveRecord::Base
     Kaminari.paginate_array(Array.new(GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
   end
   
+  def self.list_by_panel_where panel_id
+    ['ground_colors.panel_id = ?', panel_id]
+  end
+  
+  def self.list_by_panel panel_id, roles, page = 1, page_size = self.default_page_size
+    self.where(self.list_by_panel_where(panel_id)).includes(self.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
+  end
+  
   def self.list_opt
     {:panel => {:author => {}} }
   end