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 pathFormComponents.php
61 lines (46 loc) · 1.82 KB
/
FormComponents.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
<?php
declare(strict_types=1);
namespace Rawilk\FormComponents;
use Illuminate\Support\Facades\Vite;
final class FormComponents
{
/**
* This will output the JavaScript necessary to run some components
* such as CustomSelect.
*/
public function javaScript(array $options = []): string
{
$html = config('app.debug') ? ['<!-- FormComponents Scripts -->'] : [];
$html[] = $this->javaScriptAssets($options);
return implode(PHP_EOL, $html);
}
private function javaScriptAssets(array $options = []): string
{
$assetsUrl = config('form-components.asset_url') ?: rtrim($options['asset_url'] ?? '', '/');
$nonce = $this->getNonce($options);
$manifest = json_decode(file_get_contents(__DIR__ . '/../dist/manifest.json'), true);
$versionedFileName = $manifest['/form-components.js'];
$fullAssetPath = "{$assetsUrl}/form-components{$versionedFileName}";
return <<<HTML
<script src="{$fullAssetPath}" data-turbo-eval="false" data-turbolinks-eval="false" {$nonce}></script>
HTML;
}
private function getNonce(array $options): string
{
if (isset($options['nonce'])) {
return "nonce=\"{$options['nonce']}\"";
}
// If there is a csp package installed, i.e. spatie/laravel-csp, we'll check for the existence of the helper function.
if (function_exists('csp_nonce') && $nonce = csp_nonce()) {
return "nonce=\"{$nonce}\"";
}
if (function_exists('cspNonce') && $nonce = cspNonce()) {
return "nonce=\"{$nonce}\"";
}
// Lastly, we'll check for the existence of a csp nonce from Vite.
if (class_exists(Vite::class) && $nonce = Vite::cspNonce()) {
return "nonce=\"{$nonce}\"";
}
return '';
}
}