course_events with calendar

This commit is contained in:
Benjamin Takats
2022-12-16 12:57:59 +01:00
parent be7336e63a
commit 1adf1e366a
3 changed files with 182 additions and 1 deletions

View File

@@ -3,14 +3,79 @@
namespace App\Http\Livewire\School;
use App\Models\Country;
use App\Models\CourseEvent;
use Livewire\Component;
class EventTable extends Component
{
public Country $country;
public ?int $year = null;
protected $queryString = ['year'];
public function mount()
{
if (!$this->year) {
$this->year = now()->year;
}
}
public function render()
{
return view('livewire.school.event-table');
return view('livewire.school.event-table', [
'markers' => CourseEvent::query()
->with([
'course',
'venue.city.country',
])
->where(fn($query) => $query
->whereHas('venue.city.country',
fn($query) => $query->where('countries.code', $this->country->code))
)
->get()
->map(fn($event) => [
'id' => $event->id,
'name' => $event->course->name,
'coords' => [$event->venue->city->latitude, $event->venue->city->longitude],
]),
'events' => CourseEvent::query()
->get()
->map(fn($event) => [
'id' => $event->id,
'startDate' => $event->from,
'endDate' => $event->to,
'location' => $event->course->name,
'description' => $event->venue->name,
]),
]);
}
public function filterByMarker($id)
{
return to_route('school.table.event', [
'#table',
'country' => $this->country->code,
'year' => $this->year,
'table' => [
'filters' => [
'byid' => $id,
],
]
]);
}
public function popover($content, $ids)
{
return to_route('school.table.event', [
'#table',
'country' => $this->country->code,
'year' => $this->year,
'table' => [
'filters' => [
'byid' => $ids,
]
]
]);
}
}