require 'uri' module SewingKit module Webpack # Webpack manifest loading, caching & entry point retrieval class Manifest # Raised if we can't read our webpack manifest for whatever reason class ManifestLoadError < StandardError def initialize(message, orig) super "#{message} (original error #{orig})" end end # Raised if a supplied entry point does not exist in the webpack manifest class EntryPointMissingError < StandardError end class << self # :nodoc: def asset_paths(source) paths = manifest[source] if paths paths else raise EntryPointMissingError, "Can't find entry point '#{source}' in webpack manifest" end end def manifest if ::Rails.env.production? # Cache at class level, as JSON loading/parsing can be expensive. @manifest ||= load_manifest else # Don't cache outside of production; manifest may change. load_manifest end end private def manifest_bundled? !manifest["errors"].any? { |error| error.include? "Module build failed" } end def load_manifest JSON.parse(`node_modules/.bin/sewing-kit manifest --mode #{mode}`) rescue => e raise ManifestLoadError.new("Could not load compiled manifest - have you run `rake sewing_kit:build`?", e) end def mode env = ENV['NODE_ENV'] || Rails.env.to_s || 'production' env = 'development' if env == 'test' env end end end end end