yiisoft/view

Yii View Rendering Library

8.0.0 2023-02-16 13:21 UTC

This package is auto-updated.

Last update: 2024-04-13 22:14:24 UTC


README

68747470733a2f2f796969736f66742e6769746875622e696f2f646f63732f696d616765732f7969695f6c6f676f2e737667

Yii View Rendering Library


Latest Stable Version Total Downloads Build Status Code Coverage Mutation testing badge static analysis type-coverage

This library provides templates rendering abstraction supporting layout-view-subview hierarchy, custom renderers with PHP-based as default, and more. It's used in Yii Framework but is usable separately.

Requirements

  • PHP 8.0 or higher.

Installation

The package could be installed via composer:

composer require yiisoft/view

General usage

The package provides two use cases for managing view templates:

State of View and WebView services

While being immutable and, by itself, stateless, both View and WebView services have sets of stateful and mutable data.

View service:

  • parameters,
  • blocks,
  • theme,
  • locale.

WebView service:

  • parameters,
  • blocks,
  • theme,
  • locale,
  • title,
  • meta and link tags,
  • JS/CSS strings,
  • JS/CSS files.

The state of View and WebView isn't cloned when the services are cloned. So when using with*(), both new and old instances are sharing the same set of stateful mutable data. It allows, for example, to get WebView via type-hinting in a controller and change context path:

final class BlogController {
    private WebView $view;
    public function __construct (WebView $view) {
        $this->view = $view->withContextPath(__DIR__.'/views');
    }
}

and then register CSS in a widget:

final class LastPosts extends Widget 
{    
    private WebView $view;
    public function __construct (WebView $view) {
        $this->view = $view;
    }
    protected function run(): string
    {
        ...
        $this->view->registerCss('.lastPosts { background: #f1f1f1; }');
        ...
    }
}

Locale state

You can change the locale by using setLocale(), which will be applied to all other instances that used current state including existing ones. If you need to change the locale only for a single instance, you can use the immutable withLocale() method. Locale will be applied to all views rendered within views with render() calls.

Example with mutable method:

final class LocaleMiddleware implements MiddlewareInterface
{    
    ...
    private WebView $view;
    ...
    public function __construct (
        ...
        WebView $view
        ...
    ) {
        $this->view = $view;
    }
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        ...
        $this->view->setLocale($locale);
        ...
    }
}

Example with immutable method:

final class BlogController {
    private WebView $view;
    public function __construct (WebView $view) {
        $this->view = $view;
    }
    public function index() {
        return $this->view->withLocale('es')->render('index');
    }
}

Reset state

To get a deep cloned View or WebView use withClearedState():

$view = $view->withClearedState();

Extensions

  • yiisoft/yii-view - a wrapper that's used in Yii Framework. Adds extra functionality for a web environment and compatibility with PSR-7 interfaces.
  • yiisoft/view-twig - an extension that provides a view renderer that will allow you to use the Twig view template engine, instead of the default PHP renderer.

Testing

Unit testing

The package is tested with PHPUnit. To run tests:

./vendor/bin/phpunit

Mutation testing

The package tests are checked with Infection mutation framework with Infection Static Analysis Plugin. To run it:

./vendor/bin/roave-infection-static-analysis-plugin

Static analysis

The code is statically analyzed with Psalm. To run static analysis:

./vendor/bin/psalm

License

The Yii View Rendering Library is free software. It's released under the terms of the BSD License. Please see LICENSE for more information.

Maintained by Yii Software.

Support the project

Open Collective

Follow updates

Official website Twitter Telegram Facebook Slack