Files
animethemes-server/app/Events/Wiki/Anime/Theme/ThemeUpdated.php
T

35 lines
903 B
PHP

<?php
declare(strict_types=1);
namespace App\Events\Wiki\Anime\Theme;
use App\Contracts\Events\UpdateRelatedIndicesEvent;
use App\Events\Base\Wiki\WikiUpdatedEvent;
use App\Models\Wiki\Anime\AnimeTheme;
use App\Models\Wiki\Anime\Theme\AnimeThemeEntry;
use App\Models\Wiki\Video;
/**
* @extends WikiUpdatedEvent<AnimeTheme>
*/
class ThemeUpdated extends WikiUpdatedEvent implements UpdateRelatedIndicesEvent
{
public function __construct(AnimeTheme $theme)
{
parent::__construct($theme);
$this->initializeEmbedFields($theme);
}
public function updateRelatedIndices(): void
{
$theme = $this->getModel()->load(AnimeTheme::RELATION_VIDEOS);
$theme->animethemeentries->each(function (AnimeThemeEntry $entry): void {
$entry->searchable();
$entry->videos->each(fn (Video $video) => $video->searchable());
});
}
}