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

Inherits:
Stacked show all
Extended by:
T::Sig
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

Returns a new instance of Calls.



448
449
450
451
452
453
454
455
456
457
458
459
# File 'lib/spoom/coverage/d3/timeline.rb', line 448

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



462
463
464
465
466
467
468
# File 'lib/spoom/coverage/d3/timeline.rb', line 462

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