Advertisement
Guest User

Untitled

a guest
Jun 14th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.76 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Filament\Widgets;
  4.  
  5. use Filament\Support\Enums\IconPosition;
  6. use Filament\Widgets\StatsOverviewWidget as BaseWidget;
  7. use Filament\Widgets\StatsOverviewWidget\Stat;
  8. use App\Models\Announcement;
  9. use Illuminate\Support\HtmlString;
  10. use Illuminate\Support\Facades\Session;
  11. use Illuminate\Support\Str;
  12.  
  13.  
  14. class AnnouncementOverview extends BaseWidget
  15. {
  16.     protected $currentAnnouncementId = null;
  17.  
  18.     //refresh delay of widget
  19.     protected static ?string $pollingInterval = '5s';
  20.  
  21.    
  22.     protected function getStats(): array {
  23.  
  24.         $announcements = Announcement::whereNull('deleted_at')->orderBy('id', 'asc')->get();
  25.         $announcementCount = $announcements->count();
  26.  
  27.         if ($announcementCount === 0) {
  28.             return [];
  29.         }
  30.  
  31.  
  32.         /********************************************
  33.          * current announcement ID from the session
  34.          *
  35.          * @param Form $form
  36.          * @return Form
  37.          */
  38.         $this->currentAnnouncementId = Session::get('currentAnnouncementId', $announcements->first()->id);
  39.  
  40.         $currentAnnouncement = $announcements->where('id', $this->currentAnnouncementId)->first();
  41.  
  42.  
  43.         /********************************************
  44.          * shorten the 'announcement_description'
  45.          *
  46.          * @param Form $form
  47.          * @return Form
  48.          */
  49.         $shortDescription = Str::limit($currentAnnouncement->announcement_description, 70, ' ....');
  50.  
  51.  
  52.         /********************************************
  53.          * get user who created the announcement
  54.          *
  55.          * connected on Announcement.php 'public function currentUserName()'
  56.          * @param Form $form
  57.          * @return Form
  58.          */
  59.         $user = $currentAnnouncement->currentUserName->name;
  60.  
  61.  
  62.         /********************************************
  63.          * WIDGET
  64.          * @param Form $form
  65.          * @return Form
  66.          */
  67.         $stats = [
  68.             Stat::make("Announcement by $user", $currentAnnouncement->announcement_title)
  69.                 ->description(new HtmlString("<div>{$shortDescription}</div>"))
  70.                 ->descriptionIcon('heroicon-m-megaphone', IconPosition::After)
  71.                 ->url(\App\Filament\Resources\AnnouncementResource::getUrl()),
  72.         ];
  73.  
  74.  
  75.  
  76.         /********************************************
  77.          * Get the next announcement ID and update the session
  78.          * @param Form $form
  79.          * @return Form
  80.          */
  81.         $nextAnnouncementId = $announcements->where('id', '>', $this->currentAnnouncementId)->min('id');
  82.         $nextAnnouncementId = $nextAnnouncementId ?: $announcements->first()->id;
  83.         Session::put('currentAnnouncementId', $nextAnnouncementId);
  84.  
  85.         return $stats;
  86.     }
  87.  
  88.    
  89. }
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement