FORGEBOX Enterprise 🚀 - Take your ColdFusion (CFML) Development to Modern Times! Learn More...

coldbox-asset-bag

v1.0.3 Modules

coldbox-asset-bag

Master Branch Build Status

An asset bag to manage css and javascript dependencies

The Problem

You want to dynamically include javascript and css based on the code being executed.

You don't want these assets included in the middle of your views. Instead, you want them included either in the head or footer of your page. (This is especially important for a framework like Vue where inline javascript breaks the page.)

This Solution

coldbox-asset-bag provides an API to add assets any time during the request lifecycle. It allows adding of css and javascript assets along with their inline varities and stores them in either the head and footer sections. Finally, it can render the assets to the appropriate tags in your layout or view.

Usage

Getting an AssetBag

You can create an AssetBag anywhere using the AssetBag@coldbox-asset-bag injection. However, you will likely not need to do this. An empty asset bag is added to the prc scope in the preProcess interceptor. This can be accessed at prc.assetBag.

Adding Assets

Out of the box, assets are either CSS or Javascript. They can reference a filepath or be inline content. They can be added to the head or the footer. Here are the associated methods:

addJavascriptToHead

Add a javascript asset to the head of the asset bag.

ArgumentTypeRequiredDefaultDescription
filepathstringtrue The path to the javascript file.

Example:

assetBag.addJavascriptToHead( "/includes/js/app.js" );
addInlineJavascriptToHead

Add inline javascript to the head of the asset bag.

ArgumentTypeRequiredDefaultDescription
contentstringtrue The javascript content.

Example:

assetBag.addInlineJavascriptToHead(
    "console.log('Hello, from head');"
);
addCssToHead

Add a css asset to the head of the asset bag.

ArgumentTypeRequiredDefaultDescription
filepathstringtrue The path to the css file.

Example:

assetBag.addCssToHead( "/includes/css/app.css" );
addInlineCssToHead

Add inline css to the head of the asset bag.

ArgumentTypeRequiredDefaultDescription
contentstringtrue The css content.

Example:

assetBag.addInlineCssToHead(
    "* { outline: 1px dashed red; }"
);
addJavascriptToFooter

Add a javascript asset to the footer of the asset bag.

ArgumentTypeRequiredDefaultDescription
filepathstringtrue The path to the javascript file.

Example:

assetBag.addJavascriptToFooter( "/includes/js/app.js" );
addInlineJavascriptToFooter

Add inline javascript to the footer of the asset bag.

ArgumentTypeRequiredDefaultDescription
contentstringtrue The javascript content.

Example:

assetBag.addInlineJavascriptToFoooter(
    "console.log('Hello, from footer');"
);
addCssToFooter

Add a css asset to the footer of the asset bag.

ArgumentTypeRequiredDefaultDescription
filepathstringtrue The path to the css file.

Example:

assetBag.addCssToFooter( "/includes/css/app.css" );
addInlineCssToFooter

Add inline css to the footer of the asset bag.

ArgumentTypeRequiredDefaultDescription
contentstringtrue The css content.

Example:

assetBag.addInlineCssToFooter(
    "* { outline: 1px dashed red; }"
);

Rendering the Asset Bag

The asset bag can either render the head or the footer. Rendering the asset bag converts all the assets to their rendered versions and returns a string combined together. This is likely going to be placed in your layout file.

renderHead

Renders the contents of the asset bag's head to a string.

ArgumentTypeRequiredDefaultDescription
No arguments
renderFooter

Renders the contents of the asset bag's footer to a string.

ArgumentTypeRequiredDefaultDescription
No arguments

Example:

<cfoutput>
<html>
    <head>
        <!-- ... -->
        #assetBag.renderHead()#
    </head>
    <body>
        <!-- ... -->
        #assetBag.renderFooter()#
    </body>
</html>
</cfoutput>

Setting Asset Priorities

Once you add an asset to the asset bag, you can set it's priority with the setPriority method.

assetBag.addCssToHead( "/includes/css/app1.css" );
assetBag.addCssToHead( "/includes/css/app2.css" ).setPriority( 1 );

A warning, this can get unwieldy very quickly. It's hard to know what asset was set with what priority where. There are probably better ways of bundling javascript for your appplication, like ColdBox Elixir.---------- Just remember that priority is like z-index in css — choose 1–3 values and stick to them instead of trying to out do yourself each time.

v1.0.3

13 Feb 2020 — 17:39: 23 UTC

other

  • *: chore: Use OpenJDK instead of OracleJDK (8706c58)
  • *: chore: Use forgeboxStorage (1559da0)

v1.0.2

26 Oct 2018 — 03:29: 49 UTC

fix

  • CssAsset: Add rel attribute (304e665)

v1.0.1

14 Sep 2018 — 15:27: 34 UTC

chore

  • docs: Add initial docs (1495d2c)
  • docs: Add doc blocks to all models (83f9412)

fix

  • Asset: Conform to asset interface for ACF (022d4a2)

v1.0.0

19 Jul 2018 — 21:10: 58 UTC

feat

  • AssetBag: Initial Asset Bag module (6439ff4)

other

$ box install coldbox-asset-bag

No collaborators yet.
     
  • {{ getFullDate("2018-07-19T16:10:59Z") }}
  • {{ getFullDate("2020-02-13T11:39:25Z") }}
  • 3,613
  • 5,685