Module: Agilibox::BootstrapHelper

Included in:
AllHelpers
Defined in:
app/helpers/agilibox/bootstrap_helper.rb

Class Attribute Summary collapse

Instance Method Summary collapse

Class Attribute Details

.card_classesObject

rubocop:disable Rails/HelperInstanceVariable



6
7
8
9
10
11
12
13
# File 'app/helpers/agilibox/bootstrap_helper.rb', line 6

def card_classes
  @card_classes ||= {
    :card   => "card",
    :header => "card-header",
    :body   => "card-body",
    :footer => "card-footer",
  }
end

Instance Method Details

#bs_card(header: nil, body: true, footer: nil, card_tag: :div, header_tag: :div, body_tag: :div, footer_tag: :div, card_class: nil, header_class: nil, body_class: nil, footer_class: nil, &block) ⇒ Object

rubocop:disable Metrics/ParameterLists



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'app/helpers/agilibox/bootstrap_helper.rb', line 25

def bs_card( # rubocop:disable Metrics/ParameterLists
  header: nil,
  body: true,
  footer: nil,
  card_tag: :div,
  header_tag: :div,
  body_tag: :div,
  footer_tag: :div,
  card_class: nil,
  header_class: nil,
  body_class: nil,
  footer_class: nil,
  &block
)
  global_classes = Agilibox::BootstrapHelper.card_classes
  card_classes   = ([global_classes[:card]]   + card_class.to_s.split(" ")).compact.sort
  header_classes = ([global_classes[:header]] + header_class.to_s.split(" ")).compact.sort
  body_classes   = ([global_classes[:body]]   + body_class.to_s.split(" ")).compact.sort
  footer_classes = ([global_classes[:footer]] + footer_class.to_s.split(" ")).compact.sort

  if header
    header_html = (header_tag, class: header_classes) { header }
  else
    header_html = "".html_safe
  end

  if body
    body_html = (body_tag, class: body_classes) { capture(&block) }
  else
    body_html = capture(&block)
  end

  if footer
    footer_html = (footer_tag, class: footer_classes) { footer }
  else
    footer_html = "".html_safe
  end

  (card_tag, class: card_classes) do
    header_html + body_html + footer_html
  end
end

#bs_progress_bar(percentage) ⇒ Object



17
18
19
20
21
22
23
# File 'app/helpers/agilibox/bootstrap_helper.rb', line 17

def bs_progress_bar(percentage)
  (:div, class: "progress") do
    (:div, class: "progress-bar", style: "width:#{percentage}%") do
      "#{percentage}%"
    end
  end
end