instance method
preloaded_module_packages
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.2.3Signature
preloaded_module_packages(resolver:, entry_point: "application", cache_key: :preloaded_module_packages)
Returns a hash of resolved module paths to their corresponding package objects for all pinned packages that are marked for preloading. The hash keys are the resolved asset paths, and the values are the MappedFile objects containing package metadata including name, path, preload setting, and integrity.
The resolver must respond to path_to_asset, such as ActionController::Base.helpers or ApplicationController.helpers. You’ll want to use the resolver that has been configured for the asset_host you want these resolved paths to use.
Parameters
resolver-
An object that responds to
path_to_assetfor resolving asset paths. entry_point-
The entry point name or array of entry point names to determine which packages should be preloaded. Defaults to +“application”+. Packages with +preload: true+ are always included regardless of entry point. Packages with specific entry point names (e.g., +preload: “admin”+) are only included when that entry point is specified.
cache_key-
A custom cache key to vary the cache used by this method for different cases, such as resolving for different asset hosts. Defaults to
:preloaded_module_packages.
Returns
A hash where:
-
Keys are resolved asset paths (strings)
-
Values are
MappedFileobjects withname,path,preload, andintegrityattributes
Missing assets are gracefully handled and excluded from the returned hash.
Examples
# Get all preloaded packages for the default "application" entry point packages = importmap.preloaded_module_packages(resolver: ApplicationController.helpers) # => { "/assets/application-abc123.js" => #<struct name="application", path="application.js", preload=true, integrity=nil>, # "https://cdn.skypack.dev/react" => #<struct name="react", path="https://cdn.skypack.dev/react", preload=true, integrity="sha384-..."> } # Get preloaded packages for a specific entry point packages = importmap.preloaded_module_packages(resolver: helpers, entry_point: "admin") # Get preloaded packages for multiple entry points packages = importmap.preloaded_module_packages(resolver: helpers, entry_point: ["application", "admin"]) # Use a custom cache key for different asset hosts packages = importmap.preloaded_module_packages(resolver: helpers, cache_key: "cdn_host")
Parameters
-
resolverkeyreq -
entry_pointkey = "application" -
cache_keykey = :preloaded_module_packages
Source
# File lib/importmap/map.rb, line 137
def preloaded_module_packages(resolver:, entry_point: "application", cache_key: :preloaded_module_packages)
cache_as(cache_key) do
expanded_preloading_packages_and_directories(entry_point:).filter_map do |_, package|
resolved_path = resolve_asset_path(package.path, resolver: resolver)
next unless resolved_path
resolved_integrity = resolve_integrity_value(package.integrity, package.path, resolver: resolver)
package = MappedFile.new(
name: package.name,
path: package.path,
preload: package.preload,
integrity: resolved_integrity
)
[resolved_path, package]
end.to_h
end
end
Defined in lib/importmap/map.rb line 137
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Importmap::Map