-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/inikoo/aiku into main
- Loading branch information
Showing
24 changed files
with
1,645 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
133 changes: 133 additions & 0 deletions
133
app/Actions/UI/Retina/Dropshipping/Client/CreateCustomerClient.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
<?php | ||
/* | ||
* Author: Raul Perusquia <raul@inikoo.com> | ||
* Created: Tue, 20 Jun 2023 20:32:25 Malaysia Time, Pantai Lembeng, Bali, Indonesia | ||
* Copyright (c) 2023, Raul A Perusquia Flores | ||
*/ | ||
|
||
namespace App\Actions\UI\Retina\Dropshipping\Client; | ||
|
||
use App\Actions\Helpers\Country\UI\GetAddressData; | ||
use App\Actions\OrgAction; | ||
use App\Actions\RetinaAction; | ||
use App\Http\Resources\Helpers\AddressFormFieldsResource; | ||
use App\Models\Catalogue\Shop; | ||
use App\Models\CRM\Customer; | ||
use App\Models\Helpers\Address; | ||
use App\Models\SysAdmin\Organisation; | ||
use Inertia\Inertia; | ||
use Inertia\Response; | ||
use Lorisleiva\Actions\ActionRequest; | ||
|
||
class CreateCustomerClient extends RetinaAction | ||
{ | ||
public function handle(ActionRequest $request): Response | ||
{ | ||
return Inertia::render( | ||
'CreateModel', | ||
[ | ||
// 'breadcrumbs' => $this->getBreadcrumbs( | ||
// $request->route()->getName(), | ||
// $request->route()->originalParameters() | ||
// ), | ||
'title' => __('new client'), | ||
'pageHead' => [ | ||
'title' => __('new client'), | ||
'icon' => [ | ||
'icon' => ['fal', 'fa-user'], | ||
'title' => __('client') | ||
], | ||
'actions' => [ | ||
[ | ||
'type' => 'button', | ||
'style' => 'exitEdit', | ||
'label' => __('cancel'), | ||
'route' => [ | ||
'name' => preg_replace('/create$/', 'index', $request->route()->getName()), | ||
'parameters' => array_values($request->route()->originalParameters()) | ||
], | ||
] | ||
] | ||
], | ||
'formData' => [ | ||
'blueprint' => | ||
[ | ||
[ | ||
'title' => __('contact'), | ||
'fields' => [ | ||
'company_name' => [ | ||
'type' => 'input', | ||
'label' => __('company') | ||
], | ||
'contact_name' => [ | ||
'type' => 'input', | ||
'label' => __('contact name') | ||
], | ||
'email' => [ | ||
'type' => 'input', | ||
'label' => __('email') | ||
], | ||
'phone' => [ | ||
'type' => 'input', | ||
'label' => __('phone') | ||
], | ||
'address' => [ | ||
'type' => 'address', | ||
'label' => __('Address'), | ||
'value' => AddressFormFieldsResource::make( | ||
new Address( | ||
[ | ||
'country_id' => $this->customer->shop->country_id, | ||
|
||
] | ||
) | ||
)->getArray(), | ||
'options' => [ | ||
'countriesAddressData' => GetAddressData::run() | ||
|
||
] | ||
] | ||
] | ||
] | ||
], | ||
'route' => [ | ||
'name' => 'retina.models.customer-client.store' | ||
] | ||
] | ||
|
||
] | ||
); | ||
} | ||
|
||
public function authorize(ActionRequest $request): bool | ||
{ | ||
return $request->user()->is_root; | ||
} | ||
|
||
|
||
public function asController(ActionRequest $request): Response | ||
{ | ||
$this->initialisation($request); | ||
$this->parent = $this->customer; | ||
|
||
return $this->handle($request); | ||
} | ||
|
||
// public function getBreadcrumbs(string $routeName, array $routeParameters): array | ||
// { | ||
// return array_merge( | ||
// IndexCustomerClients::make()->getBreadcrumbs( | ||
// routeName: preg_replace('/create$/', 'index', $routeName), | ||
// routeParameters: $routeParameters, | ||
// ), | ||
// [ | ||
// [ | ||
// 'type' => 'creatingModel', | ||
// 'creatingModel' => [ | ||
// 'label' => __('Creating Client'), | ||
// ] | ||
// ] | ||
// ] | ||
// ); | ||
// } | ||
} |
216 changes: 216 additions & 0 deletions
216
app/Actions/UI/Retina/Dropshipping/Client/IndexCustomerClients.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,216 @@ | ||
<?php | ||
/* | ||
* Author: Raul Perusquia <raul@inikoo.com> | ||
* Created: Tue, 20 Jun 2023 20:32:25 Malaysia Time, Pantai Lembeng, Bali, Indonesia | ||
* Copyright (c) 2023, Raul A Perusquia Flores | ||
*/ | ||
|
||
namespace App\Actions\UI\Retina\Dropshipping\Client; | ||
|
||
use App\Actions\OrgAction; | ||
use App\Actions\RetinaAction; | ||
use App\Http\Resources\CRM\CustomerClientResource; | ||
use App\InertiaTable\InertiaTable; | ||
use App\Models\CRM\Customer; | ||
use App\Models\Catalogue\Shop; | ||
use App\Models\Dropshipping\CustomerClient; | ||
use App\Models\SysAdmin\Organisation; | ||
use App\Services\QueryBuilder; | ||
use Closure; | ||
use Illuminate\Contracts\Pagination\LengthAwarePaginator; | ||
use Illuminate\Http\Resources\Json\AnonymousResourceCollection; | ||
use Inertia\Inertia; | ||
use Inertia\Response; | ||
use Lorisleiva\Actions\ActionRequest; | ||
use Spatie\QueryBuilder\AllowedFilter; | ||
|
||
class IndexCustomerClients extends RetinaAction | ||
{ | ||
public function authorize(ActionRequest $request): bool | ||
{ | ||
return $request->user()->is_root; | ||
} | ||
|
||
public function asController(ActionRequest $request): LengthAwarePaginator | ||
{ | ||
$this->initialisation($request); | ||
$this->parent = $this->customer; | ||
|
||
return $this->handle($this->customer); | ||
} | ||
|
||
public function handle(Customer $parent, $prefix = null): LengthAwarePaginator | ||
{ | ||
$globalSearch = AllowedFilter::callback('global', function ($query, $value) { | ||
$query->where(function ($query) use ($value) { | ||
$query->whereAnyWordStartWith('customer_clients.name', $value) | ||
->orWhereStartWith('customer_clients.email', $value) | ||
->orWhere('customer_clients.reference', '=', $value); | ||
}); | ||
}); | ||
|
||
if ($prefix) { | ||
InertiaTable::updateQueryBuilderParameters($prefix); | ||
} | ||
|
||
$queryBuilder = QueryBuilder::for(CustomerClient::class); | ||
|
||
|
||
if (class_basename($parent) == 'Customer') { | ||
$queryBuilder->where('customer_clients.customer_id', $parent->id); | ||
} | ||
|
||
|
||
/* | ||
foreach ($this->elementGroups as $key => $elementGroup) { | ||
$queryBuilder->whereElementGroup( | ||
prefix: $prefix, | ||
key: $key, | ||
allowedElements: array_keys($elementGroup['elements']), | ||
engine: $elementGroup['engine'] | ||
); | ||
} | ||
*/ | ||
|
||
|
||
return $queryBuilder | ||
->defaultSort('customer_clients.reference') | ||
->select([ | ||
'customer_clients.location', | ||
'customer_clients.reference', | ||
'customer_clients.id', | ||
'customer_clients.name', | ||
'customer_clients.ulid', | ||
'customers.reference as customer_reference', | ||
'customers.slug as customer_slug', | ||
'customer_clients.created_at' | ||
]) | ||
->leftJoin('customers', 'customers.id', 'customer_id') | ||
->allowedSorts(['reference', 'name', 'created_at']) | ||
->allowedFilters([$globalSearch]) | ||
->withPaginator($prefix) | ||
->withQueryString(); | ||
} | ||
|
||
public function tableStructure($parent, ?array $modelOperations = null, $prefix = null): Closure | ||
{ | ||
return function (InertiaTable $table) use ($parent, $modelOperations, $prefix) { | ||
if ($prefix) { | ||
$table | ||
->name($prefix) | ||
->pageName($prefix.'Page'); | ||
} | ||
|
||
$table | ||
->withModelOperations($modelOperations) | ||
->withGlobalSearch() | ||
->withEmptyState( | ||
match (class_basename($parent)) { | ||
'Customer' => [ | ||
'title' => __("No clients found"), | ||
'description' => __("You can add your client 🤷🏽♂️"), | ||
'count' => $parent->stats->number_clients, | ||
'action' => [ | ||
'type' => 'button', | ||
'style' => 'create', | ||
'tooltip' => __('new client'), | ||
'label' => __('client'), | ||
'route' => [ | ||
'name' => 'retina.dropshipping.client.create', | ||
] | ||
] | ||
], | ||
default => null | ||
} | ||
) | ||
->column(key: 'name', label: __('name'), canBeHidden: false, sortable: true, searchable: true) | ||
->column(key: 'location', label: __('location'), canBeHidden: false, searchable: true) | ||
->column(key: 'created_at', label: __('since'), canBeHidden: false, sortable: true, searchable: true); | ||
}; | ||
} | ||
|
||
public function jsonResponse(LengthAwarePaginator $customerClients): AnonymousResourceCollection | ||
{ | ||
return CustomerClientResource::collection($customerClients); | ||
} | ||
|
||
public function htmlResponse(LengthAwarePaginator $customerClients, ActionRequest $request): Response | ||
{ | ||
// $scope = $this->parent; | ||
$icon = ['fal', 'fa-user']; | ||
$title = $this->parent->name; | ||
$iconRight = [ | ||
'icon' => ['fal', 'fa-user-friends'], | ||
'title' => __('customer client') | ||
]; | ||
$afterTitle = [ | ||
|
||
'label' => __('Clients') | ||
]; | ||
|
||
|
||
return Inertia::render( | ||
'Dropshipping/Client/CustomerClients', | ||
[ | ||
// 'breadcrumbs' => $this->getBreadcrumbs( | ||
// $request->route()->getName(), | ||
// $request->route()->originalParameters() | ||
// ), | ||
'title' => __('customer clients'), | ||
'pageHead' => [ | ||
'title' => $title, | ||
'afterTitle' => $afterTitle, | ||
'iconRight' => $iconRight, | ||
'icon' => $icon, | ||
'actions' => [ | ||
[ | ||
'type' => 'button', | ||
'style' => 'create', | ||
'tooltip' => __('New Client'), | ||
'label' => __('New Client'), | ||
'route' => [ | ||
'name' => 'retina.dropshipping.client.create', | ||
] | ||
], | ||
], | ||
|
||
], | ||
'data' => CustomerClientResource::collection($customerClients), | ||
|
||
] | ||
)->table($this->tableStructure($this->parent)); | ||
} | ||
|
||
// public function getBreadcrumbs(string $routeName, array $routeParameters): array | ||
// { | ||
// $headCrumb = function (array $routeParameters = []) { | ||
// return [ | ||
// [ | ||
// 'type' => 'simple', | ||
// 'simple' => [ | ||
// 'route' => $routeParameters, | ||
// 'label' => __('Clients'), | ||
// 'icon' => 'fal fa-bars' | ||
// ], | ||
// ], | ||
// ]; | ||
// }; | ||
|
||
// return match ($routeName) { | ||
// 'grp.org.shops.show.crm.customers.show.customer-clients.index' => | ||
// array_merge( | ||
// ShowCustomer::make()->getBreadcrumbs( | ||
// 'grp.org.shops.show.crm.customers.show', | ||
// $routeParameters | ||
// ), | ||
// $headCrumb( | ||
// [ | ||
// 'name' => 'grp.org.shops.show.crm.customers.show.customer-clients.index', | ||
// 'parameters' => $routeParameters | ||
// ] | ||
// ) | ||
// ), | ||
// default => [] | ||
// }; | ||
// } | ||
} |
Oops, something went wrong.