Class: Playbook::PbContact::Contact
- Inherits:
-
Object
- Object
- Playbook::PbContact::Contact
show all
- Includes:
- ActionView::Helpers::NumberHelper, Playbook::Props
- Defined in:
- app/pb_kits/playbook/pb_contact/contact.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
17
18
19
|
# File 'app/pb_kits/playbook/pb_contact/contact.rb', line 17
def classname
generate_classname("pb_contact_kit")
end
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# File 'app/pb_kits/playbook/pb_contact/contact.rb', line 21
def contact_icon
case contact_type
when "cell"
"mobile"
when "home"
"phone"
when "work"
"phone-office"
when "email"
"envelope"
when "work-cell"
"phone-laptop"
when "wrong-phone"
"phone-slash"
else "phone"
end
end
|
40
41
42
43
44
45
46
|
# File 'app/pb_kits/playbook/pb_contact/contact.rb', line 40
def formatted_contact_value
if contact_type == "email"
contact_value
else
number_to_phone(formatted_value, area_code: true)
end
end
|