Sha256: fd46c55a58fc5d5d497acc90e6bfe9119f3fd69fb121d4086f42cf4330ba50fc
Contents?: true
Size: 1008 Bytes
Versions: 1
Compression:
Stored size: 1008 Bytes
Contents
# frozen_string_literal: true require "sidekiq/web/helpers" require "sidekiq/web/action" module Sidekiq module WebActionHelper def render(engine, content, options = {}) path_info = ::Rack::Utils.unescape(env["PATH_INFO"]) replace_views = Sidekiq::Config::DEFAULTS[:replace_views] || {} replace_views.each do |key, content_blocks| next if WebRoute.new("", key, true).match("", path_info).nil? content_blocks.each do |content_block| content_block.call(content) end end super end def self.change_layout(&block) Sidekiq::Config::DEFAULTS[:layout_changes] ||= [] Sidekiq::Config::DEFAULTS[:layout_changes] << block end def _render content = super layout_changes = Sidekiq::Config::DEFAULTS[:layout_changes] || [] layout_changes.each do |content_block| content_block.call(content) end content end end Sidekiq::WebAction.prepend(Sidekiq::WebActionHelper) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sidekiq-belt-0.3.5 | lib/sidekiq/web_action_helper.rb |