Sha256: ec263b7f3d4e1a44e1dbc2c8418a7d71cffa1edcbf62f39d2d66097ee197cbe7
Contents?: true
Size: 1.19 KB
Versions: 323
Compression:
Stored size: 1.19 KB
Contents
# frozen_string_literal: true require "action_view" module Playbook module PbContact class Contact < Playbook::KitBase prop :contact_type prop :contact_value prop :contact_detail def classname generate_classname("pb_contact_kit") end 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" when "extension" "phone-plus" else # "unknown" || "other" "phone" end end def formatted_contact_value if contact_type == "email" contact_value elsif contact_type == "extension" && contact_value.match(/^\d{4}$/) contact_value else number_to_phone(formatted_value, area_code: true) end end def envelope_path "app/pb_kits/playbook/utilities/icons/envelope.svg" end private def formatted_value contact_value.to_s.gsub(/\D/, "") end end end end
Version data entries
323 entries across 323 versions & 1 rubygems