Class: Spoom::Coverage::D3::Base

Inherits:
Object
  • Object
show all
Extended by:
T::Helpers, T::Sig
Defined in:
lib/spoom/coverage/d3/base.rb

Direct Known Subclasses

CircleMap, Pie, Timeline

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, data) ⇒ Base

Returns a new instance of Base.



17
18
19
20
# File 'lib/spoom/coverage/d3/base.rb', line 17

def initialize(id, data)
  @id = id
  @data = data
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



14
15
16
# File 'lib/spoom/coverage/d3/base.rb', line 14

def id
  @id
end

Class Method Details

.header_scriptObject



28
29
30
# File 'lib/spoom/coverage/d3/base.rb', line 28

def self.header_script
  ""
end

.header_styleObject



23
24
25
# File 'lib/spoom/coverage/d3/base.rb', line 23

def self.header_style
  ""
end

Instance Method Details

#htmlObject



33
34
35
36
37
38
# File 'lib/spoom/coverage/d3/base.rb', line 33

def html
  <<~HTML
    <svg id="#{id}"></svg>
    <script>#{script}</script>
  HTML
end

#scriptObject



46
# File 'lib/spoom/coverage/d3/base.rb', line 46

def script; end

#tooltipObject



41
42
43
# File 'lib/spoom/coverage/d3/base.rb', line 41

def tooltip
  ""
end