BoxLang 🚀 A New JVM Dynamic Language Learn More...
Mixr is a simple, yet flexible static asset helper for Coldbox applications. Mixr can be configured to use a variety of conventions including Coldbox Elixir, Laravel Mix, or even custom asset bundlers.
Use Mixr in your app to automatically generate correct distribition asset paths in your Coldbox views and layouts. Mixr automatically parses and maps asset manifests files to return the real path.
Mixr registers itself as a Coldbox helper method so you can call it in your handlers, layouts, and views by simply calling mixr()
.
Install Mixr using CommandBox:
box install mixr
Configure Mixr in your Coldbox config/Coldbox.cfc
file:
moduleSettings = {
// default configuration designed to emulate Laravel Mix 6
mixr: {
"manifestPath" = "/includes/mix-manifest.json",
"prependModuleRoot" = true,
"prependPath" = "/includes",
"modules": {}
}
};
The above configuration will work in a ColdBox app that uses Laravel 6 to generate asset manifests. If you are using Coldbox Elixir, you will need to change the configuration to match the conventions of your asset bundler. See the Upgrade Guide for more information.
For reference, a Laravel 6 Manifest file might look like this:
{
"/css/app.css": "/css/app.css?id=123",
"/js/app.js": "/js/app.js?id=123"
}
The same manifest file might look like this when using Coldbox Elixir. You will need to update the default configuration if you are using Coldbox Elixir starting with Mixr version 2.0:
{
"includes/js/app.js": "includes/js/app.123.js",
"includes/css/app.css": "includes/css/app.123.css"
}
Version 2.0 introduces a breaking change where the configuration defaults have been changed to emulate Laravel Mix 6. If you are upgrading from 1.x to 2.x, and you use Coldbox Elixir, you will need to update your configuration (see examples for details)
Setting | Description | Default |
---|---|---|
manifestPath | (string) The path from the root where your manifest file resides | /includes/mix-manifest.json |
prependModuleRoot | (boolean) Whether or not to prepend the module root to the path | true |
prependPath | (string) A path to prepend to the asset path | /includes |
modules | (struct) A struct of module names so you can pass along custom configs to submodules | {} |
Sometimes a tracked or untracked submodule needs to use its own asset manifest file conventions. For example, if you use Laravel Mix in your main app, but you use Coldbox Elixir in a submodule, you can configure Mixr to use different settings for each submodule.
You can provide module-specific settings to Mixr, just in case some submodules use different conventions. To do this within a module's ModuleConfig.cfc
file, add a mixr
struct to the configure()
method:
function configure(){
// module settings - we are overriding mixr conventions in this module to emulate Coldbox Elixir
variables.settings = {
mixr: {
"manifestPath": "/includes/rev-manifest.json",
"prependModuleRoot": true,
"prependPath": ""
}
};
}
Alternatively, you can also configure Mixr in your main config/Coldbox.cfc
file. Add any submodule to the mixr.modules
in moduleSettings
like this to override settings:
moduleSettings = {
// default configuration designed to emulate Coldbox Elixir
mixr: {
"manifestPath" = "/includes/rev-manifest.json",
"prependModuleRoot" = true,
"prependPath" = "",
"modules": {
// custom configuration for a submodule to emaulate Laravel Mix V6
"fooModule": {
"manifestPath": "/includes/mix-manifest.json",
"prependModuleRoot": true,
"prependPath": "/includes"
}
}
}
};
To return an asset path, simply call mixr()
in your views, layouts, or handlers like this:
// load javascript asset
<invalidTag src="#mixr( '/js/app.js' )#"></script>
// load css assset
<invalidTag src="#mixr( '/css/app.css' )#"></script>
mixr()
accepts the following arguments:
Agument | Description | Default |
---|---|---|
asset * | (string) The path to the asset as it exists in the manifest file | "" |
moduleName | (string) module name where the manifest file is located | [currentModuleName] |
manifestPath | (string) The path from the root of the module where the manifest file resides | [config.manifestPath] |
prependModuleRoot | (boolean) Whether or not to prepend the module root to the path | [config.prependModuleRoot] |
prependPath | (string) A path to prepend to the asset path | [config.prependPath] |
Mixr automatically attempts to figure out which module the request is coming from and will prepend the module root to the path if prependModuleRoot
is set to true
.
// config/Coldbox.cfc
mixr = {
"manifestPath": "/includes/rev-manifest.json",
"prependModuleRoot": true,
"prependPath": "",
"modules": {}
}
No need to change any defaults. It should work out of the box. Here is the configuration, just in case you need to change it:
// configure mixr to use laravel mix conventions
mixr = {
"manifestPath": "/includes/mix-manifest.json",
"prependModuleRoot": true,
"prependPath": "/includes",
"modules": {}
}
// custom maifest file located in /dist/custom-manifest.json
{
"js/app.js": "js/app.12345678.js",
"css/app.css": "css/app.87654321.css"
}
mixr = {
"manifestPath": "/dist/custom-manifest.json",
"prependModuleRoot": true,
"prependPath": "dist", // prepend the 'dist' folder to the path
"modules": {}
}
Why Does Coldbox need another asset helper? Here are a few reasons why Mixr is a great choice for your Coldbox app:
mixr()
mixr()
is quick and easy, and will keep your source code nice and clean.This module was passionately developed by Angry Sam Productions, a web development company based in California. We believe creating and contributing open source software strenghens the development community and makes the world a better place. If you would like to learn more about our company or hire us for your next project, please contact us.
To run the tests, simply run the following command from the root of the project in Commandbox:
start [email protected]
(or whichever server JSON you want to use)
server open
(to open the server in your browser)
navigate to /tests/runner.cfm
in your browser
$
box install mixr