Class: Polaris::ToastComponent

Inherits:
Component
  • Object
show all
Defined in:
app/components/polaris/toast_component.rb

Constant Summary

Constants included from ViewHelper

ViewHelper::POLARIS_HELPERS, ViewHelper::POLARIS_TEXT_STYLES

Constants included from FetchOrFallbackHelper

FetchOrFallbackHelper::InvalidValueError

Instance Method Summary collapse

Methods included from ViewHelper

#polaris_body_styles, #polaris_html_classes, #polaris_html_styles, #polaris_icon_source

Methods included from StylesListHelper

#styles_list

Methods included from OptionHelper

#append_option, #prepend_option

Methods included from FetchOrFallbackHelper

#fetch_or_fallback, #fetch_or_fallback_boolean, #fetch_or_fallback_nested

Methods included from ClassNameHelper

#class_names

Constructor Details

#initialize(hidden: false, duration: nil, error: false, **system_arguments) ⇒ ToastComponent

Returns a new instance of ToastComponent.



6
7
8
9
10
11
12
13
14
15
16
# File 'app/components/polaris/toast_component.rb', line 6

def initialize(
  hidden: false,
  duration: nil,
  error: false,
  **system_arguments
)
  @hidden = hidden
  @duration = duration
  @error = error
  @system_arguments = system_arguments
end

Instance Method Details

#system_argumentsObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'app/components/polaris/toast_component.rb', line 18

def system_arguments
  @system_arguments.tap do |opts|
    opts[:tag] = "div"
    opts[:data] ||= {}
    prepend_option(opts[:data], :controller, "polaris-toast")
    opts[:data][:polaris_toast_hidden_value] = @hidden
    opts[:data][:polaris_toast_duration_value] = @duration
    opts[:data][:polaris_toast_has_action_value] = action.present?
    opts[:classes] = class_names(
      opts[:classes],
      "Polaris-Frame-ToastManager__ToastWrapper",
      "Polaris-Frame-ToastManager--toastWrapperEnterDone": !@hidden
    )
  end
end

#toast_classesObject



34
35
36
37
38
39
# File 'app/components/polaris/toast_component.rb', line 34

def toast_classes
  class_names(
    "Polaris-Frame-Toast",
    "Polaris-Frame-Toast--error": @error
  )
end