承接 tomkirsch/assets 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tomkirsch/assets

Composer 安装命令:

composer require tomkirsch/assets

包简介

Asset Library for CI4

README 文档

README

This module will assist in minifying JS, CSS, and fonts, as well as managing sessionStorage cache using JS.

Installation

composer.json

	"require":{
		"tomkirsch/assets":"^1"
	}

To override defaults, create the config file for your app App\Config\AssetConfig

<?php

namespace Config;

use Tomkirsch\Assets\Config\AssetConfig;

class Asset extends AssetConfig
{
	public $cache = TRUE;
	public $cacheKey = 24;
	public $minify = TRUE;
}

See Tomkirsch\Assets\Config\AssetConfig.php for full list.

Open App/Config/Services.php and add a method to grab an instance of the library:

	public static function assets($getShared = true, $config = NULL): \Tomkirsch\Assets\Libraries\AssetLib
    {
        if (!$config) $config = new Asset();
        return $getShared ? static::getSharedInstance('assets') : new \Tomkirsch\Assets\Libraries\AssetLib($config);
    }

Open App/Config/Routes.php and add the Min controller:

$routes->get('min', '\Tomkirsch\Assets\Controllers\Min::index');

Usage

Add site-wide assets in your Controller:

<?php namespace App\Controllers;
use CodeIgniter\Controller;

class MyController extends Controller{
	protected $assets;

	public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger){
		parent::initController($request, $response, $logger);

		// generate assets for non-ajax requests
		if(!$this->request->isAJAX()){
			$this->assets = Services::assets();

			// fonts
			$assets->addFont([
				'path'		=> 'anton',
				'family'	=> 'Anton',
				'name'		=> 'anton',
				'weight'	=> '400',
				'style'		=> 'normal',
				'priority'	=> 'pre_dom',
				'type'		=> 'css',
				'fallbacks'	=> 'woff2,woff,ttf,eot',
			]);

			// styles
			$assets->addStyles([
				[
					'content'=>'css/main.css',
					'priority'=>$this->assets::PRIORITY_POSTDOM_LOCAL,
				],
			]);

			// scripts
			$assets->addScripts([
				'main.js', // strings are assumed post-dom local priority
			]);
		}
	}

	public function mymethod(){
		// styles
		$this->assets->addStyles([
			[
				'content'=>'css/critical.css',
				'critical'=>TRUE,
			],
			[
				'content'=>'css/one.css',
				'priority'=>$this->assets::PRIORITY_POSTDOM_LOCAL,
			],
			[
				'content'=>'css/two.css',
				'priority'=>$this->assets::PRIORITY_POSTDOM_LOCAL,
			],
		]);

		// scripts
		$this->assets->addScripts([
			[
				'content'=>'test-one.js',
				'priority'=>$this->assets::PRIORITY_PREDOM_LOCAL,
			],
			// post-DOM local scripts can just be string file names
			'test-two.js',
			'test-three.js',
		]);
	}
}

And finally write the output in your view at the correct locations:

<html>
	<head>
		<?= config('assets')->renderHead() ?>
	</head>
	<body>
		<h1>Your HTML</h1>
		...

		<!-- render the body near the closing tag -->
		<?= config('assets')->renderBody() ?>
	</body>
</html>

tomkirsch/assets 适用场景与选型建议

tomkirsch/assets 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 41 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 01 月 27 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 tomkirsch/assets 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 tomkirsch/assets 我们能提供哪些服务?
定制开发 / 二次开发

基于 tomkirsch/assets 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 41
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 6
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-01-27