Class: Playbook::PbFixedConfirmationToast::FixedConfirmationToast
- Inherits:
-
KitBase
- Object
- ViewComponent::Base
- KitBase
- Playbook::PbFixedConfirmationToast::FixedConfirmationToast
- Defined in:
- app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.rb
Instance Method Summary collapse
- #classname ⇒ Object
- #close_class ⇒ Object
- #icon_value ⇒ Object
- #multi_line_class ⇒ Object
- #position_class ⇒ Object
- #show_text? ⇒ Boolean
Methods inherited from KitBase
Methods included from Cursor
#cursor_options, #cursor_props, #cursor_values, included
Methods included from Display
#display_options, #display_props, #display_values, included
Methods included from LineHeight
included, #line_height_options, #line_height_props, #line_height_values
Methods included from Shadow
included, #shadow_options, #shadow_props, #shadow_values
Methods included from NumberSpacing
Methods included from ZIndex
Methods included from Spacing
included, #max_width_options, #max_width_props, #max_width_values, #spacing_options, #spacing_props, #spacing_values
Methods included from Classnames
#generate_classname, #generate_classname_without_spacing, included
Methods included from Playbook::Props
Methods included from Playbook::PbKitHelper
Methods included from Playbook::PbFormsHelper
Instance Method Details
#classname ⇒ Object
52 53 54 |
# File 'app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.rb', line 52 def classname generate_classname("pb_fixed_confirmation_toast_kit", status, multi_line_class) + close_class + position_class end |
#close_class ⇒ Object
27 28 29 |
# File 'app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.rb', line 27 def close_class closeable.present? ? " remove_toast" : "" end |
#icon_value ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.rb', line 39 def icon_value case status when "success" "check" when "error" "exclamation-triangle" when "neutral" "info-circle" when "tip" "info-circle" end end |
#multi_line_class ⇒ Object
35 36 37 |
# File 'app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.rb', line 35 def multi_line_class multi_line.present? ? "multi_line" : nil end |
#position_class ⇒ Object
31 32 33 |
# File 'app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.rb', line 31 def position_class horizontal && vertical ? " positioned_toast #{vertical} #{horizontal}" : "" end |
#show_text? ⇒ Boolean
23 24 25 |
# File 'app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.rb', line 23 def show_text? text.present? end |