This repository was archived by the owner on Mar 18, 2025. It is now read-only.
generated from rawilk/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathFormComponentsServiceProvider.php
96 lines (81 loc) · 3.14 KB
/
FormComponentsServiceProvider.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
declare(strict_types=1);
namespace Rawilk\FormComponents;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\Facades\Route;
use Illuminate\View\Compilers\BladeCompiler;
use Illuminate\View\ComponentAttributeBag;
use Rawilk\FormComponents\Controllers\FormComponentsJavaScriptAssets;
use Rawilk\FormComponents\Support\FormComponentsTagCompiler;
use Rawilk\FormComponents\Support\Timezone;
use Spatie\LaravelPackageTools\Package;
use Spatie\LaravelPackageTools\PackageServiceProvider;
use function app;
use function method_exists;
class FormComponentsServiceProvider extends PackageServiceProvider
{
public function configurePackage(Package $package): void
{
$package
->name('laravel-form-components')
->hasConfigFile()
->hasTranslations()
->hasViews();
}
public function packageBooted(): void
{
$this->bootBladeComponents();
$this->bootDirectives();
$this->bootMacros();
$this->bootRoutes();
}
public function packageRegistered(): void
{
$this->app->singleton('form-components', FormComponents::class);
$this->registerTimezone();
}
private function bootBladeComponents(): void
{
// Register all components under a single namespace.
Blade::componentNamespace('Rawilk\\FormComponents\\Components', 'form-components');
// Register aliases for certain components.
$this->callAfterResolving(BladeCompiler::class, function (BladeCompiler $blade) {
$prefix = config('form-components.prefix', '');
foreach (config('form-components.components', []) as $alias => $component) {
$blade->component($component, $alias, $prefix);
}
});
}
private function bootDirectives(): void
{
// Our custom tag compiler will allow us to use self-closing tags instead of a directive,
// i.e. <fc:scripts /> instead of @fcScripts.
if (method_exists($this->app['blade.compiler'], 'precompiler')) {
$this->app['blade.compiler']->precompiler(function ($string) {
return app(FormComponentsTagCompiler::class)->compile($string);
});
}
Blade::directive('fcScripts', function (string $expression) {
return "<?php echo \\Rawilk\\FormComponents\\Facades\\FormComponents::javaScript({$expression}); ?>";
});
}
private function bootMacros(): void
{
if (! ComponentAttributeBag::hasMacro('hasStartsWith')) {
ComponentAttributeBag::macro('hasStartsWith', function ($key) {
return (bool) $this->whereStartsWith($key)->first();
});
}
}
private function bootRoutes(): void
{
Route::get('/form-components/form-components.js', [FormComponentsJavaScriptAssets::class, 'source']);
Route::get('/form-components/form-components.js.map', [FormComponentsJavaScriptAssets::class, 'maps']);
}
private function registerTimezone(): void
{
if (config('form-components.enable_timezone')) {
$this->app->singleton('fc-timezone', fn () => new Timezone);
}
}
}