2022-05-17 01:37:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Contribution;
|
|
|
|
|
|
|
|
use App\Member\Member;
|
|
|
|
use App\Pdf\EnvType;
|
|
|
|
use App\Pdf\PdfRepository;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use Spatie\LaravelData\Data;
|
|
|
|
|
|
|
|
class SolingenData extends Data implements PdfRepository
|
|
|
|
{
|
|
|
|
public function __construct(
|
|
|
|
public string $eventName,
|
|
|
|
public string $dateFrom,
|
|
|
|
public string $dateUntil,
|
2022-05-20 01:18:11 +02:00
|
|
|
public array $members,
|
2022-05-17 01:37:07 +02:00
|
|
|
public ?string $filename = '',
|
2022-05-20 01:18:11 +02:00
|
|
|
public $type = 'F',
|
2022-05-17 01:37:07 +02:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function fromRequest(Request $request): self
|
|
|
|
{
|
|
|
|
return new self(
|
|
|
|
eventName: $request->eventName,
|
|
|
|
dateFrom: $request->dateFrom,
|
|
|
|
dateUntil: $request->dateUntil,
|
2022-05-20 01:18:11 +02:00
|
|
|
members: $request->members,
|
2022-05-17 01:37:07 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function checkboxes(): string
|
|
|
|
{
|
|
|
|
$output = '';
|
|
|
|
|
|
|
|
$firstRow = collect(['B' => 'Jugendbildungsmaßnahme', 'G' => 'Gruppenleiter/innenschulung', 'FK' => 'Ferienkolonie', 'F' => 'Freizeitnaßnahme'])->map(function ($item, $key) {
|
|
|
|
return ($this->type === $key ? '\\checkedcheckbox' : '\\checkbox').'{'.$item.'}';
|
|
|
|
})->implode(' & ').' \\\\';
|
|
|
|
|
|
|
|
$secondRow = collect(['I' => 'Int. Jugendbegegnung', 'P' => 'politische Jugendbildung', 'PR' => 'Projekte'])->map(function ($item, $key) {
|
|
|
|
return ($this->type === $key ? '\\checkedcheckbox' : '\\checkbox').'{'.$item.'}';
|
|
|
|
})->implode(' & ').' & \\emptycheckbox \\\\';
|
|
|
|
|
|
|
|
return $firstRow."\n".$secondRow;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function members(): Collection
|
|
|
|
{
|
2022-05-20 01:18:11 +02:00
|
|
|
return Member::whereIn('id', $this->members)->orderByRaw('lastname, firstname')->get();
|
2022-05-17 01:37:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function niceEventFrom(): string
|
|
|
|
{
|
|
|
|
return Carbon::parse($this->dateFrom)->format('d.m.Y');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function niceEventTo(): string
|
|
|
|
{
|
|
|
|
return Carbon::parse($this->dateUntil)->format('d.m.Y');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFilename(): string
|
|
|
|
{
|
|
|
|
return 'zuschuesse-solingen-'.Str::slug($this->eventName);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getView(): string
|
|
|
|
{
|
|
|
|
return 'tex.zuschuss-stadt';
|
|
|
|
}
|
|
|
|
|
2022-08-23 23:49:19 +02:00
|
|
|
public function getTemplate(): ?string
|
2022-05-17 01:37:07 +02:00
|
|
|
{
|
2022-08-23 23:49:19 +02:00
|
|
|
return null;
|
2022-05-17 01:37:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setFilename(string $filename): static
|
|
|
|
{
|
|
|
|
$this->filename = $filename;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getScript(): EnvType
|
|
|
|
{
|
|
|
|
return EnvType::PDFLATEX;
|
|
|
|
}
|
|
|
|
}
|