Sha256: 70b2cd92185affdcae9182d73c31c124d177f153636dcecd833df5bc9a9cf97a

Contents?: true

Size: 886 Bytes

Versions: 20

Compression:

Stored size: 886 Bytes

Contents

module React
  module ServerRendering
    # Get asset content by reading the compiled file from disk using a Sprockets::Manifest.
    #
    # This is good for Rails production when assets are compiled to public/assets
    # but sometimes, they're compiled to other directories (or other servers)
    class ManifestContainer
      def initialize
        @manifest = ::Rails.application.assets_manifest
      end

      def find_asset(logical_path)
        asset_path = @manifest.assets[logical_path] || raise("No compiled asset for #{logical_path}, was it precompiled?")
        asset_full_path = ::Rails.root.join('public', @manifest.dir, asset_path)
        File.read(asset_full_path)
      end

      # sprockets-rails < 2.2.2 does not have `application.assets_manifest`
      def self.compatible?
        ::Rails.application.respond_to?(:assets_manifest)
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
react-rails-2.7.1 lib/react/server_rendering/manifest_container.rb
react-rails-2.7.0 lib/react/server_rendering/manifest_container.rb
react-rails-2.7.0.rc.2 lib/react/server_rendering/manifest_container.rb
react-rails-2.7.0.rc.1 lib/react/server_rendering/manifest_container.rb
react-rails-2.7.0.rc.0 lib/react/server_rendering/manifest_container.rb
react-rails-2.6.2 lib/react/server_rendering/manifest_container.rb
react-rails-2.6.1 lib/react/server_rendering/manifest_container.rb
react-rails-2.6.0 lib/react/server_rendering/manifest_container.rb
react-rails-2.5.0 lib/react/server_rendering/manifest_container.rb
react-rails-2.4.7 lib/react/server_rendering/manifest_container.rb
react-rails-2.4.6 lib/react/server_rendering/manifest_container.rb
react-rails-2.4.5 lib/react/server_rendering/manifest_container.rb
react-rails-2.4.4 lib/react/server_rendering/manifest_container.rb
react-rails-2.4.4.pre lib/react/server_rendering/manifest_container.rb
react-rails-2.4.3 lib/react/server_rendering/manifest_container.rb
react-rails-2.4.2 lib/react/server_rendering/manifest_container.rb
react-rails-2.4.1 lib/react/server_rendering/manifest_container.rb
react-rails-2.4.0 lib/react/server_rendering/manifest_container.rb
react-rails-2.3.1 lib/react/server_rendering/manifest_container.rb
react-rails-2.3.0 lib/react/server_rendering/manifest_container.rb