src/Button.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Atk4\Ui;

/**
 * Component implementing UI Button.
 */
class Button extends View
{
    public $defaultTemplate = 'button.html';

    public $ui = 'button';

    /** @var string|array|Icon Icon that will appear on the button (left). */
    public $icon;

    /** @var string|array|Icon Additional icon that can appear on the right of the button. */
    public $iconRight;

    #[\Override]
    protected function renderView(): void
    {
        if ($this->icon) {
            if (!is_object($this->icon)) {
                $this->icon = new Icon($this->icon);
            }

            $this->add($this->icon, 'LeftIcon');

            if ($this->content) {
                $this->addClass('labeled');
            }

            $this->addClass('icon');
        }

        if ($this->iconRight) {
            if ($this->icon) {
                throw (new Exception('Cannot use icon and iconRight simultaneously'))
                    ->addMoreInfo('icon', $this->icon)
                    ->addMoreInfo('iconRight', $this->iconRight);
            }

            if (!is_object($this->iconRight)) {
                $this->iconRight = new Icon($this->iconRight);
            }

            $this->add($this->iconRight, 'RightIcon');

            if ($this->content) {
                $this->addClass('right labeled');
            }

            $this->addClass('icon');
        }

        parent::renderView();
    }
}