lapaz/amechan
Composer 安装命令:
composer require lapaz/amechan
包简介
Lightweight Pre-processed Asset Link Manager
README 文档
README
Amechan (means candy drop in Osaka, Japan) is a lightweight pre-processed asset link manager for PHP. This library has no side effects unlike Assetic, Sprockets Rails or such as, instead it works better with NodeJS tools like Gulp.
Quick Start
Define named asset which bundles JS or CSS contents:
$assetManager = new AssetManager(); $assetManagr->asset('jquery', [ 'file' => '/assets/vendor/jquery/dist/jquery.js', 'section' => 'js', ]); $assetManagr->asset('bootstrap', [ 'baseUrl' => '/assets/vendor/bootstrap/dist', 'bundles' => [ [ 'files' => ['css/bootstrap.css', 'css/bootstrap-theme.css'], 'section' => 'css', ], [ 'file' => 'js/bootstrap.js', 'section' => 'js', ], ], 'dependency' => 'jquery', ]); $assetManagr->asset('some-jquery-plugin', [ ... ]); $assetManagr->asset('and-another-one', [ ... ]);
Prepare asset collection for presentation session before rendering.
$assets = $assetManagr->newCollection();
In your view file, require assets:
layout.php
<?php $assets->add('bootstrap'); ?> <!DOCTYPE html> <html> <head> ... layout here
app-view.php
<?php $assets->add('bootstrap'); $assets->add('some-jquery-plugin'); ?> <div id="app-view"> ... app html </div>
Redundant ->add() calls are summarized and they are ordered by its dependencies.
Then, in head or end of body tags (often included in the layout template):
<?php foreach ($assets->collectUrls('css') as $url) { echo "<link href="{$url}" rel="stylesheet">\n"; } ?> </head>
<?php foreach ($assets->collectUrls('js') as $url) { echo "<script src="{$url}"></script>\n"; } ?> </body>
All required assets are collected and expanded there.
<link href="/assets/vendor/bootstrap/dist/css/bootstrap.css" rel="stylesheet"> <link href="/assets/vendor/bootstrap/dist/css/bootstrap-theme.css" rel="stylesheet"> </head> <body> : : <script src="/assets/vendor/jquery/dist/jquery.js"></script> <script src="/assets/vendor/bootstrap/dist/js/bootstrap.js"></script> <script src="/assets/js/some-jquery-plugin.js"></script> </body>
Features
- Bundling multi sectioned assets as single unit
- Link order auto detection according to dependency chain
- Source to built URL mapping (any to
*.min.js) - Revision hash support with
rev-manifest.jsonformat
URLs can be mapped when compiled version assets exist.
if (is_dir(__DIR__ . '/../public/assets/dist')) { $assetManager->mapping(new UnifiedResourceMapper('/assets', [ 'dist/css/all.min.css' => [ 'vendor/bootstrap/dist/css/bootstrap.css', 'vendor/bootstrap/dist/css/bootstrap-theme.css', ], 'dist/js/all.min.js' => [ 'vendor/jquery/dist/jquery.js', 'vendor/bootstrap/dist/js/bootstrap.js', ], ])); }
<link href="/assets/dist/css/all.min.css" rel="stylesheet"> <script src="/assets/dist/js/all.min.js"></script>
URLs can be replaced to revision hashed version.
if (is_file(__DIR__ . '/../public/assets/dist/rev-manifest.json')) { $manifest = json_decode(file_get_contents( __DIR__ . '/../public/assets/dist/rev-manifest.json' ), true); $assetManager->mapping(new RevisionHashMapper('/assets/dist/', $manifest)); }
<link href="/assets/dist/css/all-33f4c35457.min.css" rel="stylesheet"> <script src="/assets/dist/js/all-5d8020ef9b.min.js"></script>
Definition
// TBD (See /example project)
统计信息
- 总下载量: 3.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-15