Class: Compositor::Base
- Inherits:
-
Object
- Object
- Compositor::Base
- Defined in:
- lib/compositor/base.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#context ⇒ Object
Returns the value of attribute context.
-
#root ⇒ Object
Returns the value of attribute root.
Class Method Summary collapse
Instance Method Summary collapse
- #dsl ⇒ Object
- #include_root? ⇒ Boolean
-
#initialize(view_context, attrs = {}) ⇒ Base
constructor
A new instance of Base.
- #root_class_name ⇒ Object
- #to_h ⇒ Object
- #to_hash ⇒ Object
- #to_json(options = {}) ⇒ Object
- #with_root_element ⇒ Object
Constructor Details
#initialize(view_context, attrs = {}) ⇒ Base
6 7 8 9 10 11 12 |
# File 'lib/compositor/base.rb', line 6 def initialize(view_context, attrs = {}) @attrs = attrs self.context = view_context attrs.each_pair do |key, value| self.send("#{key}=", value) end end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
3 4 5 |
# File 'lib/compositor/base.rb', line 3 def attrs @attrs end |
#context ⇒ Object
Returns the value of attribute context.
4 5 6 |
# File 'lib/compositor/base.rb', line 4 def context @context end |
#root ⇒ Object
Returns the value of attribute root.
4 5 6 |
# File 'lib/compositor/base.rb', line 4 def root @root end |
Class Method Details
.inherited(subclass) ⇒ Object
42 43 44 45 46 47 48 49 50 51 |
# File 'lib/compositor/base.rb', line 42 def self.inherited(subclass) method_name = root_class_name(subclass) unless method_name.eql?("base") # check if it's already defined Compositor::DSL.send(:define_method, method_name) do |*args, &block| subclass. new(@context, *args). dsl(self, &block) end end end |
.root_class_name(klazz) ⇒ Object
38 39 40 |
# File 'lib/compositor/base.rb', line 38 def self.root_class_name(klazz) klazz.name.gsub(/(.*::)|(Compositor$)/, '').underscore end |
Instance Method Details
#dsl ⇒ Object
53 54 55 |
# File 'lib/compositor/base.rb', line 53 def dsl raise "Implement in subclasses" end |
#include_root? ⇒ Boolean
30 31 32 |
# File 'lib/compositor/base.rb', line 30 def include_root? self.root ? true : false end |
#root_class_name ⇒ Object
34 35 36 |
# File 'lib/compositor/base.rb', line 34 def root_class_name self.class.root_class_name(self.class) end |
#to_h ⇒ Object
22 23 24 |
# File 'lib/compositor/base.rb', line 22 def to_h to_hash end |
#to_hash ⇒ Object
14 15 16 |
# File 'lib/compositor/base.rb', line 14 def to_hash raise NotImplementedError.new("Abstract method, should be implemented by subclasses") end |
#to_json(options = {}) ⇒ Object
26 27 28 |
# File 'lib/compositor/base.rb', line 26 def to_json( = {}) Oj.dump(to_hash) end |
#with_root_element ⇒ Object
18 19 20 |
# File 'lib/compositor/base.rb', line 18 def with_root_element include_root? ? {root => yield} : yield end |