Sha256: 382e8a736bb5323f8eb57193157e901ea28ceec42a6a9649a1319404ab268697

Contents?: true

Size: 971 Bytes

Versions: 6

Compression:

Stored size: 971 Bytes

Contents

module Stimulus::Manifest
  extend self

  def generate_from(controllers_path)
    extract_controllers_from(controllers_path).collect do |controller_path|
      import_and_register_controller(controllers_path, controller_path)
    end
  end

  def import_and_register_controller(controllers_path, controller_path)
    controller_path = controller_path.relative_path_from(controllers_path).to_s
    module_path = controller_path.split('.').first
    controller_class_name = module_path.camelize.gsub(/::/, "__")
    tag_name = module_path.remove(/_controller/).gsub(/_/, "-").gsub(/\//, "--")

    <<-JS

import #{controller_class_name} from "./#{module_path}"
application.register("#{tag_name}", #{controller_class_name})
    JS
  end

  def extract_controllers_from(directory)
    (directory.children.select { |e| e.to_s =~ /_controller(\.\w+)+$/ } +
      directory.children.select(&:directory?).collect { |d| extract_controllers_from(d) }
    ).flatten.sort
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
stimulus-rails-1.3.0 lib/stimulus/manifest.rb
stimulus-rails-1.2.2 lib/stimulus/manifest.rb
stimulus-rails-1.2.1 lib/stimulus/manifest.rb
stimulus-rails-1.2.0 lib/stimulus/manifest.rb
stimulus-rails-1.1.1 lib/stimulus/manifest.rb
stimulus-rails-1.1.0 lib/stimulus/manifest.rb