X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fmodels%2Fpanel_picture.rb;h=38995abe21035a8a9aa42cc5f4e69b04701cca98;hb=63ecce87bad492d32f35eff334989bf2c1b60f64;hp=31c4305edf8e7971ea6c1a8d10f60a56caaeef0b;hpb=4b5ea5abe420f26bd59a7f869b38893394306243;p=pettanr%2Fpettanr.git diff --git a/app/models/panel_picture.rb b/app/models/panel_picture.rb index 31c4305e..38995abe 100644 --- a/app/models/panel_picture.rb +++ b/app/models/panel_picture.rb @@ -1,33 +1,77 @@ -class PanelPicture < ActiveRecord::Base +class PanelPicture < Peta::Element + load_manifest belongs_to :panel belongs_to :picture validates :panel_id, :numericality => {:allow_blank => true} - validates :picture_id, :numericality => true, :existence => true - validates :link, :length => {:maximum => 200}, :url => {:allow_blank => true} + validates :picture_id, :numericality => true, :existence => {:both => false} + validates :link, :length => {:maximum => 200}, :url => {:allow_blank => true, :message => I18n.t('errors.messages.url')} validates :x, :presence => true, :numericality => true validates :y, :presence => true, :numericality => true - validates :width, :presence => true, :numericality => true, :not_zero => true, :reverse => true, :resize => true, :sync_vh => true - validates :height, :presence => true, :numericality => true, :not_zero => true, :reverse => true, :resize => true, :sync_vh => true + validates :width, :presence => true, :numericality => true, :not_zero => true, :reverse => true, :sync_vh => true + validates :height, :presence => true, :numericality => true, :not_zero => true, :reverse => true, :sync_vh => true validates :z, :presence => true, :numericality => {:greater_than => 0} validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0} + def _y + self.attributes['y'] + end + + def self.by_author_list_includes + { + :panel => { + :author => {} + } + } + end + + def self.has_picture? + true + end + + def supply_default + self.x = 0 + self.y = 0 + if self.picture + self.width = self.picture.width + self.height = self.picture.height + end + if self.panel + self.t = self.panel.new_t + self.z = self.panel.new_z + end + end + + def overwrite pid + self.panel_id = pid + end + def flip res = (self.height > 0 ? '' : 'v') + (self.width > 0 ? '' : 'h') - res += '/' unless res.empty? + res = res # format of /1.png?subdir=v + # res += '/' unless res.empty? # format of /v/1.png res end def filename - self.flip + self.picture.filename + self.picture.filename + '?subdir=' + self.flip end def url '/pictures/' + self.filename end - def opt_img_tag - {:src => self.url, :vPicture => self.id, :width => self.width.abs, :height => self.height.abs, :alt => self.caption, :style => "top:#{self.y}px; left:#{self.x}px; z-index:#{self.z}; "} + def opt_div_style + "top:#{self._y}px; left:#{self.x}px; z-index:#{self.z}; position: absolute;" + end + + def opt_img_tag spot = nil, opacity = 20 + o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : '' + self.tag_attributes(:img, { + :class => "panel-picture", :vPicture => self.id, + :src => self.url, :width => self.width.abs, :height => self.height.abs, :picture_id => self.picture_id, :ext => self.picture.ext, :alt => self.caption, + :style => "#{o}" + }) end def tmb_opt_img_tag @@ -35,49 +79,32 @@ class PanelPicture < ActiveRecord::Base {:src => self.url, :width => tw, :height => th, :alt => self.caption} end - def self.default_page_size - 25 - end - - def self.max_page_size - 100 - end - - def self.page prm = nil - page = prm.to_i - page = 1 if page < 1 - page - end - - def self.page_size prm = self.default_page_size - page_size = prm.to_i - page_size = self.max_page_size if page_size > self.max_page_size - page_size = self.default_page_size if page_size < 1 - page_size + def symbol_option + self.picture.symbol_option end - def self.list page = 1, page_size = self.default_page_size - opt = {} - opt.merge!(PanelPicture.list_opt) - opt.merge!({:limit => page_size, :offset => (page -1) * page_size}) if page_size > 0 - opt.merge!({:conditions => 'panels.publish > 0', :order => 'panel_pictures.updated_at desc'}) - PanelPicture.find(:all, opt) + def self.public_list_where + 'panels.publish > 0' end - def self.list_opt + def self.show_opt {:include => {:panel => {:author => {}}, :picture => {:artist => {}, :license => {}}}} end - def self.list_json_opt - {:include => {:panel => {:include => {:author => {}}}, :picture => {:include => {:artist => {}, :license => {}}} }} + def scenario + if caption.blank? + '' + else + '

' + ERB::Util.html_escape(self.caption) + '

' + end end - def self.mylist au, page = 1, page_size = Author.default_panel_picture_page_size - opt = {} - opt.merge!(PanelPicture.list_opt) - opt.merge!({:limit => page_size, :offset => (page -1) * page_size}) if page_size > 0 - opt.merge!({:conditions => ['panels.author_id = ?', au.id], :order => 'panel_pictures.updated_at desc'}) - PanelPicture.find(:all, opt) + def plain_scenario + if caption.blank? + '' + else + self.caption + "\n" + end end end