Sha256: a2629aecf5021b27348d0439d2c786359909353841e49c7511744ab32ee82d2d

Contents?: true

Size: 1.32 KB

Versions: 9

Compression:

Stored size: 1.32 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}.{css,scss}"]
                base_j = Dir["#{base}.js"]
                
                (out << stylesheet_link_tag("#{get_folder base_s}/#{basename}", media: 'all', 'data-turbo-track' => true) if base_s.any?) rescue nil
                (out << javascript_include_tag("#{get_folder base_j}/#{basename}", 'data-turbo-track' => true) if base_j.any?) rescue nil
            end

            # Application level assets
            (out << stylesheet_link_tag('application', media: 'all', 'data-turbo-track' => true)) rescue nil
            (out << javascript_include_tag('application', 'data-turbo-track' => true)) rescue nil

            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

9 entries across 9 versions & 1 rubygems

Version Path
thecore_ui_commons-3.0.10 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-3.0.9 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-3.0.8 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-3.0.7 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-3.0.6 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-3.0.5 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-3.0.4 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-3.0.3 config/initializers/thecore_ui_commons_helper.rb
thecore_ui_commons-3.0.0 config/initializers/thecore_ui_commons_helper.rb