Sha256: 9ea2c30d20a1200062be20e0e9475da7c29f9e425b4d7eabd2d7c437fd9d5ed0

Contents?: true

Size: 1.8 KB

Versions: 10

Compression:

Stored size: 1.8 KB

Contents

module JellyHelper
  include Jelly::Common

  def application_jelly_files(jelly_files_path_from_javascripts = '', rails_root = RAILS_ROOT)
    rails_root = File.expand_path(rails_root)
    (
      Dir[File.expand_path("#{rails_root}/public/javascripts/#{jelly_files_path_from_javascripts}/components/**/*.js")] +
      Dir[File.expand_path("#{rails_root}/public/javascripts/#{jelly_files_path_from_javascripts}/pages/**/*.js")]
    ).map do |path|
      path.gsub("#{rails_root}/public/javascripts/", "").gsub(/\.js$/, "")
    end
  end

  def spread_jelly
    attach_javascript_component("Jelly.Location")
    attach_javascript_component("Jelly.Page", controller.controller_path.camelcase, controller.action_name)
    <<-HTML
      #{window_token_javascript_tag}
      #{attach_javascript_component_javascript_tag(jelly_attachments)}
    HTML
  end

  def window_token_javascript_tag
    javascript_tag("window._token = '#{form_authenticity_token}';")
  end

  def attach_javascript_component_javascript_tag(*components)
    components = [components].flatten
    javascript_tag <<-JS
      $(document).ready(function() {
        Jelly.attach.apply(Jelly, #{components.to_json});
      });
    JS
  end

  def clear_jelly_attached
    jelly_attachments.clear
  end

  def attach_javascript_component(component_name, *args)
    key = jelly_attachment_hash(component_name, *args)
    unless jelly_attachments.include? key
      jelly_attachments << key
    end
  end

  def attach_javascript_component_on_ready(component_name, *args)
    warn "attach_javascript_component_on_ready is deprecated since attach_javascript_component adds components to be attached in a $(document).ready block\n#{puts caller.join("\n\t")}"
    attach_javascript_component(component_name, *args)
  end

  def jelly_attachments
    @jelly_attachments ||= []
  end

end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
honkster-jelly-0.9.1 lib/jelly/jelly_helper.rb
honkster-jelly-0.9.0 lib/jelly/jelly_helper.rb
honkster-jelly-0.8.14 lib/jelly/jelly_helper.rb
jelly-0.8.10 lib/jelly/jelly_helper.rb
honkster-jelly-0.8.13 lib/jelly/jelly_helper.rb
honkster-jelly-0.8.12 lib/jelly/jelly_helper.rb
honkster-jelly-0.8.11 lib/jelly/jelly_helper.rb
honkster-jelly-0.8.10 lib/jelly/jelly_helper.rb
honkster-jelly-0.8.9 lib/jelly/jelly_helper.rb
honkster-jelly-0.8.8 lib/jelly/jelly_helper.rb