48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Setting;
 | 
						|
 | 
						|
use App\Invoice\InvoiceSettings;
 | 
						|
use App\Setting\Contracts\Storeable;
 | 
						|
use Illuminate\Routing\Router;
 | 
						|
 | 
						|
class SettingFactory
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var array<int, class-string<LocalSettings>>
 | 
						|
     */
 | 
						|
    private array $settings = [];
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param class-string<LocalSettings> $setting
 | 
						|
     */
 | 
						|
    public function register(string $setting): void
 | 
						|
    {
 | 
						|
        $this->settings[] = $setting;
 | 
						|
 | 
						|
        if (1 === count($this->settings)) {
 | 
						|
            app(Router::class)->redirect('/setting', '/setting/' . $setting::group());
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return array<int, array{url: string, is_active: bool}>
 | 
						|
     */
 | 
						|
    public function getShare(): array
 | 
						|
    {
 | 
						|
        return collect($this->settings)->map(fn ($setting) => [
 | 
						|
            'url' => (new $setting)->url(),
 | 
						|
            'is_active' => url(request()->path()) === (new $setting)->url(),
 | 
						|
            'title' => $setting::title(),
 | 
						|
        ])
 | 
						|
            ->toArray();
 | 
						|
    }
 | 
						|
 | 
						|
    public function resolveGroupName(string $name): LocalSettings
 | 
						|
    {
 | 
						|
        $settingClass = collect($this->settings)->first(fn ($setting) => $setting::group() === $name);
 | 
						|
 | 
						|
        return app($settingClass);
 | 
						|
    }
 | 
						|
}
 |