Class: Playbook::PbDateStacked::DateStacked
- Inherits:
-
Object
- Object
- Playbook::PbDateStacked::DateStacked
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
#dark_props, #generate_classname, #generate_classname_without_spacing, #initialize, #prop, #spacing_options, #spacing_props, #spacing_values
Instance Method Details
#classname ⇒ Object
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
|
#day ⇒ Object
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)
content_tag(:time, datetime: day.to_iso) do
"#{day.to_day}"
end
end
|
#month ⇒ Object
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)
content_tag(:time, datetime: month.to_iso) do
"#{month.to_month}"
end
end
|
#title_size ⇒ Object
28
29
30
|
# File 'app/pb_kits/playbook/pb_date_stacked/date_stacked.rb', line 28
def title_size
size == "md" ? 3: 4
end
|
#year ⇒ Object
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
content_tag(:time, datetime: year) do
"#{year}"
end
else
end
end
|