Git Product home page Git Product logo

Comments (4)

rmacklin avatar rmacklin commented on August 23, 2024 1

It's worth noting that propshaft already does raise a MissingAssetError for assets that aren't resolved when the asset is referenced directly in an actionview helper method like javascript_include_tag, etc., as seen here:

def compute_asset_path(path, options = {})
Rails.application.assets.resolver.resolve(path) || raise(MissingAssetError.new(path))
end

The code linked in @tiagobabo's post is specific to assets that are referenced in a url(...) value within a CSS file, which are potentially transformed by the CssAssetUrls processor.

Note, however, that some expressions inside url() should never be transformed (e.g. an inline data-URI or a fully qualified URL to an external domain). This explains why the current implementation (of not raising an error) can be useful.

I do see the value in adding such a configuration to throw an exception rather than just logging a warning if an asset inside url() can't be resolved, but it seems like it would have to be restricted to only apply for expressions inside url() that makes sense to be transformed (e.g. relative URLs).

from propshaft.

tiagobabo avatar tiagobabo commented on August 23, 2024 1

You're right, this only happens for assets required inside url(...), thanks for clarifying that.

from propshaft.

brenogazzola avatar brenogazzola commented on August 23, 2024 1

I’ll close this issue for now as it’s not a bug but a feature request, and from my experience logging provides a better workflow than raising. If anyone has further input, feel free to comment.

from propshaft.

brenogazzola avatar brenogazzola commented on August 23, 2024

My original implementation was for a raise, but when I started migration my own app from sprockets to propshaft, I noticed that it was easier to let all errors to be logged and fix them in batches than doing the crash-fix-reload-crash-fix-reload cycle.

Is there a reason why raising would be better? I'm asking because between our two experiences we might figure out a third option that might be better than logging/raising

from propshaft.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.