Class: Smithy::PageContent

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/smithy/page_content.rb

Instance Method Summary collapse

Instance Method Details

#attributes=(attributes = {}) ⇒ Object



23
24
25
26
# File 'app/models/smithy/page_content.rb', line 23

def attributes=(attributes = {})
  self.content_block_type = attributes[:content_block_type]
  super
end

#content_block_attributes=(attributes) ⇒ Object



28
29
30
31
32
33
34
35
36
# File 'app/models/smithy/page_content.rb', line 28

def content_block_attributes=(attributes)
  return unless attributes.present?
  klass = content_block_type.safe_constantize || "Smithy::#{content_block_type}".safe_constantize
  if klass
    self.content_block = klass.find_or_initialize_by(id: attributes.delete(:id))
    self.content_block.attributes = attributes
    self.content_block
  end
end

#render(liquid_context) ⇒ Object



38
39
40
41
42
43
44
45
46
# File 'app/models/smithy/page_content.rb', line 38

def render(liquid_context)
  liquid_context.stack do
    # push the default assigns into a smithy namespace. They'll still be in the
    # scopes as the original values as well, but this ensures they don't get clobbered
    liquid_context.merge('smithy' => liquid_context.scopes.last)
    liquid_context.merge(self.to_liquid)
    content_block_template.liquid_template.render(liquid_context)
  end
end

#templatesObject



56
57
58
59
60
61
62
63
64
# File 'app/models/smithy/page_content.rb', line 56

def templates
  unless @templates
    @templates = []
    if Smithy::ContentBlock.find_by_name(self.content_block_type.demodulize)
      @templates = Smithy::ContentBlock.find_by_name(self.content_block_type.demodulize).templates
    end
  end
  @templates
end

#to_liquidObject



48
49
50
51
52
53
54
# File 'app/models/smithy/page_content.rb', line 48

def to_liquid
  if content_block.respond_to?(:to_liquid)
    content_block.to_liquid
  else
    content_block.attributes
  end
end