Sha256: 735b329efe6d453f3f7247d79b41f0d1213dd25d6c90f2c23fbd4985876271a0

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

module Helpers
    module ThecoreUiCommonsHelper
        def get_asset_tags_for(basename)
            out = []
            # Needs to reverse since Paths are traversed in the order they occur in the search path. By default, this means the files in app/assets take precedence, and will mask corresponding paths in lib and vendor.
            Rails.application.config.assets.paths.reverse.each do |basedir|
                base = "#{basedir}/**/#{basename}"
                base_s = Dir["#{base}.scss"]
                base_j = Dir["#{base}.js"]
                out << stylesheet_link_tag("#{get_folder base_s}/#{basename}", media: 'all', 'data-turbolinks-track' => true) if base_s.any?
                out << javascript_include_tag("#{get_folder base_j}/#{basename}", 'data-turbolinks-track' => true) if base_j.any?
            end
            out.join("\n    ").html_safe
        end
        
        def get_folder(base)
            base.first.split("/")[-2]
        end
    end
end

ActiveSupport.on_load(:action_view) { include Helpers::ThecoreUiCommonsHelper }

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
thecore_ui_commons-2.1.13 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-2.1.12 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-2.1.11 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-2.1.10 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-2.1.9 config/initializers/thecore_ui_commons_helper.rb