-
-
Save richhollis/971f43ac663f2f676dc5 to your computer and use it in GitHub Desktop.
Inline CSS or JS in Rails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.assets.precompile += [ | |
# precompile any CSS or JS file that doesn't start with _ | |
/(^inline[^_\/]|\/[^_])[^\/]*.(js|css)$/, | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def read_file_contents(stylesheet) | |
if %w(test development).include?(Rails.env.to_s) | |
# if we're running the full asset pipeline, | |
# just grab the body of the final output | |
stylesheet.body | |
else | |
# in a production-like environment, read the | |
# fingerprinted and compiled file | |
File.read(File.join(Rails.root, 'public', 'assets', stylesheet.digest_path)) | |
end | |
end | |
def inline_file(asset_path) | |
file = Rails.application.assets.find_asset(asset_path) | |
file.nil? ? '' : read_file_contents(file) | |
end | |
def inline_js(asset_path) | |
"<script>#{inline_file asset_path}</script>" | |
end | |
def inline_css(asset_path) | |
"<style>#{inline_file asset_path}</style>" | |
end | |
# use a method like this to automatically load CSS that | |
# follows the current controller/action name structure | |
# example: assets/stylesheets/views/users/show.sass | |
def current_view_stylesheet | |
inline_css("views/#{params[:controller]}/#{params[:action]}") + | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment