lib/rich/cms/content/item.rb in rich_cms-2.0.7 vs lib/rich/cms/content/item.rb in rich_cms-2.1.0

- old
+ new

@@ -2,74 +2,74 @@ module Rich module Cms module Content class Item - + def initialize(*args) if args.size == 1 && args.first.is_a?(Hash) hash = args.first elsif args.size == 2 array = args else raise ArgumentError, "Invalid arguments #{args.inspect} passed for #{self.class.name}" end - + if hash && (selector = hash.stringify_keys["__selector__"]) @group = Engine.editable_content[selector] @object = @group.fetch hash, false - + attributes, params = hash.partition{|k, v| @object.attribute_names.include? k.to_s} - + @object.attributes = Hash[*attributes.flatten] @params = HashWithIndifferentAccess[*params.flatten] elsif array && array.first.is_a?(Group) && array.last.is_a?(::ActiveRecord::Base) @group, @object = *array end end - + def save @object.save if @object.respond_to? :to_rich_cms_response hash = @object.to_rich_cms_response @params else keys = @group.keys << @group.value.to_s hash = @object.attributes.reject{|k, v| !keys.include?(k.to_s)} end - + selector = @group.selector identifier = @group.identifiers.inject({}){|h, k| h[k] = @object.send(k); h} - + hash.merge({:__selector__ => selector, :__identifier__ => identifier}) end - + def to_tag(options = {}) - tag = options[:tag] || @group.tag || :div - attrs = [] - + attrs = [] default = @group.identifiers.size == 1 ? @object.send(@group.identifiers.first) : @object.attributes.values_at(*@group.identifiers).inspect value = @object.send(@group.value) - + if Engine.can_render_metadata? default = "< #{default} >" keys = @group.keys << @group.value.to_s data = @object.attributes.reject{|k, v| !keys.include?(k.to_s)} data[:editable_input_type] = options[:as] if %w(string text html).include? options[:as].to_s.downcase - + if class_name = @group.selector.match(/^\.\w+$/) (options[:html] ||= {}).store :class, [class_name.to_s.gsub(/^\./, ""), options[:html].try(:fetch, :class, nil)].compact.join(" ") end - + attrs << options[:html].collect{|k, v| "#{k}=\"#{::ERB::Util.html_escape v}\""}.join(" ") if options[:html] attrs << data .collect{|k, v| "data-#{k}=\"#{::ERB::Util.html_escape v}\""}.join(" ") end - - "<#{tag} #{attrs.join(" ")}>#{value.blank? ? default : value}</#{tag}>" + + tag = options[:tag] || @group.tag || (%w(text html).include?(data.try :fetch, :editable_input_type, nil) ? :div : :span) + + "<#{tag} #{attrs.join(" ")}>#{value.blank? ? default : value}</#{tag}>".html_safe end - + end end end end