orbit-basic/app/models/design/design.rb

79 lines
1.9 KiB
Ruby
Raw Normal View History

class Design
include Mongoid::Document
include Mongoid::Timestamps
include ParserLayout
field :author, :type => String
field :intro, :type => String
2012-10-24 10:40:38 +00:00
field :title, :type => String
field :version, :type => String
2012-10-24 10:40:38 +00:00
has_one :css_default, :autosave => true, :dependent => :destroy
has_one :layout, :autosave => true, :dependent => :destroy
has_one :css_reset, :autosave => true, :dependent => :destroy
has_many :images, :autosave => true, :dependent => :destroy
has_many :javascripts, :autosave => true, :dependent => :destroy
has_many :pages
2012-10-24 10:40:38 +00:00
has_many :themes, :autosave => true, :dependent => :destroy
accepts_nested_attributes_for :images, :allow_destroy => true
accepts_nested_attributes_for :javascripts, :allow_destroy => true
accepts_nested_attributes_for :themes, :allow_destroy => true
validates_presence_of :author, :title
2012-02-24 11:11:51 +00:00
after_save :parse_css_for_images
2012-10-24 10:40:38 +00:00
2011-08-08 09:23:20 +00:00
2011-12-23 10:34:21 +00:00
def new_files=(*attrs)
attrs[0].map do |key,items_ary| #Loop by JSs,Themes,Imgs
self.files=([items_ary, key])
end
end
# def javascripts=(*attrs)
# self.files = (attrs << 'javascripts')
# end
#
# def themes=(*attrs)
# self.files = (attrs << 'themes')
# end
#
# def images=(*attrs)
# self.files = (attrs << 'images')
# end
2011-12-23 10:34:21 +00:00
# Update or create the attribute records
def files=(attrs)
2011-08-08 09:23:20 +00:00
case attrs.last
when 'layout'
files = self.layout.build
else
files = eval(attrs.last)
2011-08-08 09:23:20 +00:00
end
attrs[0].each do |a|
2011-12-23 10:34:21 +00:00
if a[:id].blank? && !a[:file].blank?
files.build(:file => a[:file], :to_save => true)
else
files.each do |file|
if file.id.to_s == a[:id]
2011-07-26 10:22:17 +00:00
file.to_destroy = a[:to_destroy]
end
end
end
end
end
protected
def parse_css_for_images
2012-10-24 10:40:38 +00:00
self.css_default.parse_urls
self.themes.each do |theme|
2012-10-24 10:40:38 +00:00
theme.parse_urls
end
parse_body_for_images(self)
end
end