74 lines
2.1 KiB
PHP
74 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Middleware;
|
|
|
|
class HandleInertiaRequests extends Middleware
|
|
{
|
|
/**
|
|
* The root template that's loaded on the first page visit.
|
|
*
|
|
* @see https://inertiajs.com/server-side-setup#root-template
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $rootView = 'app';
|
|
|
|
/**
|
|
* Determines the current asset version.
|
|
*
|
|
* @see https://inertiajs.com/asset-versioning
|
|
*/
|
|
public function version(Request $request): ?string
|
|
{
|
|
return parent::version($request);
|
|
}
|
|
|
|
/**
|
|
* Define the props that are shared by default.
|
|
*
|
|
* @see https://inertiajs.com/shared-data
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function share(Request $request): array
|
|
{
|
|
[$message, $author] = str(Inspiring::quotes()->random())->explode('-');
|
|
|
|
$supportedLocales = collect(explode(',', (string) env('APP_SUPPORTED_LOCALES', 'de,en')))
|
|
->map(fn ($l) => trim((string) $l))
|
|
->filter()
|
|
->unique()
|
|
->values()
|
|
->all();
|
|
|
|
if (empty($supportedLocales)) {
|
|
$supportedLocales = array_values(array_unique(array_filter([
|
|
config('app.locale'),
|
|
config('app.fallback_locale'),
|
|
])));
|
|
}
|
|
|
|
return [
|
|
...parent::share($request),
|
|
'name' => config('app.name'),
|
|
'quote' => ['message' => trim($message), 'author' => trim($author)],
|
|
'auth' => [
|
|
'user' => $request->user(),
|
|
],
|
|
'supportedLocales' => $supportedLocales,
|
|
'appUrl' => rtrim(config('app.url'), '/'),
|
|
'sidebarOpen' => ! $request->hasCookie('sidebar_state') || $request->cookie('sidebar_state') === 'true',
|
|
'locale' => app()->getLocale(),
|
|
'translations' => [
|
|
'marketing' => __('marketing'),
|
|
'auth' => __('auth'),
|
|
'profile' => __('profile'),
|
|
],
|
|
];
|
|
}
|
|
}
|