yidas / yii2-auto-asset-bundle
Base Asset Bundle for Yii2 to auto-allocate JS & CSS files for each View
Installs: 74
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2024-10-10 20:37:07 UTC
README
Yii 2 Auto Asset Bundle
Base Asset Bundle for Yii2 to auto-allocate JS & CSS files for each View
FEATURES
-
Each View would has it own JS & CSS asset files
-
Standard Asset files' structure same as View paths
-
Single AssetBundle automatically handles all Views' assets by registering
Felt dirty of writting Javascript code in View file? Got tired of creating asset for every View files?
If each View need Javascript & CSS for it self, the AssetBundle library allocates pairs of asset files for each registered View, which each View's path is same as allocated assets path with base path setting.
DEMONSTRATION
A View file which locates:
yii2-app-basic/views/site/about.js
After registering AutoAssetBundle, the View file would auto-load above assets files if exist:
yii2-app-basic/web/dist/app/site/about.js
yii2-app-basic/web/dist/app/site/about.css
dist/app/
is the prefix base path which could be customized.
REQUIREMENTS
This library requires the following:
- PHP 5.4.0+
- Yii 2.0.0+
INSTALLATION
Install via Composer in your Yii2 project:
composer require yidas/yii2-auto-asset-bundle
CONFIGURATION
You could create an asset to extend \yidas\web\AutoAssetBundle
with your application configuration:
namespace app\assets; class AutoAssetBundle extends \yidas\web\AutoAssetBundle {}
Customized Setting
You could customize asset to fit your application:
namespace app\assets; class AutoAssetBundle extends \yidas\web\AutoAssetBundle { // Base path & url for each view's asset in your application public $basePath = '@webroot/dist/app'; public $baseUrl = '@web/dist/app'; public $depends = [ 'app\assets\AppAsset', ]; }
USAGE
Register configured asset in the content View, for example yii2-app-basic/views/controller/action.php
:
<?php \app\assets\AutoAssetBundle::register($this);
After that, this view would auto load following files:
yii2-app-basic/web/dist/app/controller/action.js
yii2-app-basic/web/dist/app/controller/action.css
The prefix path relates to the view path.