Class: Spoom::Coverage::D3::Timeline::Calls

Inherits:
Stacked show all
Defined in:
lib/spoom/coverage/d3/timeline.rb

Instance Attribute Summary

Attributes inherited from Base

#id

Instance Method Summary collapse

Methods inherited from Stacked

#line, #plot, #script

Methods inherited from Spoom::Coverage::D3::Timeline

#area, header_script, header_style, #line, #plot, #points, #script, #x_scale, #x_ticks, #y_scale, #y_ticks

Methods inherited from Base

header_script, header_style, #html, #script

Constructor Details

#initialize(id, snapshots) ⇒ Calls

: (String id, Array snapshots) -> void



444
445
446
447
448
449
450
451
452
453
454
455
# File 'lib/spoom/coverage/d3/timeline.rb', line 444

def initialize(id, snapshots)
  keys = ["false", "true"]
  data = snapshots.map do |snapshot|
    {
      timestamp: snapshot.commit_timestamp,
      commit: snapshot.commit_sha,
      total: snapshot.calls_typed + snapshot.calls_untyped,
      values: { true: snapshot.calls_typed, false: snapshot.calls_untyped },
    }
  end
  super(id, data, keys)
end

Instance Method Details

#tooltipObject

: -> String



459
460
461
462
463
464
465
# File 'lib/spoom/coverage/d3/timeline.rb', line 459

def tooltip
  <<~JS
    function tooltip_#{id}(d) {
      tooltipTimeline(d, "calls");
    }
  JS
end