Class: ArticleJSON::Elements::Image

Inherits:
Base
  • Object
show all
Defined in:
lib/article_json/elements/image.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(source_url:, caption:, float: nil, href: nil, alt: nil) ⇒ Image

Returns a new instance of Image.

Parameters:

  • source_url (String)
  • caption (Array[ArticleJSON::Elements::Text])
  • float (Symbol) (defaults to: nil)
  • href (String) (defaults to: nil)
  • alt (String) (defaults to: nil)


11
12
13
14
15
16
17
18
# File 'lib/article_json/elements/image.rb', line 11

def initialize(source_url:, caption:, float: nil, href: nil, alt: nil)
  @type = :image
  @source_url = source_url
  @caption = caption
  @float = float
  @href = href
  @alt = alt
end

Instance Attribute Details

#altObject (readonly)

Returns the value of attribute alt.



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

def alt
  @alt
end

#captionObject (readonly)

Returns the value of attribute caption.



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

def caption
  @caption
end

#floatObject (readonly)

Returns the value of attribute float.



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

def float
  @float
end

#hrefObject (readonly)

Returns the value of attribute href.



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

def href
  @href
end

#source_urlObject (readonly)

Returns the value of attribute source_url.



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

def source_url
  @source_url
end

Class Method Details

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

Create a image element from Hash



36
37
38
39
40
41
42
43
44
# File 'lib/article_json/elements/image.rb', line 36

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

Instance Method Details

#to_hHash

Hash representation of this image element

Returns:

  • (Hash)


22
23
24
25
26
27
28
29
30
31
# File 'lib/article_json/elements/image.rb', line 22

def to_h
  {
    type: type,
    source_url: source_url,
    float: float,
    caption: caption.map(&:to_h),
    href: href,
    alt: alt,
  }
end