blessing-skin-server/app/Http/View/Composers/HeadComposer.php

89 lines
2.3 KiB
PHP
Raw Normal View History

2019-09-17 23:10:44 +08:00
<?php
namespace App\Http\View\Composers;
use App\Services\Webpack;
2019-12-14 11:10:37 +08:00
use Illuminate\Contracts\Events\Dispatcher;
2019-09-17 23:10:44 +08:00
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
2019-12-14 11:10:37 +08:00
use Illuminate\View\View;
2019-09-17 23:10:44 +08:00
class HeadComposer
{
/** @var Webpack */
protected $webpack;
/** @var Dispatcher */
protected $dispatcher;
public function __construct(Webpack $webpack, Dispatcher $dispatcher)
{
$this->webpack = $webpack;
$this->dispatcher = $dispatcher;
}
public function compose(View $view)
{
$this->addFavicon($view);
$this->applyThemeColor($view);
$this->seo($view);
$this->injectStyles($view);
$this->addExtra($view);
}
public function addFavicon(View $view)
{
$url = option('favicon_url', config('options.favicon_url'));
$url = Str::startsWith($url, 'http') ? $url : url($url);
$view->with('favicon', $url);
}
public function applyThemeColor(View $view)
{
$colors = [
2019-12-04 16:45:09 +08:00
'primary' => '#007bff',
'secondary' => '#6c757d',
'success' => '#28a745',
'warning' => '#ffc107',
'danger' => '#dc3545',
'navy' => '#001f3f',
'olive' => '#3d9970',
'lime' => '#01ff70',
'fuchsia' => '#f012be',
'maroon' => '#d81b60',
'indigo' => '#6610f2',
'purple' => '#6f42c1',
'pink' => '#e83e8c',
'orange' => '#fd7e14',
'teal' => '#20c997',
'cyan' => '#17a2b8',
'gray' => '#6c757d',
2019-09-17 23:10:44 +08:00
];
2019-12-04 16:45:09 +08:00
$view->with('theme_color', Arr::get($colors, option('navbar_color')));
2019-09-17 23:10:44 +08:00
}
public function seo(View $view)
{
$view->with('seo', [
'keywords' => option('meta_keywords'),
'description' => option('meta_description'),
'extra' => option('meta_extras'),
]);
}
public function injectStyles(View $view)
{
$view->with('styles', [
$this->webpack->url('style.css'),
]);
$view->with('inline_css', option('custom_css'));
}
public function addExtra(View $view)
{
$content = [];
$this->dispatcher->dispatch(new \App\Events\RenderingHeader($content));
$view->with('extra_head', $content);
}
}