Class: Playbook::PbDateStacked::DateStacked

Inherits:
Object
  • Object
show all
Includes:
ActionView::Context, ActionView::Helpers::TagHelper, Playbook::Props
Defined in:
app/pb_kits/playbook/pb_date_stacked/date_stacked.rb

Instance Method Summary collapse

Methods included from Playbook::Props

#generate_classname, #generate_classname_without_spacing, #initialize, #prop, #spacing_options, #spacing_props, #spacing_values

Instance Method Details

#classnameObject



24
25
26
# File 'app/pb_kits/playbook/pb_date_stacked/date_stacked.rb', line 24

def classname
  generate_classname("pb_date_stacked_kit", align, size, reverse_class, dark_class)
end

#dayObject



32
33
34
35
36
37
# File 'app/pb_kits/playbook/pb_date_stacked/date_stacked.rb', line 32

def day
  day = Playbook::PbKit::PbDateTime.new(date)
  (:time, datetime: day.to_iso) do
    "#{day.to_day}"
  end
end

#monthObject



39
40
41
42
43
44
# File 'app/pb_kits/playbook/pb_date_stacked/date_stacked.rb', line 39

def month
  month = Playbook::PbKit::PbDateTime.new(date)
  (:time, datetime: month.to_iso) do
    "#{month.to_month}"
  end
end

#title_sizeObject



28
29
30
# File 'app/pb_kits/playbook/pb_date_stacked/date_stacked.rb', line 28

def title_size
  size == "md" ? 3: 4
end

#yearObject



46
47
48
49
50
51
52
53
54
55
# File 'app/pb_kits/playbook/pb_date_stacked/date_stacked.rb', line 46

def year
  current_year = DateTime.now.year.to_i
  year = Playbook::PbKit::PbDateTime.new(date).to_year.to_i
  if current_year != year
    (:time, datetime: year) do
      "#{year}"
    end
  else
  end
end