mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
35 lines
903 B
PHP
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());
|
|
});
|
|
}
|
|
}
|