forked from zendframework/zend-view
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new View Helper - Asset helper
- Loading branch information
1 parent
bace31c
commit 11e9437
Showing
8 changed files
with
369 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Asset | ||
|
||
The `Asset` helper is used to translate asset names. | ||
It could be used to prevent browser caching for assets. | ||
|
||
## Configuration and Basic Usage | ||
|
||
`Zend\View\Helper\Service\AssetFactory` checks the application | ||
configuration, making it possible to set up the resource map through | ||
your `module.config.php`. The next example will set up `Asset` helper: | ||
|
||
```php | ||
'view_helper_config' => [ | ||
'asset' => [ | ||
'resource_map' => [ | ||
'css/style.css' => 'css/style-3a97ff4ee3.css', | ||
'js/vendor.js' => 'js/vendor-a507086eba.js', | ||
], | ||
], | ||
], | ||
``` | ||
|
||
Then in your view you can use: | ||
|
||
```php | ||
// Usable in any of your .phtml files: | ||
echo $this->asset('css/style.css'); | ||
``` | ||
|
||
and you would receive following output: | ||
|
||
```html | ||
css/style-3a97ff4ee3.css | ||
``` | ||
|
||
The first argument of the `asset` helper is the regular asset name, | ||
which will be replaced by versioned asset name defined in `resource_map` | ||
of the configuration. | ||
|
||
### Note | ||
|
||
When `asset` key is defined but `resource_map` is not provided or is not | ||
an array exception `Zend\View\Exception\RuntimeException` will be | ||
thrown. | ||
|
||
When you call `asset` helper with parameter which is not defined on your | ||
`resource_map` exception `Zend\View\Exception\InvalidArgumentException` | ||
will be thrown. | ||
|
||
## Resource map in JSON file | ||
|
||
If you have JSON file with resource map, for example | ||
`rev-manifest.json`: | ||
|
||
```javascript | ||
{ | ||
"css/style.css": "css/style-3a97ff4ee3.css", | ||
"js/vendor.js": "js/vendor-a507086eba.js" | ||
} | ||
``` | ||
|
||
then you can have in your configuration: | ||
|
||
```php | ||
'view_helper_config' => [ | ||
'asset' => [ | ||
'resource_map' => json_decode(file_get_contents('/path/to/rev-manifest.json'), true), | ||
], | ||
], | ||
``` | ||
|
||
and when you have enabled cache config this file will be also cached in | ||
compiled configuration cache, so it prevents reading the file on each | ||
page load. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zendframework for the canonical source repository | ||
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
|
||
namespace Zend\View\Helper; | ||
|
||
use Zend\View\Exception; | ||
|
||
/** | ||
* View helper plugin to fetch asset from resource map. | ||
*/ | ||
class Asset extends AbstractHelper | ||
{ | ||
/** | ||
* @var array | ||
*/ | ||
protected $resourceMap = []; | ||
|
||
/** | ||
* @param string $asset | ||
* @return string | ||
*/ | ||
public function __invoke($asset) | ||
{ | ||
if (!array_key_exists($asset, $this->resourceMap)) { | ||
throw new Exception\InvalidArgumentException('Asset is not defined.'); | ||
} | ||
|
||
return $this->resourceMap[$asset]; | ||
} | ||
|
||
public function setResourceMap($resourceMap) | ||
{ | ||
$this->resourceMap = $resourceMap; | ||
|
||
return $this; | ||
} | ||
|
||
public function getResourceMap() | ||
{ | ||
return $this->resourceMap; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zendframework for the canonical source repository | ||
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
|
||
namespace Zend\View\Helper\Service; | ||
|
||
use Interop\Container\ContainerInterface; | ||
use Zend\ServiceManager\FactoryInterface; | ||
use Zend\ServiceManager\ServiceLocatorInterface; | ||
use Zend\View\Exception; | ||
use Zend\View\Helper\Asset; | ||
|
||
class AssetFactory implements FactoryInterface | ||
{ | ||
/** | ||
* {@inheritDoc} | ||
* | ||
* @param ContainerInterface $container | ||
* @param string $name | ||
* @param null|array $options | ||
* @return Asset | ||
*/ | ||
public function __invoke(ContainerInterface $container, $name, array $options = null) | ||
{ | ||
// test if we are using Zend\ServiceManager v2 or v3 | ||
if (! method_exists($container, 'configure')) { | ||
$container = $container->getServiceLocator(); | ||
} | ||
$helper = new Asset(); | ||
|
||
$config = $container->get('config'); | ||
if (isset($config['view_helper_config']['asset'])) { | ||
$configHelper = $config['view_helper_config']['asset']; | ||
if (isset($configHelper['resource_map']) && is_array($configHelper['resource_map'])) { | ||
$helper->setResourceMap($configHelper['resource_map']); | ||
} else { | ||
throw new Exception\RuntimeException('Invalid resource map configuration.'); | ||
} | ||
} | ||
|
||
return $helper; | ||
} | ||
|
||
/** | ||
* Create service | ||
* | ||
* @param ServiceLocatorInterface $serviceLocator | ||
* @param string|null $rName | ||
* @param string|null $cName | ||
* @return Asset | ||
*/ | ||
public function createService(ServiceLocatorInterface $serviceLocator, $rName = null, $cName = null) | ||
{ | ||
return $this($serviceLocator, $cName); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zendframework for the canonical source repository | ||
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
|
||
namespace ZendTest\View\Helper; | ||
|
||
use PHPUnit_Framework_TestCase as TestCase; | ||
use Zend\ServiceManager\ServiceManager; | ||
use Zend\View\Exception; | ||
use Zend\View\Helper\Asset; | ||
use Zend\View\HelperPluginManager; | ||
|
||
class AssetTest extends TestCase | ||
{ | ||
/** @var array */ | ||
protected $resourceMap = [ | ||
'css/style.css' => 'css/style-3a97ff4ee3.css', | ||
'js/vendor.js' => 'js/vendor-a507086eba.js', | ||
]; | ||
|
||
/** @var Asset */ | ||
protected $asset; | ||
|
||
protected function setUp() | ||
{ | ||
parent::setUp(); | ||
|
||
$this->asset = new Asset(); | ||
$this->asset->setResourceMap($this->resourceMap); | ||
} | ||
|
||
public function testHelperPluginManagerReturnsAssetHelper() | ||
{ | ||
$helpers = $this->getHelperPluginManager(); | ||
$asset = $helpers->get('asset'); | ||
|
||
$this->assertInstanceOf(Asset::class, $asset); | ||
} | ||
|
||
public function testHelperPluginManagerReturnsAssetHelperByClassName() | ||
{ | ||
$helpers = $this->getHelperPluginManager(); | ||
$asset = $helpers->get(Asset::class); | ||
|
||
$this->assertInstanceOf(Asset::class, $asset); | ||
} | ||
|
||
public function testInvalidAssetName() | ||
{ | ||
$this->setExpectedException(Exception\InvalidArgumentException::class, 'Asset is not defined.'); | ||
|
||
$this->asset->__invoke('unknown'); | ||
} | ||
|
||
/** | ||
* @dataProvider assets | ||
* | ||
* @param string $name | ||
* @param string $expected | ||
*/ | ||
public function testInvokeResult($name, $expected) | ||
{ | ||
$result = $this->asset->__invoke($name); | ||
|
||
$this->assertEquals($expected, $result); | ||
} | ||
|
||
public function assets() | ||
{ | ||
$data = []; | ||
foreach ($this->resourceMap as $key => $value) { | ||
$data[] = [$key, $value]; | ||
} | ||
return $data; | ||
} | ||
|
||
protected function getHelperPluginManager(array $config = []) | ||
{ | ||
$services = $this->prophesize(ServiceManager::class); | ||
$services->get('config')->willReturn($config); | ||
|
||
return new HelperPluginManager($services->reveal()); | ||
} | ||
} |
Oops, something went wrong.