Class: Playbook::PbGauge::Gauge

Inherits:
KitBase
  • Object
show all
Defined in:
app/pb_kits/playbook/pb_gauge/gauge.rb

Instance Method Summary collapse

Methods inherited from KitBase

#object

Methods included from NumberSpacing

included

Methods included from ZIndex

included

Methods included from Spacing

included, #max_width_options, #max_width_props, #max_width_values, #spacing_options, #spacing_props, #spacing_values

Methods included from Classnames

#generate_classname, #generate_classname_without_spacing, included

Methods included from Playbook::Props

#initialize, #prop

Methods included from Playbook::PbKitHelper

#pb_rails

Methods included from Playbook::PbFormsHelper

#pb_form_with

Instance Method Details

#chart_data_formattedObject



24
25
26
27
# File 'app/pb_kits/playbook/pb_gauge/gauge.rb', line 24

def chart_data_formatted
  chart_data.map { |hash| hash[:y] = hash.delete :value }
  chart_data
end

#chart_optionsObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'app/pb_kits/playbook/pb_gauge/gauge.rb', line 29

def chart_options
  {
    id: id,
    chartData: chart_data_formatted,
    circumference: full_circle ? [0, 360] : [-100, 100],
    disableAnimation: disable_animation,
    height: height,
    min: min,
    max: max,
    title: title,
    suffix: suffix,
    prefix: prefix,
    showLabels: show_labels,
    style: style,
    tooltipHtml: tooltip_html,
    type: "gauge",
  }.to_json.html_safe
end

#classnameObject



48
49
50
# File 'app/pb_kits/playbook/pb_gauge/gauge.rb', line 48

def classname
  generate_classname("pb_gauge_kit")
end