Code Monkey home page Code Monkey logo

Comments (3)

widmogrod avatar widmogrod commented on August 12, 2024

Does route is pointing to one action in this controller or more, or all?
Why you want to merge configuration?

Maybe better would be to extract common assets to single variable (if you're using php configuration).

Or, create simpler collections of assets and use them in configuration of controller and route. Thanks to that duplication, configuration is more readable and easy to understand, than merging or extracting configuration.

            'controllers' => array(
                'error' => array(
                    '@jquery_ui_css',
                    '@bootstrap_css',
                    '@my_common_stuff_css',
                    '@my_common_stuff_js',
                ),
            ),
            'routes' => array(
                'default' => array(
                    '@jquery_ui_css',
                    '@bootstrap_css',
                    '@my_common_stuff_css',
                    '@my_common_stuff_js',
                ),

This algorithm of choosing configuration is designed that way without any specific reason.
Main gool was to allow override configuration of precise router by specifying configuration for controller.

from zf2-assetic-module.

widmogrod avatar widmogrod commented on August 12, 2024

You have also option to use default configuration which you can mix with regular configuration.

            /*
             * The default assets to load.
             * If the "mixin" option is true, then the listed assets will be merged with any controller / route
             * specific assets. If it is false, the default assets will only be used when no routes or controllers
             * match
             */
            'default' => array(
                'assets' => array(
                    '@base_css',
                    '@base_js',
                ),

                'options' => array(
                    'mixin' => true,
                ),
            ),

from zf2-assetic-module.

widmogrod avatar widmogrod commented on August 12, 2024

Here is pull request, which sounds promising and it's allowing to merge assets configuration matching the same route by regexp. Maybe this could be helpful?

#68

from zf2-assetic-module.

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.