Class: ArticleJSON::Elements::Quote

Inherits:
Base
  • Object
show all
Defined in:
lib/article_json/elements/quote.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

parse_hash_list

Constructor Details

#initialize(content:, caption:, float: nil) ⇒ Quote

Returns a new instance of Quote.

Parameters:



9
10
11
12
13
14
# File 'lib/article_json/elements/quote.rb', line 9

def initialize(content:, caption:, float: nil)
  @type = :quote
  @content = content
  @caption = caption
  @float = float
end

Instance Attribute Details

#captionObject (readonly)

Returns the value of attribute caption.



4
5
6
# File 'lib/article_json/elements/quote.rb', line 4

def caption
  @caption
end

#contentObject (readonly)

Returns the value of attribute content.



4
5
6
# File 'lib/article_json/elements/quote.rb', line 4

def content
  @content
end

#floatObject (readonly)

Returns the value of attribute float.



4
5
6
# File 'lib/article_json/elements/quote.rb', line 4

def float
  @float
end

Class Method Details

.parse_hash(hash) ⇒ ArticleJSON::Elements::Quote

Create a quote element from Hash



30
31
32
33
34
35
36
# File 'lib/article_json/elements/quote.rb', line 30

def parse_hash(hash)
  new(
    content: parse_hash_list(hash[:content]),
    caption: parse_hash_list(hash[:caption]),
    float: hash[:float]&.to_sym
  )
end

Instance Method Details

#to_hHash

Hash representation of this quote element

Returns:

  • (Hash)


18
19
20
21
22
23
24
25
# File 'lib/article_json/elements/quote.rb', line 18

def to_h
  {
    type: type,
    float: float,
    content: content.map(&:to_h),
    caption: caption.map(&:to_h),
  }
end