OSDN Git Service

fix: fetch fail
[pettanr/pettanr.git] / app / models / ground_color.rb
index ea59cc4..a4c9a66 100644 (file)
@@ -1,6 +1,5 @@
-class GroundColor < Pettanr::Content
-  include Element
-  include ElementInspire
+class GroundColor < Peta::Element
+  load_manifest
   belongs_to :panel
   belongs_to :color
   
@@ -12,38 +11,31 @@ class GroundColor < Pettanr::Content
   validates :z, :presence => true, :numericality => {:greater_than => 0}
   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
   
-  def self.owner_model
-    Panel
+  scope :with_panel, -> do
+    includes(:panel)
   end
   
-  def self.valid_encode_columns
-    super + ['caption']
+  scope :find_index, -> do
+    with_panel.where(Panel.arel_table[:publish].gt 0).references(:panel)
   end
   
-  def self.colum_structures
-    @@colum_structures ||= {
-      :code => {
-        :helper => 'panels/color_helper'
-      }
-    }
+  scope :find_private, -> (operators) do 
+    with_panel.where(Panel.arel_table[:author_id].eq operators.author.id).references(:panel)
   end
   
-  def self.list_opt_for_panel
-    {
-      :ground_colors => {
-      }
-    }
+  scope :find_by_panel, -> (panel_id) do 
+    find_index.where(panel_id: panel_id).references(:panel)
   end
   
-  def self.show_opt_for_panel
-    {
-      :ground_colors => {
-      }
-    }
+  scope :find_by_author, -> (author_id) do 
+    find_index.where(Panel.arel_table[:author_id].eq author_id).references(:panel)
   end
   
-  def self.json_opt_for_panel
+  def self.by_author_list_includes
     {
+      :panel => {
+        :author => {}
+      }
     }
   end
   
@@ -63,11 +55,6 @@ class GroundColor < Pettanr::Content
     self.panel_id = pid
   end
   
-  def visible? operators
-    return false unless super
-    self.owner_model.visible? operators
-  end
-  
   def div_offset
     xy ? xy : 0
   end
@@ -108,61 +95,25 @@ class GroundColor < Pettanr::Content
     end
   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; 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 boost
-  end
-  
-  def tag_element_type
-    'ground_color'
+  def style spot = nil, opacity = 20
+    r = {
+      'position' => 'absolute', 'z-index' => self.z, 
+      'top' => self.div_y.to_s + '%', 'left' => self.div_x.to_s + '%', 
+      'width' => self.div_width.to_s + '%', 'height' => self.div_height.to_s + '%', 
+      'background-color' => '#' + format("%06x", self.code)
+    }
+    self.merge_opacity(r, opacity) if spot and spot != self
+    r
   end
   
-  def self.list_where
+  def self.public_list_where list
     'panels.publish > 0'
   end
   
-  def self.list_order
-    'ground_colors.updated_at desc'
-  end
-  
-  def self.list_opt
-    {:panel => {:author => {}} }
-  end
-  
-  def self.list_json_opt
-    {:include => {:panel => {:include => {:author => {}}} }}
-  end
-  
   def self.show_opt
     {:include => {:panel => {:author => {}} }}
   end
   
-  def self.show_json_opt
-    {:include => {:panel => {:include => {:author => {}}} }}
-  end
-  
-  def store operators
-    if self.new_record?
-      self.panel.ground_colors.build(self.attributes)
-    else
-      self.panel.ground_colors.each do |ground_color|
-        next unless ground_color == self
-        attr = self.attributes
-        attr.delete 'id'
-        ground_color.attributes = attr
-        break
-      end
-    end
-    self.panel.store({}, operators)
-  end
-  
-  def remove operators
-    self.panel.remove_element(self, operators)
-  end
-  
   def scenario
     if caption.blank?
       ''