From 845f646dd4abc84b8a6e583e8bc5f7c336824814 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Thu, 17 Oct 2024 00:25:58 +0200 Subject: [PATCH] Add Table action button --- app/View/Enums/Variant.php | 68 +++++++++++++++++++++++++++++++++++ app/View/Traits/HasColors.php | 33 +++++++++++++++++ app/View/Ui/Action.php | 29 +++++++++++++++ 3 files changed, 130 insertions(+) create mode 100644 app/View/Enums/Variant.php create mode 100644 app/View/Traits/HasColors.php create mode 100644 app/View/Ui/Action.php diff --git a/app/View/Enums/Variant.php b/app/View/Enums/Variant.php new file mode 100644 index 00000000..121d284f --- /dev/null +++ b/app/View/Enums/Variant.php @@ -0,0 +1,68 @@ + 'text-primary-300', + self::SECONDARY => 'text-primary-400', + self::PRIMARYLIGHT => 'text-primary-200', + self::WARNING => 'text-yellow-300', + self::INFO => 'text-blue-300', + self::DANGER => 'text-red-100', + }; + } + + public function background(): string + { + return match ($this) { + self::PRIMARY => 'bg-primary-700', + self::SECONDARY => 'bg-primary-800', + self::PRIMARYLIGHT => 'bg-primary-600', + self::WARNING => 'bg-yellow-700', + self::INFO => 'bg-blue-700', + self::DANGER => 'bg-red-400', + }; + } + + public function hoverForeground(): string + { + return match ($this) { + self::PRIMARY => 'hover:text-primary-100', + self::SECONDARY => 'hover:text-primary-200', + self::PRIMARYLIGHT => 'hover:text-primary-100', + self::WARNING => 'hover:text-yellow-100', + self::INFO => 'hover:text-blue-100', + self::DANGER => 'hover:text-red-100', + }; + } + + public function hoverBackground(): string + { + return match ($this) { + self::PRIMARY => 'hover:bg-primary-500', + self::SECONDARY => 'hover:bg-primary-600', + self::PRIMARYLIGHT => 'hover:bg-primary-500', + self::WARNING => 'hover:bg-yellow-500', + self::INFO => 'hover:bg-blue-500', + self::DANGER => 'hover:bg-red-500', + }; + } + + public static function fromString(string $input): self + { + return collect(static::cases()) + ->first(fn ($variant) => $variant->value === $input); + } +} diff --git a/app/View/Traits/HasColors.php b/app/View/Traits/HasColors.php new file mode 100644 index 00000000..e35e30f2 --- /dev/null +++ b/app/View/Traits/HasColors.php @@ -0,0 +1,33 @@ +background(), + $variant->hoverBackground(), + ]); + } + + public function fgColor(string $variant): string + { + $variant = Variant::fromString($variant); + + return implode(' ', [ + $variant->foreground(), + $variant->hoverForeground(), + ]); + } + + public function allColors(string $variant): string + { + return "{$this->bgColor($variant)} {$this->fgColor($variant)}"; + } +} diff --git a/app/View/Ui/Action.php b/app/View/Ui/Action.php new file mode 100644 index 00000000..40ce1728 --- /dev/null +++ b/app/View/Ui/Action.php @@ -0,0 +1,29 @@ + + + + HTML; + } +}