This library provides utility methods that aim to make writing Laravel Blade directives easier, especially when attempting to use multiple parameters.
This library makes it possible to write code like this:
<?php
use Stillat\BladeDirectives\Support\Facades\Directive;
use Illuminate\Support\Str;
Directive::callback('limit', function ($value, $limit = 100, $end = '...') {
return Str::limit($value, $limit, $end);
});
Which allows you or your directive's users to write Blade templates like this:
{{-- Invoke our directive callback with default arguments --}}
@limit($myString)
{{-- Invoke our directive callback and specify a limit --}}
@limit($myString, 50)
{{-- Invoke our directive callback and change only the "end" parameter using named arguments --}}
@limit($myString, end: '---')
{{-- Invoke our directive callback with all parameters --}}
@limit($myString, 5, 'the cap')
{{-- Invoke our directive callback with all parameters using named arguments --}}
@limit($myString, end: ':o', limit: 5)
Note that we did not have to return a string, or do any string manipulation when using the callback
method. When
using the callback
method, Blade Directives will do the heavy lifting behind the scenes for you, and you can
just write Blade directives like any other PHP method.
The most basic way to use the compile
method is like so:
<?php
use Stillat\BladeDirectives\Support\Facades\Directive;
Directive::compile('slugify', function ($value, $separator = '-') {
return '<?php echo \Illuminate\Support\Str::slug($value, $separator); ?>';
});
Which allows your users to write Blade like this:
@slugify($title)
@slugify($title, '_')
Developers using directives written using the compile
method can also use named arguments:
<?php
use Stillat\BladeDirectives\Support\Facades\Directive;
Directive::compile('limit', function ($value, $limit = 100, $end = '...') {
return '<?php echo \Illuminate\Support\Str::limit($value, $limit, $end); ?>';
});
@limit($myString, end: '---')
@limit($myString, end: ':o', limit: 5)
That just feels better, and we didn't have to resort to error-prone explode
calls, or json_encode/json_decode
.
This library can be installed with Composer:
composer require stillat/blade-directives
To get started, add the following import to the top of your PHP file:
use Stillat\BladeDirectives\Support\Facades\Directive;
The Directive
façade provides three different methods that you can choose from depending on what you require for a given situation:
params($name, callable $handler)
- registers a new Blade directive similarly to Blade's defaultdirective
method. You will have access to the parameters within the callback through$this->parameters
. You will only receive the raw input string as the first, and only argument.make($name, callable $handler)
- registers a new Blade directive with support for multiple parameterscompile($name, callable $handler)
- registers a new Blade directive with support for multiple parameters. This method allows you to return a PHP string, which will have variables replaced for you automatically
The make
method allows you to specify (and receive) multiple parameters on your directive's callback. You are still responsible for manually constructing the final PHP string for the Blade compiler:
<?php
use Stillat\BladeDirectives\Support\Facades\Directive;
Directive::make('greet', function ($name, $age) {
return '<?php echo "Hello, ".'.$name.". ' - '. ".$age."; ?>";
});
The following Blade:
@greet('Hello!', 32)
@greet($varName, $ageVar)
@greet(' Escaped \' string!', '32')
Produces the following compiled output:
<?php echo "Hello, ".'Hello!'. ' - '. 32; ?>
<?php echo "Hello, ".$varName. ' - '. $ageVar; ?>
<?php echo "Hello, ".' Escaped \' string!'. ' - '. '32'; ?>
The compile
method allows you to return a PHP string as the result of your directive's handler. The internal compiler will work to replace the variable references with the required compiled output, which makes it much easier for you to write your directive.
Let's rewrite the greet
directive using the compile
method:
<?php
use Stillat\BladeDirectives\Support\Facades\Directive;
Directive::compile('greet', function ($name, $age) {
return '<?php echo "Hello, $name - $age" ?>';
});
The following example demonstrates using default values for directive parameters:
<?php
use Illuminate\Support\Facades\Blade;
use Stillat\BladeDirectives\Support\Facades\Directive;
Directive::compile('test', function ($data = [1, 2, 3]) {
return '<?php foreach ($data as $value): ?>';
});
Blade::directive('endtest', function () {
return '<?php endforeach; ?>';
});
The following Blade:
@test(['one', 'two', 'three'])
@endtest
Produces compiled output similar to the following:
<?php foreach (((['one', 'two', 'three']) ?? (array (
0 => 1,
1 => 2,
2 => 3,
))) as $value): ?>
<?php endforeach; ?>
If the user did not supply any values like so:
@test
@endtest
The compiled output would change to:
<?php foreach (((null) ?? (array (
0 => 1,
1 => 2,
2 => 3,
))) as $value): ?>
<?php endforeach; ?>
This section applies to the compile
method.
The "compiler" is effectively a glorified "find and replace", and can make it difficult to use a variable name if it also matches one of your parameter names. To escape a variable name, precede it with the \
character:
<?php
use Stillat\BladeDirectives\Support\Facades\Directive;
Directive::compile('escapeTest', function ($test, $anotherVar) {
return '<?php echo 5 + ($test) / $anotherVar; ?> \$test \$anotherVar $anotherVar';
});
The following Blade:
@escapeTest(5 + 3 * 2, 15)
Produces compiled output similar to the following:
<?php echo 5 + (5 + 3 * 2) / 15; ?> $test $anotherVar 15
As you can see, anything that matches a variable name preceded by the \
character is escaped for you. Additionally, all occurrences of the variable are replaced in the string, not just within PHP areas.
Due to the nature of projects like this, it is guaranteed that it will break in interesting ways. When submitting issues, please include as much information as possible to help reproduce the issue, and a clear explanation of desired behavior.
MIT License. See LICENSE.MD