From cebb14f59cb54b24861a9aef03b9fcbf57465967 Mon Sep 17 00:00:00 2001 From: RoscoeDeWah Date: Thu, 16 Jan 2025 13:57:12 +0000 Subject: Remove *more* unused stuff --- app/View/Components/DiscordStatus.php | 68 ----------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 app/View/Components/DiscordStatus.php (limited to 'app/View/Components/DiscordStatus.php') diff --git a/app/View/Components/DiscordStatus.php b/app/View/Components/DiscordStatus.php deleted file mode 100644 index 3ad3a3b..0000000 --- a/app/View/Components/DiscordStatus.php +++ /dev/null @@ -1,68 +0,0 @@ -json(); - if (!isset($data["data"])) return null; - $presence = $data["data"]; - Cache::put('discord_presence', $presence, now()->addSeconds(60)); - return $presence; - } - - public function getOnlineStatus(): ?array { - $presence = $this->getDiscordPresence(); - if ($presence == null) return null; - return match ($presence["discord_status"]) { - "online", "dnd" => [ - "text" => "online", - "color" => "#02c83a" - ], - "idle" => [ - "text" => "away", - "color" => "#d77c20" - ], - default => [ - "text" => "offline", - "color" => "#ca3329" - ], - }; - } - - /** - * Get the view / contents that represent the component. - */ - public function render(): View|Closure|string - { - return view('components.discord-status', [ - 'status' => $this->getOnlineStatus(), - ]); - } -} -- cgit v1.2.3-54-g00ecf