mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 03:17:35 -05:00 
			
		
		
		
	refactor compser components for rotessa
This commit is contained in:
		
							parent
							
								
									109e2a46d8
								
							
						
					
					
						commit
						65aafc31f9
					
				@ -0,0 +1,47 @@
 | 
				
			|||||||
 | 
					<?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace App\Http\ViewComposers\Components\Rotessa;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					use App\DataProviders\CAProvinces;
 | 
				
			||||||
 | 
					use App\DataProviders\USStates;
 | 
				
			||||||
 | 
					use Illuminate\View\Component;
 | 
				
			||||||
 | 
					use App\Models\ClientContact;
 | 
				
			||||||
 | 
					use Illuminate\Support\Arr;
 | 
				
			||||||
 | 
					use Illuminate\View\View;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// AmericanBankInfo Component
 | 
				
			||||||
 | 
					class AccountComponent extends Component
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    private $fields = [
 | 
				
			||||||
 | 
					        'bank_account_type',
 | 
				
			||||||
 | 
					        'routing_number',
 | 
				
			||||||
 | 
					        'institution_number',
 | 
				
			||||||
 | 
					        'transit_number',
 | 
				
			||||||
 | 
					        'bank_name',
 | 
				
			||||||
 | 
					        'country',
 | 
				
			||||||
 | 
					        'account_number'
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    private $defaults =  [
 | 
				
			||||||
 | 
					        'bank_account_type' => null,
 | 
				
			||||||
 | 
					        'routing_number' => null,
 | 
				
			||||||
 | 
					        'institution_number' => null,
 | 
				
			||||||
 | 
					        'transit_number' => null,
 | 
				
			||||||
 | 
					        'bank_name' => ' ',
 | 
				
			||||||
 | 
					        'account_number' => null,
 | 
				
			||||||
 | 
					        'country' => 'US',
 | 
				
			||||||
 | 
					        "authorization_type" => 'Online'
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    public array $account;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    public function __construct(array $account) {
 | 
				
			||||||
 | 
					        $this->account = $account;
 | 
				
			||||||
 | 
					        $this->attributes = $this->newAttributeBag(Arr::only($this->account, $this->fields) );
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    
 | 
				
			||||||
 | 
					    public function render()
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        return render('gateways.rotessa.components.account', array_merge($this->attributes->getAttributes(), $this->defaults) );
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -0,0 +1,48 @@
 | 
				
			|||||||
 | 
					<?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace App\Http\ViewComposers\Components\Rotessa;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					use App\DataProviders\CAProvinces;
 | 
				
			||||||
 | 
					use App\DataProviders\USStates;
 | 
				
			||||||
 | 
					use Illuminate\View\Component;
 | 
				
			||||||
 | 
					use App\Models\ClientContact;
 | 
				
			||||||
 | 
					use Illuminate\Support\Arr;
 | 
				
			||||||
 | 
					use Illuminate\View\View;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Address Component
 | 
				
			||||||
 | 
					class AddressComponent extends Component
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    private $fields = [
 | 
				
			||||||
 | 
					        'address_1',
 | 
				
			||||||
 | 
					        'address_2',
 | 
				
			||||||
 | 
					        'city',
 | 
				
			||||||
 | 
					        'postal_code',
 | 
				
			||||||
 | 
					        'province_code',
 | 
				
			||||||
 | 
					        'country'
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    private $defaults = [
 | 
				
			||||||
 | 
					        'country' => 'US'
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    public array $address;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    public function __construct(array $address) {
 | 
				
			||||||
 | 
					        $this->address = $address;
 | 
				
			||||||
 | 
					        if(strlen($this->address['state']) > 2 ) {
 | 
				
			||||||
 | 
					            $this->address['state'] = $this->address['country'] == 'US' ? array_search($this->address['state'], USStates::$states) : CAProvinces::getAbbreviation($this->address['state']); 
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        $this->attributes = $this->newAttributeBag(
 | 
				
			||||||
 | 
					            Arr::only(Arr::mapWithKeys($this->address, function ($item, $key) {
 | 
				
			||||||
 | 
					                return in_array($key, ['address1','address2','state'])?[ (['address1'=>'address_1','address2'=>'address_2','state'=>'province_code'])[$key] => $item ] :[ $key => $item ];
 | 
				
			||||||
 | 
					             }),
 | 
				
			||||||
 | 
					        $this->fields) );
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    
 | 
				
			||||||
 | 
					    public function render()
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        return render('gateways.rotessa.components.address',array_merge(  $this->defaults, $this->attributes->getAttributes() ) );
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@ -0,0 +1,48 @@
 | 
				
			|||||||
 | 
					<?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace App\Http\ViewComposers\Components\Rotessa;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					use App\DataProviders\CAProvinces;
 | 
				
			||||||
 | 
					use App\DataProviders\USStates;
 | 
				
			||||||
 | 
					use Illuminate\View\Component;
 | 
				
			||||||
 | 
					use App\Models\ClientContact;
 | 
				
			||||||
 | 
					use Illuminate\Support\Arr;
 | 
				
			||||||
 | 
					use Illuminate\View\View;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Contact Component
 | 
				
			||||||
 | 
					class ContactComponent extends Component
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    public function __construct(ClientContact $contact) {
 | 
				
			||||||
 | 
					        $contact = collect($contact->client->contacts->firstWhere('is_primary', 1)->toArray())->merge([
 | 
				
			||||||
 | 
					            'home_phone' =>$contact->client->phone, 
 | 
				
			||||||
 | 
					            'custom_identifier' => $contact->client->number,
 | 
				
			||||||
 | 
					            'name' =>$contact->client->name,
 | 
				
			||||||
 | 
					            'id' => null
 | 
				
			||||||
 | 
					        ] )->all();
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
 | 
					        $this->attributes = $this->newAttributeBag(Arr::only($contact, $this->fields) );
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    private $fields = [
 | 
				
			||||||
 | 
					        'name',
 | 
				
			||||||
 | 
					        'email',
 | 
				
			||||||
 | 
					        'home_phone',
 | 
				
			||||||
 | 
					        'phone',
 | 
				
			||||||
 | 
					        'custom_identifier',
 | 
				
			||||||
 | 
					        'customer_type' ,
 | 
				
			||||||
 | 
					        'id'
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    private $defaults = [
 | 
				
			||||||
 | 
					        'customer_type' => "Business",
 | 
				
			||||||
 | 
					        'customer_identifier' => null,
 | 
				
			||||||
 | 
					        'id' => null
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    public function render()
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        return render('gateways.rotessa.components.contact', array_merge($this->defaults, $this->attributes->getAttributes() ) );
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										16
									
								
								app/Http/ViewComposers/RotessaComposer.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								app/Http/ViewComposers/RotessaComposer.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,16 @@
 | 
				
			|||||||
 | 
					<?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					use Illuminate\Support\Facades\View;
 | 
				
			||||||
 | 
					use App\DataProviders\CAProvinces;
 | 
				
			||||||
 | 
					use App\DataProviders\USStates;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					View::composer(['*.rotessa.components.address','*.rotessa.components.banks.US.bank','*.rotessa.components.dropdowns.country.US'], function ($view) {
 | 
				
			||||||
 | 
					    $states = USStates::get();
 | 
				
			||||||
 | 
					    $view->with('states', $states);
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// CAProvinces View Composer
 | 
				
			||||||
 | 
					View::composer(['*.rotessa.components.address','*.rotessa.components.banks.CA.bank','*.rotessa.components.dropdowns.country.CA'], function ($view) {
 | 
				
			||||||
 | 
					    $provinces = CAProvinces::get();
 | 
				
			||||||
 | 
					    $view->with('provinces', $provinces);
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
@ -14,6 +14,8 @@ namespace App\Providers;
 | 
				
			|||||||
use App\Http\ViewComposers\PortalComposer;
 | 
					use App\Http\ViewComposers\PortalComposer;
 | 
				
			||||||
use Illuminate\Support\ServiceProvider;
 | 
					use Illuminate\Support\ServiceProvider;
 | 
				
			||||||
use Illuminate\Support\Facades\Blade;
 | 
					use Illuminate\Support\Facades\Blade;
 | 
				
			||||||
 | 
					use App\DataProviders\CAProvinces;
 | 
				
			||||||
 | 
					use App\DataProviders\USStates;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ComposerServiceProvider extends ServiceProvider
 | 
					class ComposerServiceProvider extends ServiceProvider
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@ -25,9 +27,18 @@ class ComposerServiceProvider extends ServiceProvider
 | 
				
			|||||||
    public function boot()
 | 
					    public function boot()
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        view()->composer('portal.*', PortalComposer::class);
 | 
					        view()->composer('portal.*', PortalComposer::class);
 | 
				
			||||||
        include_once app_path('Http/ViewComposers/RotessaComposer.php');
 | 
					        view()->composer(['*.rotessa.components.address','*.rotessa.components.banks.US.bank','*.rotessa.components.dropdowns.country.US'], function ($view) {
 | 
				
			||||||
        include_once app_path("Http/ViewComposers/Components/RotessaComponents.php");
 | 
					            $states = USStates::get();
 | 
				
			||||||
        Blade::componentNamespace('App\\Http\\ViewComposers\\Components', 'rotessa');
 | 
					            $view->with('states', $states);
 | 
				
			||||||
 | 
					        });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // CAProvinces View Composer
 | 
				
			||||||
 | 
					        view()->composer(['*.rotessa.components.address','*.rotessa.components.banks.CA.bank','*.rotessa.components.dropdowns.country.CA'], function ($view) {
 | 
				
			||||||
 | 
					            $provinces = CAProvinces::get();
 | 
				
			||||||
 | 
					            $view->with('provinces', $provinces);
 | 
				
			||||||
 | 
					        });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        Blade::componentNamespace('App\\Http\\ViewComposers\\Components\\Rotessa', 'rotessa');
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										31
									
								
								app/Providers/RotessaServiceProvider.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								app/Providers/RotessaServiceProvider.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,31 @@
 | 
				
			|||||||
 | 
					<?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace App\Providers;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					use Illuminate\Support\Facades\Blade;
 | 
				
			||||||
 | 
					use Illuminate\Support\ServiceProvider as BaseProvider;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class RotessaServiceProvider extends BaseProvider
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    protected string $moduleName = 'Rotessa';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    protected string $moduleNameLower = 'rotessa';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * Boot the application events.
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
 | 
					    public function boot(): void
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        include_once app_path('Http/ViewComposers/RotessaComposer.php');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        $this->registerComponent();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * Register views.
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
 | 
					    public function registerComponent(): void
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        Blade::componentNamespace('App\\Http\\ViewComposers\\Components\\Rotessa', $this->moduleNameLower);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user