File: javascript_alert.rb

package info (click to toggle)
ruby-uniform-notifier 1.16.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 240 kB
  • sloc: ruby: 915; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 503 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class UniformNotifier
  class JavascriptAlert < Base
    class << self
      def active?
        !!UniformNotifier.alert
      end

      protected

      def _inline_notify(data)
        message = data.values.compact.join("\n")
        options = UniformNotifier.alert.is_a?(Hash) ? UniformNotifier.alert : {}
        script_attributes = options[:attributes] || {}

        wrap_js_association "alert( #{message.inspect} );", script_attributes
      end
    end
  end
end