mastodon/lib/premailer_bundled_asset_strategy.rb
2024-06-07 18:13:38 +02:00

36 lines
975 B
Ruby

# frozen_string_literal: true
module PremailerBundledAssetStrategy
def load(url)
if ViteRuby.instance.dev_server_running?
return unless url.start_with?("/#{ViteRuby.config.public_output_dir}/")
# Request from the dev server
headers = {}
# Vite dev server wants this header for CSS files, otherwise it will respond with a JS file that inserts the CSS (to support hot reloading)
headers['Accept'] = 'text/css' if url.end_with?('.scss', '.css')
Net::HTTP.get(
URI("#{ViteRuby.config.origin}#{url}"),
headers
).presence
else
# Read the file from filesystem
vite_path = ViteRuby.instance.manifest.path_for(url)
return unless vite_path
path = Rails.public_path.join(vite_path.delete_prefix('/'))
return unless path.exist?
path.read
end
rescue ViteRuby::MissingEntrypointError
# If the path is not in the manifest, ignore it
end
module_function :load
end