/home/optimumoperation/smritielectronics.com/platform/core/base/src/Traits/Forms/CanSpanColumns.php
<?php

namespace Botble\Base\Traits\Forms;

use Botble\Base\Forms\FormAbstract;
use Botble\Base\Forms\FormField;

trait CanSpanColumns
{
    protected int $colspan = 0;

    public function colspan(int $colspan): static
    {
        $this->colspan = $colspan;

        return $this;
    }

    public function getColspan(): int
    {
        return $this->colspan;
    }

    public function getColumnSpan(int|string|null $breakpoint = null): array|int|string|null
    {
        /**
         * @var FormField $current
         */
        $current = $this;

        $columnSpan = [];
        $span = $current->getOption('colspan');

        /**
         * @var FormAbstract $parent
         */
        $parent = $current->getParent();

        if ($span === 'full') {
            $parentSpan = $parent->getColumns();

            if ($breakpoint !== null) {
                $span = $parentSpan[$breakpoint] ?? null;
            }
        }

        if (! is_array($span)) {
            $span = [
                'lg' => min(ceil(12 / ((int) $parent->getColumns('lg')) * $span), 12),
            ];
        }

        $columnSpan = [
            ...$columnSpan,
            ...$span,
        ];

        if ($breakpoint !== null) {
            return $columnSpan[$breakpoint] ?? null;
        }

        return array_map(function ($value) use ($span) {
            return min($value * $span, 12);
        }, $parent->getColumns());
    }

    public function render(array $options = [], $showLabel = true, $showField = true, $showError = true)
    {
        return view('core/base::forms.columns.column-span', [
            'field' => $this,
            'html' => parent::render($options, $showLabel, $showField, $showError), // @phpstan-ignore-line
        ]);
    }
}