mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
- Updated the SptVersion and ModVersion dependancies to resolve *all* compatible versions and introduced new relationships to pull just the latest compatible version. Had to rewrite a *bunch*, but it should be much more capable now. It can be expensive to resolve these properties when iterated over, so *make sure they're eager loaded using the `with` method when you're building the queries*. - Updated the mod listing Livewire component to save the filter options within the PHP session instead of in browser local storage. *Much* cleaner. - Removed caching from homepage queries to see how they preform on production. Will add back later. - Updated ModVersion factory to create SptVersions if there are none specified. - Probably lots of other changes too... I need to make smaller commits. :(
125 lines
3.1 KiB
PHP
125 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Mod;
|
|
|
|
use App\Http\Filters\ModFilter;
|
|
use App\Models\SptVersion;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Livewire\Attributes\Computed;
|
|
use Livewire\Attributes\Session;
|
|
use Livewire\Attributes\Url;
|
|
use Livewire\Component;
|
|
use Livewire\WithPagination;
|
|
|
|
class Index extends Component
|
|
{
|
|
use WithPagination;
|
|
|
|
/**
|
|
* The search query value.
|
|
*/
|
|
#[Url]
|
|
#[Session]
|
|
public string $query = '';
|
|
|
|
/**
|
|
* The sort order value.
|
|
*/
|
|
#[Url]
|
|
#[Session]
|
|
public string $order = 'created';
|
|
|
|
/**
|
|
* The SPT versions filter value.
|
|
*/
|
|
#[Url]
|
|
#[Session]
|
|
public array $sptVersions = [];
|
|
|
|
/**
|
|
* The featured filter value.
|
|
*/
|
|
#[Url]
|
|
#[Session]
|
|
public string $featured = 'include';
|
|
|
|
/**
|
|
* The available SPT versions.
|
|
*/
|
|
public Collection $availableSptVersions;
|
|
|
|
/**
|
|
* The component mount method, run only once when the component is mounted.
|
|
*/
|
|
public function mount(): void
|
|
{
|
|
// TODO: This should ideally be updated to only pull SPT versions that have mods associated with them so that no
|
|
// empty options are shown in the listing filter.
|
|
$this->availableSptVersions = Cache::remember('availableSptVersions', 60 * 60, function () {
|
|
return SptVersion::select(['id', 'version', 'color_class'])->orderByDesc('version')->get();
|
|
});
|
|
|
|
$this->sptVersions = $this->sptVersions ?? $this->getLatestMinorVersions()->pluck('version')->toArray();
|
|
}
|
|
|
|
/**
|
|
* Get all hotfix versions of the latest minor SPT version.
|
|
*/
|
|
public function getLatestMinorVersions(): Collection
|
|
{
|
|
return $this->availableSptVersions->filter(function (SptVersion $sptVersion) {
|
|
return $sptVersion->isLatestMinor();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* The component mount method.
|
|
*/
|
|
public function render(): View
|
|
{
|
|
// Fetch the mods using the filters saved to the component properties.
|
|
$filters = [
|
|
'query' => $this->query,
|
|
'featured' => $this->featured,
|
|
'order' => $this->order,
|
|
'sptVersions' => $this->sptVersions,
|
|
];
|
|
$mods = (new ModFilter($filters))->apply()->paginate(16);
|
|
|
|
return view('livewire.mod.index', compact('mods'));
|
|
}
|
|
|
|
/**
|
|
* The method to reset the filters.
|
|
*/
|
|
public function resetFilters(): void
|
|
{
|
|
$this->query = '';
|
|
$this->sptVersions = $this->getLatestMinorVersions()->pluck('version')->toArray();
|
|
$this->featured = 'include';
|
|
|
|
// Clear local storage
|
|
$this->dispatch('clear-filters');
|
|
}
|
|
|
|
/**
|
|
* Compute the count of active filters.
|
|
*/
|
|
#[Computed]
|
|
public function filterCount(): int
|
|
{
|
|
$count = 0;
|
|
if ($this->query !== '') {
|
|
$count++;
|
|
}
|
|
if ($this->featured !== 'include') {
|
|
$count++;
|
|
}
|
|
$count += count($this->sptVersions);
|
|
|
|
return $count;
|
|
}
|
|
}
|