Class: Spoom::Coverage::D3::Timeline::Sigils

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) ⇒ Sigils

Returns a new instance of Sigils.



421
422
423
424
425
426
427
428
429
430
431
432
# File 'lib/spoom/coverage/d3/timeline.rb', line 421

def initialize(id, snapshots)
  keys = Snapshot::STRICTNESSES
  data = snapshots.map do |snapshot|
    {
      timestamp: snapshot.commit_timestamp,
      commit: snapshot.commit_sha,
      total: snapshot.files,
      values: snapshot.sigils,
    }
  end
  super(id, data, keys)
end

Instance Method Details

#tooltipObject



435
436
437
438
439
440
441
# File 'lib/spoom/coverage/d3/timeline.rb', line 435

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