Skip to content
This repository has been archived by the owner on Nov 15, 2019. It is now read-only.

arrounded/assets

Repository files navigation

Arrounded/Assets

Build Status Latest Stable Version Total Downloads Scrutinizer Quality Score Code Coverage

Install

Via Composer

$ composer require arrounded/assets

Usage

Assets pipeline

To use the assets pipeline create a config/assets.php file. In it you can define various collection of assets:

<?php return [
    'global' => [
        'css' => [
            'foo.css',
        ],
    ],
    'admin'  => [
        'css' => ['admin.css'],
        'js'  => ['admin.js'],
    ],
];

Add its service provider in config/app.php

Arrounded\Assets\ServiceProvider::class,

Then add the facade in the same file:

'Assets' => Arrounded\Assets\Facades\Assets::class,

Now in your views you can call this class to output a collection of assets:

{{ Assets.styles('global') }}
{{ Assets.scripts('admin') }}

AssetsReplacer

When going to production, you don't want to leave the Assets.styles and Assets.scripts calls as is as they will return the assets individually. The AssetsReplacer class will replace these calls with their actual values so usemin can read them and consume them.

$replacer = new AssetsReplacer($assetsHandler);
$replacer->replaceInFolder('resources/views');

JavascriptBridge

This is a class to pass data to the front-end. You can pass it as globals or namespaced. It's a static class so you can call it anywhere:

JavascriptBridge::add(['foo' => 'bar']);
JavascriptBridge::render(); // var foo = "bar";

JavascriptBridge::setNamespace('Arrounded');
JavascriptBridge::add(['foo' => 'bar']);
JavascriptBridge::render(); // var Arrounded = {}; Arrounded.foo = "bar";

It can also render classes implementing the Jsonable interface.

Testing

$ composer test

License

The MIT License (MIT). Please see License File for more information.

About

Thin assets pipeline to be consumed by usemin

Resources

License

Stars

Watchers

Forks

Packages

No packages published