/home/optimumoperation/smritielectronics.com/platform/plugins/ecommerce/src/Tables/TaxRuleTable.php
<?php

namespace Botble\Ecommerce\Tables;

use Botble\Base\Facades\Assets;
use Botble\Base\Facades\Html;
use Botble\Ecommerce\Facades\EcommerceHelper;
use Botble\Ecommerce\Models\Tax;
use Botble\Ecommerce\Models\TaxRule;
use Botble\Table\Abstracts\TableAbstract;
use Botble\Table\Actions\DeleteAction;
use Botble\Table\Actions\EditAction;
use Botble\Table\BulkActions\DeleteBulkAction;
use Botble\Table\Columns\Column;
use Botble\Table\Columns\CreatedAtColumn;
use Botble\Table\Columns\FormattedColumn;
use Botble\Table\Columns\IdColumn;
use Botble\Table\HeaderActions\CreateHeaderAction;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Database\Query\Builder as QueryBuilder;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Route;

class TaxRuleTable extends TableAbstract
{
    protected Tax $tax;

    public function setup(): void
    {
        Assets::addScriptsDirectly('vendor/core/plugins/ecommerce/js/tax.js');

        add_filter(
            'core_layout_after_content',
            fn ($html) => $html . view('plugins/ecommerce::taxes.rules.form-modal')->render()
        );

        /**
         * @var Tax $tax
         */
        $tax = Route::current()->parameter('tax', new Tax());

        $this
            ->model(TaxRule::class)
            ->setOption('id', 'ecommerce-tax-rule-table')
            ->setTax($tax)
            ->addActions([
                EditAction::make()->route('tax.rule.edit')->attributes(['class' => 'btn btn-sm btn-icon btn-primary btn-edit-item']),
                DeleteAction::make()->route('tax.rule.destroy'),
            ]);
    }

    public function query(): Relation|Builder|QueryBuilder
    {
        $with = [];
        if (EcommerceHelper::loadCountriesStatesCitiesFromPluginLocation()) {
            $with = ['locationCountry', 'locationState', 'locationCity'];
        }

        $query = $this
            ->getModel()
            ->query()
            ->where('tax_id', $this->tax->getKey())
            ->with($with);

        return $this->applyScopes($query);
    }

    public function columns(): array
    {
        $columns = [
            IdColumn::make(),
            FormattedColumn::make('country')
                ->title(trans('plugins/ecommerce::tax.country'))
                ->withEmptyState()
                ->getValueUsing(function (FormattedColumn $column) {
                    $taxRule = $column->getItem();

                    $country = $taxRule->country_name;

                    return $country != $taxRule->country ? $country : EcommerceHelper::getCountryNameById($taxRule->country);
                }),
            FormattedColumn::make('state')
                ->title(trans('plugins/ecommerce::tax.state'))
                ->withEmptyState()
                ->getValueUsing(fn (FormattedColumn $column) => $column->getItem()->state_name),
            FormattedColumn::make('city')
                ->title(trans('plugins/ecommerce::tax.city'))
                ->withEmptyState()
                ->getValueUsing(fn (FormattedColumn $column) => $column->getItem()->city_name),
            FormattedColumn::make('zip_code')
                ->title(trans('plugins/ecommerce::tax.zip_code'))
                ->withEmptyState(),
            FormattedColumn::make('percentage')
                ->title(trans('plugins/ecommerce::tax.percentage'))
                ->getValueUsing(function (FormattedColumn $column) {
                    $taxRule = $column->getItem();

                    $tax = $taxRule->tax;

                    $color = $taxRule->percentage > $tax->percentage ? 'text-danger' : 'text-success';

                    return Html::tag('span', $taxRule->percentage . '%', ['class' => $color]);
                }),
            CreatedAtColumn::make(),
        ];

        if (! EcommerceHelper::isZipCodeEnabled()) {
            $columns = Arr::where($columns, fn (Column $column) => $column->get('name') != 'zip_code');
        }

        return $columns;
    }

    public function getButtons(): array
    {
        return [
            ...parent::getButtons(),
            CreateHeaderAction::make()
                ->addAttribute('class', 'create-tax-rule-item')
                ->withDefaultAction(false)
                ->route('tax.rule.create', ['tax_id' => $this->tax->getKey()])
                ->toArray(),
        ];
    }

    public function bulkActions(): array
    {
        return [
            DeleteBulkAction::make()->permission('tax.rule.destroy'),
        ];
    }

    public function setTax(Tax $tax): self
    {
        return tap($this, fn () => $this->tax = $tax);
    }
}