2017 © Pedro Peláez
 

yii2-extension yii2-requirejs-view

Yii2 View class with ability to register RequireJS modules

image

h8every1/yii2-requirejs-view

Yii2 View class with ability to register RequireJS modules

  • Thursday, May 25, 2017
  • by h8every1
  • Repository
  • 1 Watchers
  • 1 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 5 % Grown

The README.md

Yii2 RequireJS-powered View

Yii2 View class with ability to register RequireJS modules, (*1)

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require --prefer-dist h8every1/yii2-requirejs-view "*"

or add, (*4)

"h8every1/yii2-requirejs-view": "*"

to the require section of your composer.json file., (*5)

Usage

Changing the View class site-wide

You can use View class site-wide by editing your config/main.php:, (*6)

 'components' => [
    ...
    'view'=> [
        'class'=> 'h8every1\requirejsview\View',
        'mainJsUrl'=> '@web/js/requirejs/main.js',
    ],
    ...
 ],

The only option that you MUST provide is mainJsUrl, wihich is URL of a main.js which holds the config of RequireJS's modules. (Read more about main.js at RequireJS documentation), (*7)

mainJsUrl is passed to \yii\helpers\Url::to(), so it can be either string or an array that points to URL of main.js file. You can use aliases '@web/js/requirejs/main.js', (*8)

After that all your view files will be instances of h8every1\requirejsview\View not yii\web\View., (*9)

Changing the View class in single controller

Add call to the View constructor inside init function of your controller like this:, (*10)

class SiteController extends Controller
{
    public function init()
    {
        parent::init();
        $this->view = new \h8every1\requirejsview\View(['mainJsUrl' => '@web/js/requirejs/main.js']);
    }
    ...
}

Changing the View class for a single action of a Controller

.. is same as changing the view for the whole controller, except that you add the line inside your action like this:, (*11)

class SiteController extends Controller
{
    ...

    public function actionIndex()
    {
        $this->view = new \h8every1\requirejsview\View(['mainJsUrl' => '@web/js/requirejs/main.js']);

        return $this->render('index');
    }

    ...
}

Generating main.js using AssetBundles

This extension provides an MainJsAction class that can be used to generate main.js file that automatically require()s all modules registered for a webpage., (*12)

You can use existing controller or create a new one. Then you must register action like this:, (*13)

class RequireJsController extends Controller
{

    public function actions()
    {
        return [
            'main'=> [         // you can use whatever name you like
                'class'=> '\h8every1\requirejsview\MainJsAction',
                'options'=>[
                    'modules'=>[
                        '\h8every1\requirejsview\assets\YiiAsset',
                        '\h8every1\requirejsview\assets\JqueryAsset',
                        '\h8every1\requirejsview\assets\ExampleAsset',
                    ]
                ],
            ],
        ];
    }

}

And then in your View class setup provide $mainJsUrl = ['<contollerName>/<actionName>']. For the example above the setup will look like this;, (*14)

 'components' => [
    ...
    'view'=> [
        'class'=> 'h8every1\requirejsview\View',
        'mainJsUrl'=> ['/require-js/main'],
    ],
    ...
 ],

You need to provide array of RequireJsAssetBundles as modules. Some of such modules are already provided in assets folder of the extension., (*15)

  • JQuery (https://jquery.com)
  • Bootstrap (https://getbootstrap.com)
  • Angular (https://angularjs.org)
  • Lodash (https://lodash.com)
  • DomReady (https://github.com/requirejs/domReady)
  • Yii2 asset (yii.js) (http://www.yiiframework.com/doc-2.0/guide-output-client-scripts.html#yii.js)
  • Example asset for your own modules with ability to use minified versions of files on live site, (*16)

    Note: All 3rd-party scripts for above asset bundles should be installed as bower assets using Composer., (*17)

    Main difference between RequireJsAssetBundle and Yii's default AssetBundle is that you need to provide dependedncies between modules not using $depend field, but in $js field., (*18)

Adding and removing RequireJS modules in view files

Inside your view file you can call either $this->addModule($moduleName) or $this->addModules($arrayOfModuleNames), (*19)

The former accepts string with a single module name, the latter accepts array of strings. Each one should be a registered RequireJS module., (*20)

If you register View class site-wide, you can even register modules in layouts and partials rendered via $this->render(), (*21)

You can remove registered modules via $this->removeModule($moduleName) or $this->removeModules($arrayOfModuleNames), (*22)

This can be useful if you want to replace module loaded in your main view file with another module inside of sub-view file., (*23)

Example:, (*24)

views/site/index.php, (*25)

title = 'My Yii Application';
$this->addModules(['app','map']);
echo $this->render('partial');
?>

views/site/partial.php, (*26)

removeModule('map');
$this->addModule('gmaps');

?>

Known issues

You cannot remove modules registered in layout file, because Yii applies layout on the last step of content rendering, after all dynamic content has been generated and all RequireJS modules registered and removed., (*27)

The Versions

25/05 2017

dev-master

9999999-dev

Yii2 View class with ability to register RequireJS modules

  Sources   Download

MIT

The Requires

 

by Anton Syuvaev

extension yii2 modules view requirejs

24/05 2017

v0.2.0

0.2.0.0

Yii2 View class with ability to register RequireJS modules

  Sources   Download

MIT

The Requires

 

by Anton Syuvaev

extension yii2 modules view requirejs

23/05 2017

v0.1.0

0.1.0.0

Yii2 View class with ability to register RequireJS modules

  Sources   Download

MIT

The Requires

 

by Anton Syuvaev

extension yii2 modules view requirejs