Package Data | |
---|---|
Maintainer Username: | morningtrain |
Maintainer Contact: | bb@morningtrain.dk (Bjarne Bonde) |
Package Create Date: | 2015-12-12 |
Package Last Update: | 2016-06-30 |
Language: | PHP |
License: | GNU GPL v3.0 |
Last Refreshed: | 2025-01-25 15:06:53 |
Package Statistics | |
---|---|
Total Downloads: | 169 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 4 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Laravel package to enqueue css and js files for load. It supports dependencies, to serve files in the correct order, caching, magic methods and passing along PHP variables.
Via Composer
$ composer require morningtrain/enqueuer
Add this service provider to your config/app.php file.
morningtrain\enqueuer\enqueuerServiceProvider::class,
In all of the below cases, "Admin" can be any word and is used to group styles and scripts. A common use case is to have different scripts in admin and frontend.
Enqueuer::addAdminScript('jquery', [
'location' => 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'
]);
Enqueuer::addAdminScript('sample', [
'content' => "console.log('sample');",
'dependencies' => ['jquery']
]);
The syntax for adding styles and scripts are almost the same. The main difference is that you would call "addAdminStyle" in the above example instead. In addition, note that it is not possible to use the data property with styles.
Some scripts and styles might be dependent on others. To solve this, one can add the dependencies property. The value of this property is an array that contains the names of all the script/styles it is dependent on. The scripts/styles will be sorted according to the dependencies.
Enqueuer::addAdminScript('sample', [
'content' => "console.log('sample');",
'dependencies' => ['jquery']
]);
Enqueuer::addAdminScript('jquery', [
'location' => 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'
]);
It is possible to pass on a data object to a script by including the data properties.
The value of data is an array containing the name of the object and the properties.
Enqueuer::addProfileScript('config_test', [
'content' => "console.log(config.baseUrl);",
'data' => [
'object' => 'config',
'properties' => [
'baseUrl' => url('')
]
]
]);
To include scripts in view
{!! Enqueuer::getAdminScripts() !!}
To include styles in view
{!! Enqueuer::getAdminStyles() !!}
Clear everything
Enqueuer::clearAllCache();
To clear all caches for scripts
Enqueuer::clearScriptsCache();
To clear all caches for styles
Enqueuer::clearStylesCache();
To clear all caches for scripts in group (admin in this case)
Enqueuer::clearAdminScriptsCache();
To clear all caches for styles in group (admin in this case)
Enqueuer::clearAdminStylesCache();
Settings can be overwritten at any time using this snippet:
Enqueuer::configure([
'cacheScripts' => true,
'cacheStyles' => true,
'alwaysGenerateStylesCache' => false,
'alwaysGenerateScriptsCache' => false,
'storageDisk' => 'public'
]);
It allows for enabling / disabling cache for scripts and styles, as well as allowing the cache for being regenerated on every request. Note, that in order to use it without caching, all enqueued scripts have to be publicly available on the provided url.
Please see CHANGELOG for more information what has changed recently.
If you discover any security related issues, please email mail@morningtrain.dk instead of using the issue tracker.
GNU General Public License v3.0. Please see License File for more information.