Compare commits
69 Commits
Author | SHA1 | Date |
---|---|---|
philipp lang | 549c446430 | |
philipp lang | 667fc4b731 | |
philipp lang | 50a5d6216b | |
philipp lang | cc1c12d9f1 | |
philipp lang | 5653489fa6 | |
philipp lang | dbdadde542 | |
philipp lang | e664255d7c | |
philipp lang | 612b782c9b | |
philipp lang | e5b2e1799f | |
philipp lang | 110ad9d978 | |
philipp lang | 0cb6f9111e | |
philipp lang | aceb2b0a73 | |
philipp lang | 36412a7e90 | |
philipp lang | 5c8a597fef | |
philipp lang | becd5881c3 | |
philipp lang | de508aa8ce | |
philipp lang | bafdb86f95 | |
philipp lang | 31d9b38814 | |
philipp lang | 1e5bd6127c | |
philipp lang | c52995aeb7 | |
philipp lang | 98f567b6cd | |
philipp lang | 0d04d9ee99 | |
philipp lang | 4877b59f46 | |
philipp lang | 5263c2c976 | |
philipp lang | 494fc30d21 | |
philipp lang | 3199a2d5fb | |
philipp lang | bc55d19ed0 | |
philipp lang | 9333b1e562 | |
philipp lang | 019f421c9b | |
philipp lang | a0091ec995 | |
philipp lang | 969406313d | |
philipp lang | 43e1fd4080 | |
philipp lang | a51258bef9 | |
philipp lang | 5b52d94390 | |
philipp lang | 99f32d49f8 | |
philipp lang | e5916c65df | |
philipp lang | 17beda5524 | |
philipp lang | 45ccc16979 | |
philipp lang | 818a72e133 | |
philipp lang | 01512705e3 | |
philipp lang | 004a3b7a0f | |
philipp lang | 5518f54f0c | |
philipp lang | 4351dab663 | |
philipp lang | c27bf43b4a | |
philipp lang | 582d252e36 | |
philipp lang | e197c236d6 | |
philipp lang | 4da1e01296 | |
philipp lang | 689614ee93 | |
philipp lang | 9d5122b13f | |
philipp lang | 66561ad43e | |
philipp lang | 867cf99a44 | |
philipp lang | b0a8cf5d1b | |
philipp lang | 5c925dd92b | |
philipp lang | 963f8c02a9 | |
philipp lang | 5c4c9f130b | |
philipp lang | a76da98d61 | |
philipp lang | 04addccde5 | |
philipp lang | e4d1df6a28 | |
philipp lang | 17f3aff307 | |
philipp lang | 3a0ebb2483 | |
philipp lang | 4b89bbfda4 | |
philipp lang | 4188f0733c | |
philipp lang | f93a0efed2 | |
philipp lang | 6b40951b9e | |
philipp lang | ddaa1a5027 | |
philipp lang | f3a3f3cd22 | |
philipp lang | 22740f8aff | |
philipp lang | 751ef3891b | |
philipp lang | 645825765d |
|
@ -40,3 +40,4 @@ Homestead.json
|
||||||
/public/sprite.svg
|
/public/sprite.svg
|
||||||
/.php-cs-fixer.cache
|
/.php-cs-fixer.cache
|
||||||
/groups.sql
|
/groups.sql
|
||||||
|
/.phpunit.cache/
|
||||||
|
|
|
@ -4,10 +4,10 @@ namespace App\Contribution\Documents;
|
||||||
|
|
||||||
use App\Contribution\Data\MemberData;
|
use App\Contribution\Data\MemberData;
|
||||||
use App\Country;
|
use App\Country;
|
||||||
use App\Invoice\InvoiceSettings;
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
|
use Modules\Invoice\InvoiceSettings;
|
||||||
use Zoomyboy\Tex\Engine;
|
use Zoomyboy\Tex\Engine;
|
||||||
use Zoomyboy\Tex\Template;
|
use Zoomyboy\Tex\Template;
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
namespace App\Contribution\Documents;
|
namespace App\Contribution\Documents;
|
||||||
|
|
||||||
use App\Contribution\Data\MemberData;
|
use App\Contribution\Data\MemberData;
|
||||||
use App\Invoice\InvoiceSettings;
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
|
use Modules\Invoice\InvoiceSettings;
|
||||||
use Zoomyboy\Tex\Engine;
|
use Zoomyboy\Tex\Engine;
|
||||||
use Zoomyboy\Tex\Template;
|
use Zoomyboy\Tex\Template;
|
||||||
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Efz;
|
|
||||||
|
|
||||||
use App\Dashboard\Blocks\Block;
|
|
||||||
use App\Member\Member;
|
|
||||||
use Illuminate\Database\Eloquent\Builder;
|
|
||||||
|
|
||||||
class EfzPendingBlock extends Block
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @return Builder<Member>
|
|
||||||
*/
|
|
||||||
public function query(): Builder
|
|
||||||
{
|
|
||||||
return Member::where(function ($query) {
|
|
||||||
return $query->where('efz', '<=', now()->subYears(5)->endOfYear())
|
|
||||||
->orWhereNull('efz');
|
|
||||||
})
|
|
||||||
->whereCurrentGroup()
|
|
||||||
->orderByRaw('lastname, firstname')
|
|
||||||
->whereHas('memberships', fn ($builder) => $builder->isLeader()->active());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array{members: array<int, string>}
|
|
||||||
*/
|
|
||||||
public function data(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'members' => $this->query()->get()->map(fn ($member) => $member->fullname)->toArray(),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function component(): string
|
|
||||||
{
|
|
||||||
return 'efz-pending';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function title(): string
|
|
||||||
{
|
|
||||||
return 'Ausstehende Führungszeugnisse';
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,60 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
|
||||||
use App\Providers\RouteServiceProvider;
|
|
||||||
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use Inertia\Response;
|
|
||||||
|
|
||||||
class LoginController extends Controller
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Login Controller
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This controller handles authenticating users for the application and
|
|
||||||
| redirecting them to your home screen. The controller uses a trait
|
|
||||||
| to conveniently provide its functionality to your applications.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
use AuthenticatesUsers;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Where to redirect users after login.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $redirectTo = RouteServiceProvider::HOME;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new controller instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->middleware('guest')->except('logout');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function showLoginForm(): Response
|
|
||||||
{
|
|
||||||
session()->put('title', 'Anmelden');
|
|
||||||
|
|
||||||
return \Inertia::render('authentication/VLogin');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validate the user login request.
|
|
||||||
*/
|
|
||||||
protected function validateLogin(Request $request): void
|
|
||||||
{
|
|
||||||
$request->validate([
|
|
||||||
$this->username() => 'required|max:255|string|email',
|
|
||||||
'password' => 'required|string',
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,71 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
|
||||||
use App\Providers\RouteServiceProvider;
|
|
||||||
use App\User;
|
|
||||||
use Illuminate\Foundation\Auth\RegistersUsers;
|
|
||||||
use Illuminate\Support\Facades\Hash;
|
|
||||||
use Illuminate\Support\Facades\Validator;
|
|
||||||
|
|
||||||
class RegisterController extends Controller
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Register Controller
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This controller handles the registration of new users as well as their
|
|
||||||
| validation and creation. By default this controller uses a trait to
|
|
||||||
| provide this functionality without requiring any additional code.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
use RegistersUsers;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Where to redirect users after registration.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $redirectTo = RouteServiceProvider::HOME;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new controller instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->middleware('guest');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a validator for an incoming registration request.
|
|
||||||
*
|
|
||||||
* @return \Illuminate\Contracts\Validation\Validator
|
|
||||||
*/
|
|
||||||
protected function validator(array $data)
|
|
||||||
{
|
|
||||||
return Validator::make($data, [
|
|
||||||
'name' => ['required', 'string', 'max:255'],
|
|
||||||
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
|
|
||||||
'password' => ['required', 'string', 'min:8', 'confirmed'],
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new user instance after a valid registration.
|
|
||||||
*
|
|
||||||
* @return \App\User
|
|
||||||
*/
|
|
||||||
protected function create(array $data)
|
|
||||||
{
|
|
||||||
return User::create([
|
|
||||||
'name' => $data['name'],
|
|
||||||
'email' => $data['email'],
|
|
||||||
'password' => Hash::make($data['password']),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,50 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Http\Controllers\Auth;
|
|
||||||
|
|
||||||
use App\Http\Controllers\Controller;
|
|
||||||
use App\Providers\RouteServiceProvider;
|
|
||||||
use Illuminate\Foundation\Auth\ResetsPasswords;
|
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use Inertia\Inertia;
|
|
||||||
use Inertia\Response;
|
|
||||||
|
|
||||||
class ResetPasswordController extends Controller
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Password Reset Controller
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This controller is responsible for handling password reset requests
|
|
||||||
| and uses a simple trait to include this behavior. You're free to
|
|
||||||
| explore this trait and override any methods you wish to tweak.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
use ResetsPasswords;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Where to redirect users after resetting their password.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $redirectTo = RouteServiceProvider::HOME;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Display the password reset view for the given token.
|
|
||||||
*
|
|
||||||
* If no token is present, display the link request form.
|
|
||||||
*
|
|
||||||
* @param \Illuminate\Http\Request $request
|
|
||||||
*/
|
|
||||||
public function showResetForm(Request $request): Response
|
|
||||||
{
|
|
||||||
$token = $request->route()->parameter('token');
|
|
||||||
|
|
||||||
return Inertia::render('authentication/PasswordResetConfirm', [
|
|
||||||
'token' => $token,
|
|
||||||
'email' => $request->email,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -3,7 +3,7 @@
|
||||||
namespace App\Http\Middleware;
|
namespace App\Http\Middleware;
|
||||||
|
|
||||||
use App\Http\Resources\UserResource;
|
use App\Http\Resources\UserResource;
|
||||||
use App\Module\ModuleSettings;
|
use Modules\Module\ModuleSettings;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Facades\Session;
|
use Illuminate\Support\Facades\Session;
|
||||||
use Inertia\Middleware;
|
use Inertia\Middleware;
|
||||||
|
|
|
@ -6,6 +6,7 @@ use App\Invoice\Models\Invoice;
|
||||||
use App\Payment\Payment;
|
use App\Payment\Payment;
|
||||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
|
use Modules\Invoice\InvoiceSettings;
|
||||||
use Zoomyboy\Tex\Document;
|
use Zoomyboy\Tex\Document;
|
||||||
use Zoomyboy\Tex\Engine;
|
use Zoomyboy\Tex\Engine;
|
||||||
use Zoomyboy\Tex\Template;
|
use Zoomyboy\Tex\Template;
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Invoice;
|
|
||||||
|
|
||||||
use App\Dashboard\Blocks\Block;
|
|
||||||
use App\Invoice\Models\InvoicePosition;
|
|
||||||
use App\Member\Member;
|
|
||||||
|
|
||||||
class MemberPaymentBlock extends Block
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @return array<string, string|int>
|
|
||||||
*/
|
|
||||||
public function data(): array
|
|
||||||
{
|
|
||||||
$amount = InvoicePosition::whereHas('invoice', fn ($query) => $query->whereNeedsPayment())
|
|
||||||
->selectRaw('sum(price) AS price')
|
|
||||||
->first();
|
|
||||||
$members = Member::whereHasPendingPayment()->count();
|
|
||||||
|
|
||||||
return [
|
|
||||||
'members' => $members,
|
|
||||||
'total_members' => Member::count(),
|
|
||||||
'amount' => number_format((int) $amount->price / 100, 2, ',', '.') . ' €',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function component(): string
|
|
||||||
{
|
|
||||||
return 'member-payment';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function title(): string
|
|
||||||
{
|
|
||||||
return 'Ausstehende Mitgliedsbeiträge';
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -6,7 +6,6 @@ use App\Invoice\BillDocument;
|
||||||
use App\Invoice\BillKind;
|
use App\Invoice\BillKind;
|
||||||
use App\Invoice\Enums\InvoiceStatus;
|
use App\Invoice\Enums\InvoiceStatus;
|
||||||
use App\Invoice\InvoiceDocument;
|
use App\Invoice\InvoiceDocument;
|
||||||
use App\Invoice\InvoiceSettings;
|
|
||||||
use App\Invoice\RememberDocument;
|
use App\Invoice\RememberDocument;
|
||||||
use App\Invoice\Scopes\InvoiceFilterScope;
|
use App\Invoice\Scopes\InvoiceFilterScope;
|
||||||
use App\Member\Member;
|
use App\Member\Member;
|
||||||
|
@ -17,6 +16,7 @@ use Illuminate\Database\Eloquent\Collection;
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||||
|
use Modules\Invoice\InvoiceSettings;
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
class Invoice extends Model
|
class Invoice extends Model
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace App\Maildispatcher\Models;
|
namespace App\Maildispatcher\Models;
|
||||||
|
|
||||||
use App\Mailgateway\Models\Mailgateway;
|
use Modules\Mailgateway\Models\Mailgateway;
|
||||||
use Database\Factories\Maildispatcher\Models\MaildispatcherFactory;
|
use Database\Factories\Maildispatcher\Models\MaildispatcherFactory;
|
||||||
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
|
|
@ -4,8 +4,7 @@ namespace App\Maildispatcher\Resources;
|
||||||
|
|
||||||
use App\Lib\HasMeta;
|
use App\Lib\HasMeta;
|
||||||
use App\Maildispatcher\Models\Maildispatcher;
|
use App\Maildispatcher\Models\Maildispatcher;
|
||||||
use App\Mailgateway\Models\Mailgateway;
|
use Modules\Mailgateway\Models\Mailgateway;
|
||||||
use App\Mailgateway\Resources\MailgatewayResource;
|
|
||||||
use App\Member\FilterScope;
|
use App\Member\FilterScope;
|
||||||
use App\Member\Member;
|
use App\Member\Member;
|
||||||
use Illuminate\Http\Resources\Json\JsonResource;
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Mailgateway\Actions;
|
|
||||||
|
|
||||||
use App\Mailgateway\Models\Mailgateway;
|
|
||||||
use Lorisleiva\Actions\ActionRequest;
|
|
||||||
use Lorisleiva\Actions\Concerns\AsAction;
|
|
||||||
|
|
||||||
class StoreAction
|
|
||||||
{
|
|
||||||
use AsAction;
|
|
||||||
use ValidatesRequests;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array<string, mixed> $input
|
|
||||||
*/
|
|
||||||
public function handle(array $input): void
|
|
||||||
{
|
|
||||||
$this->checkIfWorks($input);
|
|
||||||
Mailgateway::create($input);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function asController(ActionRequest $request): void
|
|
||||||
{
|
|
||||||
$this->handle($request->validated());
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Mailgateway\Actions;
|
|
||||||
|
|
||||||
use App\Mailgateway\Models\Mailgateway;
|
|
||||||
use Lorisleiva\Actions\ActionRequest;
|
|
||||||
use Lorisleiva\Actions\Concerns\AsAction;
|
|
||||||
|
|
||||||
class UpdateAction
|
|
||||||
{
|
|
||||||
use AsAction;
|
|
||||||
use ValidatesRequests;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array<string, mixed> $input
|
|
||||||
*/
|
|
||||||
public function handle(Mailgateway $mailgateway, array $input): void
|
|
||||||
{
|
|
||||||
$this->checkIfWorks($input);
|
|
||||||
|
|
||||||
$mailgateway->update($input);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function asController(Mailgateway $mailgateway, ActionRequest $request): void
|
|
||||||
{
|
|
||||||
$this->handle($mailgateway, $request->validated());
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,65 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Mailgateway\Actions;
|
|
||||||
|
|
||||||
use App\Mailgateway\Types\Type;
|
|
||||||
use Illuminate\Validation\Rule;
|
|
||||||
use Illuminate\Validation\ValidationException;
|
|
||||||
use Lorisleiva\Actions\ActionRequest;
|
|
||||||
|
|
||||||
trait ValidatesRequests
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @param array<string, mixed> $input
|
|
||||||
*/
|
|
||||||
public function checkIfWorks(array $input): void
|
|
||||||
{
|
|
||||||
if (!app(data_get($input, 'type.cls'))->setParams($input['type']['params'])->works()) {
|
|
||||||
throw ValidationException::withMessages(['connection' => 'Verbindung fehlgeschlagen.']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array<string, mixed>
|
|
||||||
*/
|
|
||||||
public function rules(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'name' => 'required|string|max:255',
|
|
||||||
'domain' => 'required|string|max:255',
|
|
||||||
...$this->typeValidation(),
|
|
||||||
'type.params' => 'present|array',
|
|
||||||
...collect(request()->input('type.cls')::rules('storeValidator'))->mapWithKeys(fn ($rules, $key) => ["type.params.{$key}" => $rules]),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array<string, mixed>
|
|
||||||
*/
|
|
||||||
public function getValidationAttributes(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'type.cls' => 'Typ',
|
|
||||||
'name' => 'Beschreibung',
|
|
||||||
'domain' => 'Domain',
|
|
||||||
...collect(request()->input('type.cls')::fieldNames())->mapWithKeys(fn ($attribute, $key) => ["type.params.{$key}" => $attribute]),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array<string, mixed>
|
|
||||||
*/
|
|
||||||
private function typeValidation(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'type.cls' => ['required', 'string', 'max:255', Rule::in(app('mail-gateways'))],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function prepareForValidation(ActionRequest $request): void
|
|
||||||
{
|
|
||||||
if (!is_subclass_of(request()->input('type.cls'), Type::class)) {
|
|
||||||
throw ValidationException::withMessages(['type.cls' => 'Typ ist nicht valide.']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,42 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Mailgateway\Casts;
|
|
||||||
|
|
||||||
use App\Mailgateway\Types\Type;
|
|
||||||
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @implements CastsAttributes<Type, Type>
|
|
||||||
*/
|
|
||||||
class TypeCast implements CastsAttributes
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Cast the given value.
|
|
||||||
*
|
|
||||||
* @param \Illuminate\Database\Eloquent\Model $model
|
|
||||||
* @param mixed $value
|
|
||||||
* @param array<string, mixed> $attributes
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function get($model, string $key, $value, array $attributes)
|
|
||||||
{
|
|
||||||
$value = json_decode($value, true);
|
|
||||||
|
|
||||||
return app($value['cls'])->setParams($value['params']);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prepare the given value for storage.
|
|
||||||
*
|
|
||||||
* @param \Illuminate\Database\Eloquent\Model $model
|
|
||||||
* @param mixed $value
|
|
||||||
* @param array<string, mixed> $attributes
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function set($model, string $key, $value, array $attributes)
|
|
||||||
{
|
|
||||||
return json_encode($value);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,68 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Mailgateway\Resources;
|
|
||||||
|
|
||||||
use App\Lib\HasMeta;
|
|
||||||
use App\Mailgateway\Models\Mailgateway;
|
|
||||||
use Illuminate\Http\Resources\Json\JsonResource;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @mixin Mailgateway
|
|
||||||
*/
|
|
||||||
class MailgatewayResource extends JsonResource
|
|
||||||
{
|
|
||||||
use HasMeta;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Transform the resource into an array.
|
|
||||||
*
|
|
||||||
* @param \Illuminate\Http\Request $request
|
|
||||||
*
|
|
||||||
* @return array<string, mixed>
|
|
||||||
*/
|
|
||||||
public function toArray($request)
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'name' => $this->name,
|
|
||||||
'domain' => $this->domain,
|
|
||||||
'type_human' => $this->type::name(),
|
|
||||||
'works' => $this->type->works(),
|
|
||||||
'type' => $this->type->toResource(),
|
|
||||||
'id' => $this->id,
|
|
||||||
'links' => [
|
|
||||||
'update' => route('mailgateway.update', ['mailgateway' => $this->getModel()]),
|
|
||||||
],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array<string, mixed>
|
|
||||||
*/
|
|
||||||
public static function meta(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'links' => [
|
|
||||||
'store' => route('mailgateway.store'),
|
|
||||||
],
|
|
||||||
'types' => app('mail-gateways')->map(fn ($gateway) => [
|
|
||||||
'id' => $gateway,
|
|
||||||
'name' => $gateway::name(),
|
|
||||||
'fields' => $gateway::presentFields('storeValidator'),
|
|
||||||
'defaults' => (object) $gateway::defaults(),
|
|
||||||
])->prepend([
|
|
||||||
'id' => null,
|
|
||||||
'name' => '-- kein --',
|
|
||||||
'fields' => [],
|
|
||||||
'defaults' => (object) [],
|
|
||||||
]),
|
|
||||||
'default' => [
|
|
||||||
'domain' => '',
|
|
||||||
'name' => '',
|
|
||||||
'type' => [
|
|
||||||
'params' => [],
|
|
||||||
'cls' => null,
|
|
||||||
],
|
|
||||||
],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -85,7 +85,7 @@ class MailmanService
|
||||||
return app(Paginator::class)->result(
|
return app(Paginator::class)->result(
|
||||||
fn ($page) => $this->http()->get("/lists/{$list->listId}/roster/member?page={$page}&count=10"),
|
fn ($page) => $this->http()->get("/lists/{$list->listId}/roster/member?page={$page}&count=10"),
|
||||||
function ($response) use ($list) {
|
function ($response) use ($list) {
|
||||||
throw_unless($response->ok(), MailmanServiceException::class, 'Fetching members for listId '.$list->listId.' failed.');
|
throw_unless($response->ok(), MailmanServiceException::class, 'Fetching members for listId ' . $list->listId . ' failed.');
|
||||||
/** @var array<int, array{email: string, self_link: string}>|null */
|
/** @var array<int, array{email: string, self_link: string}>|null */
|
||||||
$entries = data_get($response->json(), 'entries', []);
|
$entries = data_get($response->json(), 'entries', []);
|
||||||
throw_if(is_null($entries), MailmanServiceException::class, 'Failed getting member list from response');
|
throw_if(is_null($entries), MailmanServiceException::class, 'Failed getting member list from response');
|
||||||
|
@ -112,7 +112,7 @@ class MailmanService
|
||||||
'pre_confirmed' => 'true',
|
'pre_confirmed' => 'true',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
throw_unless(201 === $response->status(), MailmanServiceException::class, 'Adding member '.$email.' to '.$list->listId.' failed');
|
throw_unless(201 === $response->status(), MailmanServiceException::class, 'Adding member ' . $email . ' to ' . $list->listId . ' failed');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function removeMember(Member $member): void
|
public function removeMember(Member $member): void
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Membership;
|
|
||||||
|
|
||||||
use App\Dashboard\Blocks\Block;
|
|
||||||
use App\Member\Member;
|
|
||||||
use Illuminate\Database\Eloquent\Builder;
|
|
||||||
|
|
||||||
class TestersBlock extends Block
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @return Builder<Member>
|
|
||||||
*/
|
|
||||||
public function query(): Builder
|
|
||||||
{
|
|
||||||
return Member::whereHas('memberships', fn ($q) => $q->isTrying())
|
|
||||||
->with('memberships', fn ($q) => $q->isTrying());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array{members: array<int, array{name: string, try_ends_at: string, try_ends_at_human: string}>}
|
|
||||||
*/
|
|
||||||
public function data(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'members' => $this->query()->get()->map(fn ($member) => [
|
|
||||||
'name' => $member->fullname,
|
|
||||||
'try_ends_at' => $member->memberships->first()->from->addWeeks(8)->format('d.m.Y'),
|
|
||||||
'try_ends_at_human' => $member->memberships->first()->from->addWeeks(8)->diffForHumans(),
|
|
||||||
])->toArray(),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function component(): string
|
|
||||||
{
|
|
||||||
return 'testers';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function title(): string
|
|
||||||
{
|
|
||||||
return 'Endende Schhnupperzeiten';
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
namespace App\Prevention\Mails;
|
namespace App\Prevention\Mails;
|
||||||
|
|
||||||
use App\Invoice\InvoiceSettings;
|
|
||||||
use App\Lib\Editor\EditorData;
|
use App\Lib\Editor\EditorData;
|
||||||
use App\Prevention\Contracts\Preventable;
|
use App\Prevention\Contracts\Preventable;
|
||||||
use Illuminate\Bus\Queueable;
|
use Illuminate\Bus\Queueable;
|
||||||
|
@ -11,6 +10,7 @@ use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Mail\Mailables\Content;
|
use Illuminate\Mail\Mailables\Content;
|
||||||
use Illuminate\Mail\Mailables\Envelope;
|
use Illuminate\Mail\Mailables\Envelope;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
use Modules\Invoice\InvoiceSettings;
|
||||||
|
|
||||||
class PreventionRememberMail extends Mailable
|
class PreventionRememberMail extends Mailable
|
||||||
{
|
{
|
||||||
|
|
|
@ -3,13 +3,10 @@
|
||||||
namespace App\Providers;
|
namespace App\Providers;
|
||||||
|
|
||||||
use App\Form\Models\Form;
|
use App\Form\Models\Form;
|
||||||
use App\Mailgateway\Types\LocalType;
|
|
||||||
use App\Mailgateway\Types\MailmanType;
|
|
||||||
use Illuminate\Http\RedirectResponse;
|
use Illuminate\Http\RedirectResponse;
|
||||||
use Illuminate\Http\Resources\Json\JsonResource;
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||||||
use Illuminate\Support\Facades\Blade;
|
use Illuminate\Support\Facades\Blade;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
use Laravel\Telescope\Telescope;
|
|
||||||
|
|
||||||
class AppServiceProvider extends ServiceProvider
|
class AppServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
|
@ -30,11 +27,6 @@ class AppServiceProvider extends ServiceProvider
|
||||||
return $this;
|
return $this;
|
||||||
});
|
});
|
||||||
|
|
||||||
app()->bind('mail-gateways', fn () => collect([
|
|
||||||
LocalType::class,
|
|
||||||
MailmanType::class,
|
|
||||||
]));
|
|
||||||
|
|
||||||
app()->extend('media-library-helpers', fn ($p) => $p->put('form', Form::class));
|
app()->extend('media-library-helpers', fn ($p) => $p->put('form', Form::class));
|
||||||
|
|
||||||
Blade::componentNamespace('App\\View\\Mail', 'mail-view');
|
Blade::componentNamespace('App\\View\\Mail', 'mail-view');
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Providers;
|
||||||
|
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Illuminate\Support\Facades\Blade;
|
||||||
|
use Illuminate\View\ComponentAttributeBag;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
|
||||||
|
class BaseServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Register services.
|
||||||
|
*/
|
||||||
|
public function register(): void
|
||||||
|
{
|
||||||
|
Blade::componentNamespace('App\\View\\Ui', 'ui');
|
||||||
|
Blade::componentNamespace('App\\View\\Page', 'page');
|
||||||
|
Blade::componentNamespace('App\\View\\Form', 'form');
|
||||||
|
|
||||||
|
ComponentAttributeBag::macro('mergeWhen', function ($condition, $key, $attributes) {
|
||||||
|
/** @var ComponentAttributeBag */
|
||||||
|
$self = $this;
|
||||||
|
return $condition ? $self->merge([$key => $attributes]) : $self;
|
||||||
|
});
|
||||||
|
|
||||||
|
Livewire::resolveMissingComponent(function ($name) {
|
||||||
|
'modules.dashboard.components.dashboard-component';
|
||||||
|
if (str($name)->startsWith('modules.')) {
|
||||||
|
return str($name)->explode('.')->map(fn ($name) => str($name)->studly()->toString())->implode('\\');
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstrap services.
|
||||||
|
*/
|
||||||
|
public function boot(): void
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -7,6 +7,7 @@ use Illuminate\Http\RedirectResponse;
|
||||||
use Lorisleiva\Actions\ActionRequest;
|
use Lorisleiva\Actions\ActionRequest;
|
||||||
use Lorisleiva\Actions\Concerns\AsAction;
|
use Lorisleiva\Actions\Concerns\AsAction;
|
||||||
|
|
||||||
|
/** @deprecated */
|
||||||
class StoreAction
|
class StoreAction
|
||||||
{
|
{
|
||||||
use AsAction;
|
use AsAction;
|
||||||
|
|
|
@ -8,6 +8,7 @@ use Inertia\Inertia;
|
||||||
use Inertia\Response;
|
use Inertia\Response;
|
||||||
use Lorisleiva\Actions\Concerns\AsAction;
|
use Lorisleiva\Actions\Concerns\AsAction;
|
||||||
|
|
||||||
|
/** @deprecated */
|
||||||
class ViewAction
|
class ViewAction
|
||||||
{
|
{
|
||||||
use AsAction;
|
use AsAction;
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Setting\Data;
|
||||||
|
|
||||||
|
use Livewire\Mechanisms\HandleComponents\Synthesizers\Synth;
|
||||||
|
use Spatie\LaravelSettings\Settings;
|
||||||
|
|
||||||
|
class SettingSynthesizer extends Synth
|
||||||
|
{
|
||||||
|
public static $key = 'setting-class';
|
||||||
|
|
||||||
|
public static function match($target)
|
||||||
|
{
|
||||||
|
return $target instanceof Settings;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function dehydrate($target)
|
||||||
|
{
|
||||||
|
return [$target->toArray(), ['setting_class' => get_class($target)]];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function hydrate($value, $meta)
|
||||||
|
{
|
||||||
|
return app($meta['setting_class'])->fill($value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function get(&$target, $key)
|
||||||
|
{
|
||||||
|
return $target->{$key};
|
||||||
|
}
|
||||||
|
|
||||||
|
public function set(&$target, $key, $value)
|
||||||
|
{
|
||||||
|
$target->{$key} = $value;
|
||||||
|
}
|
||||||
|
}
|
|
@ -10,7 +10,7 @@ abstract class LocalSettings extends Settings
|
||||||
|
|
||||||
public function url(): string
|
public function url(): string
|
||||||
{
|
{
|
||||||
return route('setting.view', ['settingGroup' => $this->group()]);
|
return url('setting/' . $this->group());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -3,14 +3,10 @@
|
||||||
namespace App\Setting;
|
namespace App\Setting;
|
||||||
|
|
||||||
use App\Group;
|
use App\Group;
|
||||||
use App\Initialize\Actions\NamiLoginCheckAction;
|
|
||||||
use App\Nami\Actions\SettingSaveAction;
|
|
||||||
use App\Setting\Contracts\Storeable;
|
|
||||||
use Lorisleiva\Actions\ActionRequest;
|
|
||||||
use Zoomyboy\LaravelNami\Api;
|
use Zoomyboy\LaravelNami\Api;
|
||||||
use Zoomyboy\LaravelNami\Nami;
|
use Zoomyboy\LaravelNami\Nami;
|
||||||
|
|
||||||
class NamiSettings extends LocalSettings implements Storeable
|
class NamiSettings extends LocalSettings
|
||||||
{
|
{
|
||||||
public int $mglnr;
|
public int $mglnr;
|
||||||
|
|
||||||
|
@ -43,14 +39,6 @@ class NamiSettings extends LocalSettings implements Storeable
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
public function beforeSave(ActionRequest $request): void
|
|
||||||
{
|
|
||||||
NamiLoginCheckAction::run([
|
|
||||||
'mglnr' => $request->mglnr,
|
|
||||||
'password' => $request->password,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function localGroup(): ?Group
|
public function localGroup(): ?Group
|
||||||
{
|
{
|
||||||
return Group::firstWhere('nami_id', $this->default_group_id);
|
return Group::firstWhere('nami_id', $this->default_group_id);
|
||||||
|
|
|
@ -2,9 +2,8 @@
|
||||||
|
|
||||||
namespace App\Setting;
|
namespace App\Setting;
|
||||||
|
|
||||||
use App\Invoice\InvoiceSettings;
|
|
||||||
use App\Setting\Contracts\Storeable;
|
|
||||||
use Illuminate\Routing\Router;
|
use Illuminate\Routing\Router;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
|
||||||
class SettingFactory
|
class SettingFactory
|
||||||
{
|
{
|
||||||
|
@ -26,16 +25,11 @@ class SettingFactory
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array<int, array{url: string, is_active: bool}>
|
* @return Collection<int, LocalSettings>
|
||||||
*/
|
*/
|
||||||
public function getShare(): array
|
public function all(): Collection
|
||||||
{
|
{
|
||||||
return collect($this->settings)->map(fn ($setting) => [
|
return collect($this->settings)->map(fn ($setting) => new $setting);
|
||||||
'url' => (new $setting)->url(),
|
|
||||||
'is_active' => url(request()->path()) === (new $setting)->url(),
|
|
||||||
'title' => $setting::title(),
|
|
||||||
])
|
|
||||||
->toArray();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function resolveGroupName(string $name): LocalSettings
|
public function resolveGroupName(string $name): LocalSettings
|
||||||
|
|
|
@ -4,14 +4,13 @@ namespace App\Setting;
|
||||||
|
|
||||||
use App\Fileshare\FileshareSettings;
|
use App\Fileshare\FileshareSettings;
|
||||||
use App\Form\FormSettings;
|
use App\Form\FormSettings;
|
||||||
use App\Invoice\InvoiceSettings;
|
use Modules\Module\ModuleSettings;
|
||||||
use App\Mailgateway\MailgatewaySettings;
|
|
||||||
use App\Module\ModuleSettings;
|
|
||||||
use App\Prevention\PreventionSettings;
|
use App\Prevention\PreventionSettings;
|
||||||
use App\Setting\Actions\StoreAction;
|
use App\Setting\Data\SettingSynthesizer;
|
||||||
use App\Setting\Actions\ViewAction;
|
|
||||||
use Illuminate\Routing\Router;
|
use Illuminate\Routing\Router;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
use Modules\Invoice\InvoiceSettings;
|
||||||
|
|
||||||
class SettingServiceProvider extends ServiceProvider
|
class SettingServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
|
@ -24,9 +23,6 @@ class SettingServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
app()->singleton(SettingFactory::class, fn () => new SettingFactory());
|
app()->singleton(SettingFactory::class, fn () => new SettingFactory());
|
||||||
app(Router::class)->bind('settingGroup', fn ($param) => app(SettingFactory::class)->resolveGroupName($param));
|
app(Router::class)->bind('settingGroup', fn ($param) => app(SettingFactory::class)->resolveGroupName($param));
|
||||||
app(Router::class)->middleware(['web', 'auth:web'])->name('setting.view')->get('/setting/{settingGroup}', ViewAction::class);
|
|
||||||
app(Router::class)->middleware(['web', 'auth:web'])->name('setting.data')->get('/setting/{settingGroup}/data', ViewAction::class);
|
|
||||||
app(Router::class)->middleware(['web', 'auth:web'])->name('setting.store')->post('/setting/{settingGroup}', StoreAction::class);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -38,10 +34,11 @@ class SettingServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
app(SettingFactory::class)->register(ModuleSettings::class);
|
app(SettingFactory::class)->register(ModuleSettings::class);
|
||||||
app(SettingFactory::class)->register(InvoiceSettings::class);
|
app(SettingFactory::class)->register(InvoiceSettings::class);
|
||||||
app(SettingFactory::class)->register(MailgatewaySettings::class);
|
|
||||||
app(SettingFactory::class)->register(NamiSettings::class);
|
app(SettingFactory::class)->register(NamiSettings::class);
|
||||||
app(SettingFactory::class)->register(FormSettings::class);
|
app(SettingFactory::class)->register(FormSettings::class);
|
||||||
app(SettingFactory::class)->register(FileshareSettings::class);
|
app(SettingFactory::class)->register(FileshareSettings::class);
|
||||||
app(SettingFactory::class)->register(PreventionSettings::class);
|
app(SettingFactory::class)->register(PreventionSettings::class);
|
||||||
|
|
||||||
|
Livewire::propertySynthesizer(SettingSynthesizer::class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
namespace App;
|
namespace App;
|
||||||
|
|
||||||
use App\Auth\ResetPassword;
|
|
||||||
use Database\Factories\UserFactory;
|
use Database\Factories\UserFactory;
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||||
use Illuminate\Notifications\Notifiable;
|
use Illuminate\Notifications\Notifiable;
|
||||||
|
use Modules\Auth\Mails\ResetPassword;
|
||||||
|
|
||||||
class User extends Authenticatable
|
class User extends Authenticatable
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,77 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Enums;
|
||||||
|
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
use InvalidArgumentException;
|
||||||
|
|
||||||
|
enum Variant: string
|
||||||
|
{
|
||||||
|
|
||||||
|
case PRIMARY = 'primary';
|
||||||
|
case SECONDARY = 'secondary';
|
||||||
|
case PRIMARYLIGHT = 'primary-light';
|
||||||
|
case WARNING = 'warning';
|
||||||
|
case INFO = 'info';
|
||||||
|
case DANGER = 'danger';
|
||||||
|
|
||||||
|
public function foreground(): string
|
||||||
|
{
|
||||||
|
return match ($this) {
|
||||||
|
self::PRIMARY => 'text-primary-300',
|
||||||
|
self::SECONDARY => 'text-primary-400',
|
||||||
|
self::PRIMARYLIGHT => 'text-primary-200',
|
||||||
|
self::WARNING => 'text-yellow-300',
|
||||||
|
self::INFO => 'text-blue-300',
|
||||||
|
self::DANGER => 'text-red-100',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public function background(): string
|
||||||
|
{
|
||||||
|
return match ($this) {
|
||||||
|
self::PRIMARY => 'bg-primary-700',
|
||||||
|
self::SECONDARY => 'bg-primary-800',
|
||||||
|
self::PRIMARYLIGHT => 'bg-primary-600',
|
||||||
|
self::WARNING => 'bg-yellow-700',
|
||||||
|
self::INFO => 'bg-blue-700',
|
||||||
|
self::DANGER => 'bg-red-400',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public function hoverForeground(): string
|
||||||
|
{
|
||||||
|
return match ($this) {
|
||||||
|
self::PRIMARY => 'hover:text-primary-100',
|
||||||
|
self::SECONDARY => 'hover:text-primary-200',
|
||||||
|
self::PRIMARYLIGHT => 'hover:text-primary-100',
|
||||||
|
self::WARNING => 'hover:text-yellow-100',
|
||||||
|
self::INFO => 'hover:text-blue-100',
|
||||||
|
self::DANGER => 'hover:text-red-100',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public function hoverBackground(): string
|
||||||
|
{
|
||||||
|
return match ($this) {
|
||||||
|
self::PRIMARY => 'hover:bg-primary-500',
|
||||||
|
self::SECONDARY => 'hover:bg-primary-600',
|
||||||
|
self::PRIMARYLIGHT => 'hover:bg-primary-500',
|
||||||
|
self::WARNING => 'hover:bg-yellow-500',
|
||||||
|
self::INFO => 'hover:bg-blue-500',
|
||||||
|
self::DANGER => 'hover:bg-red-500',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function fromString(string $input): self
|
||||||
|
{
|
||||||
|
return collect(static::cases())
|
||||||
|
->first(fn ($variant) => $variant->value === $input)
|
||||||
|
?: throw new InvalidArgumentException("Unknown variant: {$input} - Available Variants: " . self::values()->implode(', '));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function values(): Collection
|
||||||
|
{
|
||||||
|
return collect(static::cases())->map(fn ($variant) => $variant->value);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Form;
|
||||||
|
|
||||||
|
use App\View\Traits\HasFormDimensions;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Hint extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use HasFormDimensions;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public bool $required = false,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div {{ $attributes->merge(['class' => 'h-full items-center flex absolute top-0 right-0']) }}>
|
||||||
|
<div x-tooltip.raw="{{$slot}}" class="mr-2">
|
||||||
|
<x-ui::sprite src="info-button" class="w-5 h-5 text-primary-700"></x-ui::sprite>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Form;
|
||||||
|
|
||||||
|
use App\View\Traits\HasFormDimensions;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Label extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use HasFormDimensions;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public bool $required = false,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<span class="font-semibold leading-none text-gray-400 group-[.size-default]:text-sm group-[.size-sm]:text-xs">
|
||||||
|
{{ $slot }}
|
||||||
|
@if ($required)
|
||||||
|
<span class="text-red-800"> *</span>
|
||||||
|
@endif
|
||||||
|
</span>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,60 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Form;
|
||||||
|
|
||||||
|
use App\View\Traits\HasFormDimensions;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Lever extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use HasFormDimensions;
|
||||||
|
|
||||||
|
public string $id;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $name,
|
||||||
|
public string $size = 'default',
|
||||||
|
public $value = null,
|
||||||
|
public ?string $hint = null,
|
||||||
|
public bool $disabled = false,
|
||||||
|
public bool $required = false,
|
||||||
|
public string $label = '',
|
||||||
|
) {
|
||||||
|
$this->id = str()->uuid()->toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<label class="flex flex-col items-start group {{$heightClass}} " for="{{$id}}" style="{{$heightVars}}">
|
||||||
|
@if ($label)
|
||||||
|
<x-form::label :required="$required">{{$label}}</x-form::label>
|
||||||
|
@endif
|
||||||
|
<span class="relative flex-none flex h-[var(--height)] @if($hint) pr-8 @endif">
|
||||||
|
<input id="{{$id}}" type="checkbox" name="{{$name}}" value="{{$value}}" @if($disabled) disabled="disabled" @endif class="absolute peer opacity-0" {{ $attributes }} />
|
||||||
|
<span class="relative cursor-pointer h-full w-[calc(var(--height)*2)] rounded peer-focus:bg-red-500 duration-300 bg-gray-700 peer-checked:bg-primary-700"></span>
|
||||||
|
<span class="absolute h-full top-0 left-0 flex-none flex justify-center items-center aspect-square">
|
||||||
|
<x-ui::sprite
|
||||||
|
class="relative text-gray-400 flex-none text-white duration-300 group-[.size-default]:size-3 group-[.size-sm]:size-2"
|
||||||
|
src="check"
|
||||||
|
></x-ui::sprite>
|
||||||
|
</span>
|
||||||
|
<span class="absolute h-full top-0 left-[var(--height)] flex-none flex justify-center items-center aspect-square">
|
||||||
|
<x-ui::sprite
|
||||||
|
class="relative text-gray-400 flex-none text-white duration-300 group-[.size-default]:size-3 group-[.size-sm]:size-2"
|
||||||
|
src="close"
|
||||||
|
></x-ui::sprite>
|
||||||
|
</span>
|
||||||
|
<var class="absolute duration-300 bg-gray-400 rounded
|
||||||
|
top-[var(--padding)] left-[var(--padding)]
|
||||||
|
size-[calc(var(--height)-var(--padding)*2)] peer-checked:left-[calc(var(--height)+var(--padding))]"
|
||||||
|
></var>
|
||||||
|
@if($hint)
|
||||||
|
<x-form::hint>{{$hint}}</x-form::hint>
|
||||||
|
@endif
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Form;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class SaveButton extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(public string $form = '')
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<button @if($form) form="{{$form}}" @endif type="submit" class="flex items-center transition-all justify-center w-8 h-8 bg-primary-700 hover:bg-primary-600 rounded" x-tooltip="`speichern`">
|
||||||
|
<x-ui::sprite class="w-4 h-4 text-white" src="save"></x-ui::sprite>
|
||||||
|
</button>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,59 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Form;
|
||||||
|
|
||||||
|
use App\View\Traits\HasFormDimensions;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Select extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use HasFormDimensions;
|
||||||
|
|
||||||
|
public string $id;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $name,
|
||||||
|
public string $size = 'default',
|
||||||
|
public ?string $hint = null,
|
||||||
|
public bool $required = false,
|
||||||
|
public string $label = '',
|
||||||
|
public $options = [],
|
||||||
|
public bool $disabled = false,
|
||||||
|
) {
|
||||||
|
$this->id = str()->uuid()->toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<label class="flex flex-col group {{$heightClass}}" for="{{$id}}" style="{{$heightVars}}">
|
||||||
|
@if ($label)
|
||||||
|
<x-form::label :required="$required">{{$label}}</x-form::label>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<div class="relative flex-none flex">
|
||||||
|
<select {{$attributes}} @if($disabled) disabled @endif name="{{$name}}" id="{{$id}}"
|
||||||
|
class="
|
||||||
|
w-full h-[var(--height)] border-gray-600 border-solid text-gray-300 bg-gray-700 leading-none rounded-lg
|
||||||
|
group-[.size-default]:border-2 group-[.size-sm]:border
|
||||||
|
group-[.size-default]:text-sm group-[.size-sm]:text-xs
|
||||||
|
group-[.size-default]:px-2 group-[.size-sm]:px-1
|
||||||
|
py-0
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<option value="">-- kein --</option>
|
||||||
|
@foreach ($options as $option)
|
||||||
|
<option value="{{$option['id']}}">{{ $option['name'] }}</option>
|
||||||
|
@endforeach
|
||||||
|
</select>
|
||||||
|
<x-ui::errors :for="$name" />
|
||||||
|
@if($hint)
|
||||||
|
<x-form::hint class="right-6">{{$hint}}</x-form::hint>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</label>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,55 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Form;
|
||||||
|
|
||||||
|
use App\View\Traits\HasFormDimensions;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Text extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use HasFormDimensions;
|
||||||
|
|
||||||
|
public string $id;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $name,
|
||||||
|
public string $size = 'default',
|
||||||
|
public ?string $hint = null,
|
||||||
|
public bool $required = false,
|
||||||
|
public string $label = '',
|
||||||
|
public string $type = 'text'
|
||||||
|
) {
|
||||||
|
$this->id = str()->uuid()->toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<label class="flex flex-col group {{$heightClass}}" for="{{$id}}" style="{{$heightVars}}">
|
||||||
|
@if ($label)
|
||||||
|
<x-form::label :required="$required">{{$label}}</x-form::label>
|
||||||
|
@endif
|
||||||
|
<div class="relative flex-none flex">
|
||||||
|
<input
|
||||||
|
id="{{$id}}"
|
||||||
|
type="{{$type}}"
|
||||||
|
@if ($type === 'password') autocomplete="off" @endif
|
||||||
|
placeholder=""
|
||||||
|
class="
|
||||||
|
w-full h-[var(--height)] border-gray-600 border-solid text-gray-300 bg-gray-700 leading-none rounded-lg
|
||||||
|
group-[.size-default]:border-2 group-[.size-sm]:border
|
||||||
|
group-[.size-default]:text-sm group-[.size-sm]:text-xs
|
||||||
|
group-[.size-default]:p-2 group-[.size-sm]:p-1
|
||||||
|
"
|
||||||
|
{{ $attributes }}
|
||||||
|
/>
|
||||||
|
<x-ui::errors :for="$name" />
|
||||||
|
@if($hint)
|
||||||
|
<x-form::hint>{{$hint}}</x-form::hint>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
</label>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Page;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Full extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(public string $title = '', public ?string $heading = null)
|
||||||
|
{
|
||||||
|
session()->put('title', $title);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div class="min-w-[16rem] sm:min-w-[18rem] md:min-w-[24rem] bg-gray-800 rounded-xl overflow-hidden shadow-lg @if($heading === null) p-6 md:p-10 @endif">
|
||||||
|
@if ($heading)
|
||||||
|
<div class="h-24 p-6 md:px-10 bg-primary-800 flex justify-between items-center w-full">
|
||||||
|
<span class="text-primary-500 text-xl">{{$heading}}</span>
|
||||||
|
<img src="{{asset('img/dpsg.gif')}}" class="w-24" />
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<div @if($heading !== null) class="p-6 md:p-10" @endif>
|
||||||
|
{{ $slot }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Page;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Header extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(public string $title)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div class="h-16 px-6 flex items-center justify-between border-b border-solid border-gray-600 group-[.is-bright]:border-gray-500">
|
||||||
|
<div class="flex items-center space-x-4">
|
||||||
|
{{ $beforeTitle ?? ''}}
|
||||||
|
<span class="text-sm md:text-xl font-semibold leading-none text-white">{{ $title }}</span>
|
||||||
|
{{ $toolbar ?? '' }}
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center space-x-4 ml-2">
|
||||||
|
{{ $right ?? '' }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,59 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Page;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Layout extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(public string $pageClass = '', public string $title = '', public string $menu = '')
|
||||||
|
{
|
||||||
|
session()->put('title', $title);
|
||||||
|
session()->put('menu', $menu);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function userName(): string
|
||||||
|
{
|
||||||
|
return auth()->user()->firstname . ' ' . auth()->user()->lastname;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function userAvatar(): string
|
||||||
|
{
|
||||||
|
return auth()->user()->getGravatarUrl();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div class="grow flex flex-col" @refresh-page.window="$wire.$refresh">
|
||||||
|
<div class="grow bg-gray-900 flex flex-col duration-300 navbar:ml-60">
|
||||||
|
<x-page::header :title="$title">
|
||||||
|
<x-slot:beforeTitle>
|
||||||
|
<a href="#" class="lg:hidden" wire:click.prevent="dispatch('toggle-sidebar')">
|
||||||
|
<x-ui::sprite src="menu" class="text-gray-100 w-5 h-5"></x-ui::sprite>
|
||||||
|
</a>
|
||||||
|
</x-slot:beforeTitle>
|
||||||
|
<x-slot:toolbar>
|
||||||
|
{{ $toolbar ?? ''}}
|
||||||
|
</x-slot:toolbar>
|
||||||
|
<x-slot:right>
|
||||||
|
{{ $right ?? '' }}
|
||||||
|
<div class="flex items-center space-x-2">
|
||||||
|
<div class="rounded-full overflow-hidden border-2 border-solid border-gray-300">
|
||||||
|
<img src="{{ $userAvatar() }}" class="w-8 h-8 object-cover" />
|
||||||
|
</div>
|
||||||
|
<div class="text-gray-300"">{{ $userName() }}</div>
|
||||||
|
</div>
|
||||||
|
</x-slot:right>
|
||||||
|
</x-page::header>
|
||||||
|
|
||||||
|
<div class="grow flex flex-col {{$pageClass}}">
|
||||||
|
{{ $slot }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<livewire:page.sidebar :mobile="true" />
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Page;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class MenuEntry extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $href,
|
||||||
|
public string $menu,
|
||||||
|
public string $icon,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<a class="flex text-white py-2 px-3 rounded-lg hover:bg-gray-600 {{ $menu === session('menu') ? 'bg-gray-700' : '' }}" href="{{$href}}">
|
||||||
|
<x-ui::sprite class="text-white w-6 h-6 mr-4" src="{{$icon}}"></x-ui::sprite>
|
||||||
|
<span class="font-semibold">
|
||||||
|
{{ $slot }}
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,101 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Page;
|
||||||
|
|
||||||
|
use Livewire\Attributes\On;
|
||||||
|
use Livewire\Component;
|
||||||
|
|
||||||
|
class Modal extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public ?string $component = null;
|
||||||
|
public array $props = [];
|
||||||
|
public string $key = '';
|
||||||
|
public array $actions = [];
|
||||||
|
public ?string $size = null;
|
||||||
|
public string $title = '';
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
#[On('openModal')]
|
||||||
|
public function onOpenModal(string $component, string $title, array $props = [], array $actions = ['storeable', 'closeable'], string $size = "xl"): void
|
||||||
|
{
|
||||||
|
$this->component = $component;
|
||||||
|
$this->props = $props;
|
||||||
|
$this->size = $size;
|
||||||
|
$this->title = $title;
|
||||||
|
$this->key = md5(json_encode(['component' => $component, 'props' => $props]));
|
||||||
|
$this->actions = $this->parseActions($actions);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function parseActions(array $actions): array
|
||||||
|
{
|
||||||
|
return collect($actions)->map(function ($action) {
|
||||||
|
if ($action === 'closeable') {
|
||||||
|
return ['event' => 'closeModal', 'icon' => 'close', 'label' => 'Schließen'];
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($action === 'storeable') {
|
||||||
|
return ['event' => 'onStoreFromModal', 'icon' => 'save', 'label' => 'Speichern'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $action;
|
||||||
|
})->toArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[On('closeModal')]
|
||||||
|
public function onCloseModal(): void
|
||||||
|
{
|
||||||
|
$this->reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function sizeClass(): string
|
||||||
|
{
|
||||||
|
if ($this->size === 'lg') {
|
||||||
|
return 'max-w-lg';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->size === 'xl') {
|
||||||
|
return 'max-w-xl';
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div>
|
||||||
|
@if($component)
|
||||||
|
<div class="fixed z-40 top-0 left-0 w-full h-full flex items-center justify-center p-6 bg-black/60 backdrop-blur-sm" @click.self="$dispatch('closeModal')">
|
||||||
|
<div
|
||||||
|
class="relative rounded-lg p-8 bg-zinc-800 shadow-2xl shadow-black border border-zinc-700 border-solid w-full max-h-full flex flex-col overflow-auto {{$this->sizeClass()}}"
|
||||||
|
>
|
||||||
|
<div class="flex">
|
||||||
|
<h3 class="font-semibold text-primary-200 text-xl grow">{{$title}}</h3>
|
||||||
|
<div class="flex space-x-6">
|
||||||
|
@foreach ($this->actions as $action)
|
||||||
|
<a x-tooltip.raw="{{$action['label']}}" href="#" @click.prevent="$dispatch('{{$action['event']}}')">
|
||||||
|
<x-ui::sprite :src="$action['icon']" class="text-zinc-400 w-6 h-6"></x-ui::sprite>
|
||||||
|
</a>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="text-primary-100 group is-popup grow flex flex-col mt-3">
|
||||||
|
<div>
|
||||||
|
@if ($component)
|
||||||
|
@livewire($component, $props, key($key))
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@else
|
||||||
|
<div></div>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Page;
|
||||||
|
|
||||||
|
use App\Setting\SettingFactory;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class SettingLayout extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public array $entries;
|
||||||
|
|
||||||
|
public function __construct(public string $active)
|
||||||
|
{
|
||||||
|
$this->entries = app(SettingFactory::class)->all()
|
||||||
|
->map(fn ($setting) => [
|
||||||
|
'url' => $setting->url(),
|
||||||
|
'is_active' => get_class($setting) === $active,
|
||||||
|
'title' => $setting->title(),
|
||||||
|
])->toArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<x-page::layout :title="$active::title()" menu="setting">
|
||||||
|
<x-slot:right>
|
||||||
|
{{ $right ?? '' }}
|
||||||
|
</x-slot:right>
|
||||||
|
<x-slot:toolbar>
|
||||||
|
{{ $toolbar ?? '' }}
|
||||||
|
</x-slot:toolbar>
|
||||||
|
<div class="flex grow relative">
|
||||||
|
<x-ui::menulist :entries="$entries"></x-ui::menulist>
|
||||||
|
<div class="grow">
|
||||||
|
{{ $slot }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</x-page::layout>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,51 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Page;
|
||||||
|
|
||||||
|
use Livewire\Component;
|
||||||
|
|
||||||
|
class Sidebar extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public $mobile = false;
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div
|
||||||
|
class="fixed z-40 bg-gray-800 p-6 w-60 top-0 h-screen border-r border-gray-600 border-solid flex flex-col justify-between duration-300
|
||||||
|
@if (!$mobile) left-[-16rem] navbar:left-0 @endif"
|
||||||
|
@if($mobile)
|
||||||
|
x-data="{ visible: false }"
|
||||||
|
x-on:toggle-sidebar.window="visible = true"
|
||||||
|
:class="{'left-[-16rem]' : !visible, 'left-0': visible}"
|
||||||
|
@endif
|
||||||
|
>
|
||||||
|
<div class="grid gap-2">
|
||||||
|
<x-page::menu-entry href="/" menu="dashboard" icon="loss">Dashboard</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry href="/member" menu="member" icon="user">Mitglieder</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry v-show="hasModule('bill')" href="/subscription" menu="subscription" icon="money">Beiträge</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry v-show="hasModule('bill')" href="/invoice" menu="invoice" icon="moneypaper">Rechnungen</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry href="/contribution" menu="contribution" icon="contribution">Zuschüsse</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry href="/activity" menu="activity" icon="activity">Tätigkeiten</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry href="/group" menu="group" icon="group">Gruppierungen</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry v-if="hasModule('event')" href="/form" menu="form" icon="event">Veranstaltungen</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry href="/maildispatcher" menu="maildispatcher" icon="at">Mail-Verteiler</x-page::menu-entry>
|
||||||
|
</div>
|
||||||
|
<div class="grid gap-2">
|
||||||
|
<a href="#" class="flex w-full px-3 py-2 rounded-xl text-gray-300 bg-gray-700" @click.prevent="dispatch('show-search')">
|
||||||
|
<x-ui::sprite class="text-white w-6 h-6 mr-4" src="search"></x-ui::sprite>
|
||||||
|
<div class="">Suchen</div>
|
||||||
|
</a>
|
||||||
|
<x-page::menu-entry href="/setting" menu="setting" icon="setting">Einstellungen</x-page::menu-entry>
|
||||||
|
<x-page::menu-entry href="/logout" menu="" icon="logout">Abmelden</x-page::menu-entry>
|
||||||
|
</div>
|
||||||
|
@if($mobile)
|
||||||
|
<a href="#" class="absolute right-0 top-0 mr-2 mt-2" @click.prevent="visible = false">
|
||||||
|
<x-ui::sprite src="close" class="w-5 h-5 text-gray-300"></x-ui::sprite>
|
||||||
|
</a>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Traits;
|
||||||
|
|
||||||
|
use App\View\Enums\Variant;
|
||||||
|
|
||||||
|
trait HasColors
|
||||||
|
{
|
||||||
|
public function bgColor(string $variant): string
|
||||||
|
{
|
||||||
|
$variant = Variant::fromString($variant);
|
||||||
|
|
||||||
|
return implode(' ', [
|
||||||
|
$variant->background(),
|
||||||
|
$variant->hoverBackground(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function fgColor(string $variant): string
|
||||||
|
{
|
||||||
|
$variant = Variant::fromString($variant);
|
||||||
|
|
||||||
|
return implode(' ', [
|
||||||
|
$variant->foreground(),
|
||||||
|
$variant->hoverForeground(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function allColors(string $variant): string
|
||||||
|
{
|
||||||
|
return "{$this->bgColor($variant)} {$this->fgColor($variant)}";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Traits;
|
||||||
|
|
||||||
|
trait HasFormDimensions
|
||||||
|
{
|
||||||
|
|
||||||
|
public function heightVars(): string
|
||||||
|
{
|
||||||
|
return data_get([
|
||||||
|
'default' => '--height: 35px; --padding: 3px;',
|
||||||
|
'sm' => '--height: 23px; --padding: 2px;',
|
||||||
|
], $this->size);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function heightClass(): string
|
||||||
|
{
|
||||||
|
return data_get([
|
||||||
|
'default' => 'size-default',
|
||||||
|
'sm' => 'size-sm',
|
||||||
|
], $this->size);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use App\View\Traits\HasColors;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Action extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use HasColors;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $icon,
|
||||||
|
public string $variant = 'primary'
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<a x-tooltip.raw="{{$slot}}" href="#" {{ $attributes }} class="inline-flex
|
||||||
|
w-6 h-5 flex items-center justify-center rounded {{ $allColors($variant) }}
|
||||||
|
">
|
||||||
|
<x-ui::sprite class="w-3 h-3 flex-none" :src="$icon"></x-ui::sprite>
|
||||||
|
</a>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use App\View\Traits\HasColors;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Badge extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use HasColors;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $icon,
|
||||||
|
public string $variant = 'primary'
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<button type="button" href="#" {{ $attributes }} class="h-6 px-3 space-x-2 items-center rounded-full {{ $allColors($variant) }} hidden lg:flex">
|
||||||
|
<x-ui::sprite class="w-3 h-3 flex-none" :src="$icon"></x-ui::sprite>
|
||||||
|
<span class="text-sm">
|
||||||
|
{{$slot}}
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
<button type="button" x-tooltip.raw="{{$slot}}" href="#" {{ $attributes }} class="h-6 px-3 space-x-2 flex items-center rounded-full {{ $allColors($variant) }} lg:hidden">
|
||||||
|
<x-ui::sprite class="w-3 h-3 flex-none" :src="$icon"></x-ui::sprite>
|
||||||
|
</button>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class BooleanDisplay extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public bool $value,
|
||||||
|
public string $hint,
|
||||||
|
public string $right,
|
||||||
|
public string $wrong,
|
||||||
|
public bool $dark = false,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public function spriteClass(): string
|
||||||
|
{
|
||||||
|
return $this->value ? 'text-green-800 group-[.dark]:text-green-600' : 'text-red-800 group-[.dark]:text-red-600';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div x-tooltip.raw="{{$hint}}" class="flex space-x-2 items-center group @if($dark) dark @endif">
|
||||||
|
<div class="border-2 rounded-full w-5 h-5 flex items-center justify-center
|
||||||
|
@if ($value) border-green-700 group-[.dark]:border-green-500
|
||||||
|
@else border-red-700 group-[.dark]:border-red-500
|
||||||
|
@endif
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<x-ui::sprite :src="$value ? 'check ' :'close'" class="w-3 h-3 flex-none {{$spriteClass}}"></x-ui::sprite>
|
||||||
|
</div>
|
||||||
|
<div class="text-gray-400 text-xs">{{ $value ? $right : $wrong }}</div>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,38 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Box extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $containerClass = '',
|
||||||
|
public bool $second = false,
|
||||||
|
public string $title = '',
|
||||||
|
public string $inTitle = '',
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<section {!! $attributes
|
||||||
|
->mergeWhen($second, 'class', 'bg-gray-700 group-[.is-popup]:bg-zinc-600')
|
||||||
|
->mergeWhen(!$second, 'class', 'bg-gray-800 group-[.is-popup]:bg-zinc-700')
|
||||||
|
->mergeWhen(true, 'class', 'p-3 rounded-lg flex flex-col')
|
||||||
|
!!}>
|
||||||
|
<div class="flex items-center">
|
||||||
|
@if($title)
|
||||||
|
<div class="col-span-full font-semibold text-gray-300 group-[.is-popup]:text-zinc-300">{{$title}}</div>
|
||||||
|
@endif
|
||||||
|
{{$inTitle}}
|
||||||
|
</div>
|
||||||
|
<main class="{{ $title ? 'mt-2' : '' }} {{ $containerClass }}">
|
||||||
|
{{ $slot }}
|
||||||
|
</main>
|
||||||
|
</section>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Button extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(public string $type = 'button')
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<button type="{{$type}}" class="px-3 py-2 uppercase no-underline text-sm items-center justify-center bg-primary-700 rounded text-primary-300">
|
||||||
|
{{$slot}}
|
||||||
|
</button>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Errors extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $for,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public function id(): string
|
||||||
|
{
|
||||||
|
return 'errors-' . str_replace('.', '--', $this->for);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
@error($for)
|
||||||
|
<div x-data="{error: ''}" x-init="window.setTimeout(() => document.querySelector('#{{$id()}}') ? document.querySelector('#{{$id()}}').remove() : null, 2000)" class="absolute bottom-[calc(100%+0.5rem)] right-0" id="{{$id}}">
|
||||||
|
<div class="tippy-box" tabindex="-1" data-theme="danger" data-placement="top">
|
||||||
|
<div class="tippy-content">{{$message}}</div>
|
||||||
|
<div class="tippy-arrow absolute right-0 mr-2"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@enderror
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Menulist extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(public array $entries)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function activeClass($entry): string
|
||||||
|
{
|
||||||
|
return $entry['is_active'] ? 'bg-gray-600' : '';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div class="p-6 bg-gray-700 border-r border-gray-600 flex-none w-maxc flex flex-col justify-between">
|
||||||
|
<div class="grid gap-1">
|
||||||
|
@foreach($entries as $entry)
|
||||||
|
<a href="{{$entry['url']}}" class="rounded py-1 px-3 text-gray-400 duration-200 hover:bg-gray-600 {{$activeClass($entry)}}" @if($entry['is_active']) data-active @endif>
|
||||||
|
{{$entry['title']}}
|
||||||
|
</a>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
<slot name="bottom"></slot>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class SettingIntro extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(public ?string $title = null)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div {{$attributes}}>
|
||||||
|
@if ($title) <h2 class="text-lg font-semibold text-gray-300">{{$title}}</h2> @endif
|
||||||
|
<div class="text-gray-100 text-sm">
|
||||||
|
{{ $slot }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Cache;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Sprite extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public string $spritemapFile;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public string $src = '',
|
||||||
|
) {
|
||||||
|
$this->spritemapFile = Cache::rememberForever('spritemap_file', function () {
|
||||||
|
$manifest = json_decode(file_get_contents(public_path('build/manifest.json')), true);
|
||||||
|
return asset('build/' . $manifest['spritemap.svg']['file']);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<svg {{ $attributes->merge(['class' => 'fill-current']) }}><use xlink:href="{{$spritemapFile}}#sprite-{{$src}}" /></svg>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Ui;
|
||||||
|
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class Table extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct(public string $mode = 'dark')
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div class="@container/table">
|
||||||
|
<table cellpadding="0" cellspacing="0" border="0" class="w-full @if ($mode === 'dark') table-dark @else table-light @endif
|
||||||
|
[&_th]:text-left [&_th]:px-2 [&_th]:@4xl/table:px-6 [&_th]:text-gray-200 [&_th]:font-semibold [&_th]:py-3 [&_th]:border-gray-600 [&_th]:border-b
|
||||||
|
[&_tbody_tr]:text-gray-200 [&_tbody_tr]:duration-300 [&_tbody_tr]:rounded [&_tbody_tr:hover]:bg-gray-800
|
||||||
|
[&_tr_td]:py-1 [&_tr_td]:px-2 [&_tr_td]:@4xl/table:px-6
|
||||||
|
[&.table-light_th]:border-gray-500 [&.table-light_tbody_tr:hover]:bg-gray-700
|
||||||
|
|
||||||
|
|
||||||
|
">
|
||||||
|
{{ $slot }}
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -61,6 +61,7 @@
|
||||||
"laravel/ui": "^4.0",
|
"laravel/ui": "^4.0",
|
||||||
"league/csv": "^9.9",
|
"league/csv": "^9.9",
|
||||||
"league/flysystem-webdav": "dev-master as 3.28.0",
|
"league/flysystem-webdav": "dev-master as 3.28.0",
|
||||||
|
"livewire/livewire": "^3.5",
|
||||||
"lorisleiva/laravel-actions": "^2.4",
|
"lorisleiva/laravel-actions": "^2.4",
|
||||||
"meilisearch/meilisearch-php": "^1.6",
|
"meilisearch/meilisearch-php": "^1.6",
|
||||||
"monicahq/laravel-sabre": "^1.6",
|
"monicahq/laravel-sabre": "^1.6",
|
||||||
|
@ -85,7 +86,8 @@
|
||||||
"mockery/mockery": "^1.4.4",
|
"mockery/mockery": "^1.4.4",
|
||||||
"orchestra/testbench": "^9.0",
|
"orchestra/testbench": "^9.0",
|
||||||
"pestphp/pest": "^3.0",
|
"pestphp/pest": "^3.0",
|
||||||
"phpstan/phpstan-mockery": "^1.1"
|
"phpstan/phpstan-mockery": "^1.1",
|
||||||
|
"qossmic/deptrac": "^2.0"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"optimize-autoloader": true,
|
"optimize-autoloader": true,
|
||||||
|
@ -104,6 +106,7 @@
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"App\\": "app/",
|
"App\\": "app/",
|
||||||
|
"Modules\\": "modules/",
|
||||||
"Plugins\\": "plugins/",
|
"Plugins\\": "plugins/",
|
||||||
"Database\\Factories\\": "database/factories/",
|
"Database\\Factories\\": "database/factories/",
|
||||||
"Database\\Seeders\\": "database/seeders/"
|
"Database\\Seeders\\": "database/seeders/"
|
||||||
|
@ -111,6 +114,7 @@
|
||||||
},
|
},
|
||||||
"autoload-dev": {
|
"autoload-dev": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
"Modules\\Dashboard\\Tests\\": "modules/dashboard/tests/",
|
||||||
"Tests\\": "tests/",
|
"Tests\\": "tests/",
|
||||||
"Zoomyboy\\LaravelNami\\Tests\\": "packages/laravel-nami/tests/"
|
"Zoomyboy\\LaravelNami\\Tests\\": "packages/laravel-nami/tests/"
|
||||||
}
|
}
|
||||||
|
@ -118,6 +122,10 @@
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"archtest": [
|
||||||
|
"./vendor/bin/deptrac analyze",
|
||||||
|
"./vendor/bin/pest tests/Arch.php"
|
||||||
|
],
|
||||||
"post-autoload-dump": [
|
"post-autoload-dump": [
|
||||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||||
"@php artisan package:discover --ansi"
|
"@php artisan package:discover --ansi"
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "10f0b0d2a8dee4a8dad4821de9935f85",
|
"content-hash": "3ffa3d4a189ba5d296ca71166298a74f",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "amphp/amp",
|
"name": "amphp/amp",
|
||||||
|
@ -5153,6 +5153,82 @@
|
||||||
],
|
],
|
||||||
"time": "2024-03-23T07:42:40+00:00"
|
"time": "2024-03-23T07:42:40+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "livewire/livewire",
|
||||||
|
"version": "v3.5.8",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/livewire/livewire.git",
|
||||||
|
"reference": "ce1ce71b39a3492b98f7d2f2a4583f1b163fe6ae"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/livewire/livewire/zipball/ce1ce71b39a3492b98f7d2f2a4583f1b163fe6ae",
|
||||||
|
"reference": "ce1ce71b39a3492b98f7d2f2a4583f1b163fe6ae",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"illuminate/database": "^10.0|^11.0",
|
||||||
|
"illuminate/routing": "^10.0|^11.0",
|
||||||
|
"illuminate/support": "^10.0|^11.0",
|
||||||
|
"illuminate/validation": "^10.0|^11.0",
|
||||||
|
"laravel/prompts": "^0.1.24",
|
||||||
|
"league/mime-type-detection": "^1.9",
|
||||||
|
"php": "^8.1",
|
||||||
|
"symfony/console": "^6.0|^7.0",
|
||||||
|
"symfony/http-kernel": "^6.2|^7.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"calebporzio/sushi": "^2.1",
|
||||||
|
"laravel/framework": "^10.15.0|^11.0",
|
||||||
|
"mockery/mockery": "^1.3.1",
|
||||||
|
"orchestra/testbench": "^8.21.0|^9.0",
|
||||||
|
"orchestra/testbench-dusk": "^8.24|^9.1",
|
||||||
|
"phpunit/phpunit": "^10.4",
|
||||||
|
"psy/psysh": "^0.11.22|^0.12"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"laravel": {
|
||||||
|
"providers": [
|
||||||
|
"Livewire\\LivewireServiceProvider"
|
||||||
|
],
|
||||||
|
"aliases": {
|
||||||
|
"Livewire": "Livewire\\Livewire"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"files": [
|
||||||
|
"src/helpers.php"
|
||||||
|
],
|
||||||
|
"psr-4": {
|
||||||
|
"Livewire\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Caleb Porzio",
|
||||||
|
"email": "calebporzio@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A front-end framework for Laravel.",
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/livewire/livewire/issues",
|
||||||
|
"source": "https://github.com/livewire/livewire/tree/v3.5.8"
|
||||||
|
},
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"url": "https://github.com/livewire",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"time": "2024-09-20T19:41:19+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "lorisleiva/laravel-actions",
|
"name": "lorisleiva/laravel-actions",
|
||||||
"version": "v2.8.4",
|
"version": "v2.8.4",
|
||||||
|
@ -15667,6 +15743,51 @@
|
||||||
},
|
},
|
||||||
"time": "2024-09-11T15:47:29+00:00"
|
"time": "2024-09-11T15:47:29+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "qossmic/deptrac",
|
||||||
|
"version": "2.0.1",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/qossmic/deptrac.git",
|
||||||
|
"reference": "f646695c1468051138e1347d89590f9084fa6256"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/qossmic/deptrac/zipball/f646695c1468051138e1347d89590f9084fa6256",
|
||||||
|
"reference": "f646695c1468051138e1347d89590f9084fa6256",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"ext-json": "*",
|
||||||
|
"php": "^8.1"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"ext-dom": "For using the JUnit output formatter"
|
||||||
|
},
|
||||||
|
"bin": [
|
||||||
|
"bin/deptrac",
|
||||||
|
"deptrac.phar"
|
||||||
|
],
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"files": [
|
||||||
|
"bootstrap.php"
|
||||||
|
],
|
||||||
|
"psr-4": {
|
||||||
|
"Qossmic\\Deptrac\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"description": "Deptrac is a static code analysis tool that helps to enforce rules for dependencies between software layers.",
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/qossmic/deptrac/issues",
|
||||||
|
"source": "https://github.com/qossmic/deptrac/tree/2.0.1"
|
||||||
|
},
|
||||||
|
"time": "2024-06-17T10:43:11+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "rector/rector",
|
"name": "rector/rector",
|
||||||
"version": "1.2.5",
|
"version": "1.2.5",
|
||||||
|
|
|
@ -168,7 +168,6 @@ return [
|
||||||
*/
|
*/
|
||||||
App\Providers\AppServiceProvider::class,
|
App\Providers\AppServiceProvider::class,
|
||||||
App\Providers\AuthServiceProvider::class,
|
App\Providers\AuthServiceProvider::class,
|
||||||
// App\Providers\BroadcastServiceProvider::class,
|
|
||||||
App\Providers\EventServiceProvider::class,
|
App\Providers\EventServiceProvider::class,
|
||||||
App\Providers\HorizonServiceProvider::class,
|
App\Providers\HorizonServiceProvider::class,
|
||||||
App\Providers\RouteServiceProvider::class,
|
App\Providers\RouteServiceProvider::class,
|
||||||
|
@ -176,8 +175,15 @@ return [
|
||||||
App\Tex\TexServiceProvider::class,
|
App\Tex\TexServiceProvider::class,
|
||||||
App\Dav\ServiceProvider::class,
|
App\Dav\ServiceProvider::class,
|
||||||
App\Setting\SettingServiceProvider::class,
|
App\Setting\SettingServiceProvider::class,
|
||||||
App\Dashboard\DashboardServiceProvider::class,
|
// App\Dashboard\DashboardServiceProvider::class,
|
||||||
App\Providers\PluginServiceProvider::class,
|
App\Providers\PluginServiceProvider::class,
|
||||||
|
App\Providers\BaseServiceProvider::class,
|
||||||
|
Modules\Dashboard\DashboardServiceProvider::class,
|
||||||
|
Modules\Module\ModuleServiceProvider::class,
|
||||||
|
Modules\Invoice\InvoiceServiceProvider::class,
|
||||||
|
Modules\Mailgateway\MailgatewayServiceProvider::class,
|
||||||
|
Modules\Nami\NamiServiceProvider::class,
|
||||||
|
Modules\Auth\AuthServiceProvider::class,
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -228,6 +234,7 @@ return [
|
||||||
'URL' => Illuminate\Support\Facades\URL::class,
|
'URL' => Illuminate\Support\Facades\URL::class,
|
||||||
'Validator' => Illuminate\Support\Facades\Validator::class,
|
'Validator' => Illuminate\Support\Facades\Validator::class,
|
||||||
'View' => Illuminate\Support\Facades\View::class,
|
'View' => Illuminate\Support\Facades\View::class,
|
||||||
|
'Vite' => Illuminate\Support\Facades\Vite::class,
|
||||||
'Inertia' => \Inertia\Inertia::class,
|
'Inertia' => \Inertia\Inertia::class,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
|
@ -0,0 +1,160 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Class Namespace
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value sets the root class namespace for Livewire component classes in
|
||||||
|
| your application. This value will change where component auto-discovery
|
||||||
|
| finds components. It's also referenced by the file creation commands.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'class_namespace' => 'App\\View',
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| View Path
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value is used to specify where Livewire component Blade templates are
|
||||||
|
| stored when running file creation commands like `artisan make:livewire`.
|
||||||
|
| It is also used if you choose to omit a component's render() method.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'view_path' => resource_path('views/livewire'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Layout
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| The view that will be used as the layout when rendering a single component
|
||||||
|
| as an entire page via `Route::get('/post/create', CreatePost::class);`.
|
||||||
|
| In this case, the view returned by CreatePost will render into $slot.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'layout' => 'components.layouts.app',
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Lazy Loading Placeholder
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Livewire allows you to lazy load components that would otherwise slow down
|
||||||
|
| the initial page load. Every component can have a custom placeholder or
|
||||||
|
| you can define the default placeholder view for all components below.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'lazy_placeholder' => null,
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Temporary File Uploads
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Livewire handles file uploads by storing uploads in a temporary directory
|
||||||
|
| before the file is stored permanently. All file uploads are directed to
|
||||||
|
| a global endpoint for temporary storage. You may configure this below:
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'temporary_file_upload' => [
|
||||||
|
'disk' => null, // Example: 'local', 's3' | Default: 'default'
|
||||||
|
'rules' => null, // Example: ['file', 'mimes:png,jpg'] | Default: ['required', 'file', 'max:12288'] (12MB)
|
||||||
|
'directory' => null, // Example: 'tmp' | Default: 'livewire-tmp'
|
||||||
|
'middleware' => null, // Example: 'throttle:5,1' | Default: 'throttle:60,1'
|
||||||
|
'preview_mimes' => [ // Supported file types for temporary pre-signed file URLs...
|
||||||
|
'png', 'gif', 'bmp', 'svg', 'wav', 'mp4',
|
||||||
|
'mov', 'avi', 'wmv', 'mp3', 'm4a',
|
||||||
|
'jpg', 'jpeg', 'mpga', 'webp', 'wma',
|
||||||
|
],
|
||||||
|
'max_upload_time' => 5, // Max duration (in minutes) before an upload is invalidated...
|
||||||
|
'cleanup' => true, // Should cleanup temporary uploads older than 24 hrs...
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Render On Redirect
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value determines if Livewire will run a component's `render()` method
|
||||||
|
| after a redirect has been triggered using something like `redirect(...)`
|
||||||
|
| Setting this to true will render the view once more before redirecting
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'render_on_redirect' => false,
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Eloquent Model Binding
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Previous versions of Livewire supported binding directly to eloquent model
|
||||||
|
| properties using wire:model by default. However, this behavior has been
|
||||||
|
| deemed too "magical" and has therefore been put under a feature flag.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'legacy_model_binding' => false,
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Auto-inject Frontend Assets
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| By default, Livewire automatically injects its JavaScript and CSS into the
|
||||||
|
| <head> and <body> of pages containing Livewire components. By disabling
|
||||||
|
| this behavior, you need to use @livewireStyles and @livewireScripts.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'inject_assets' => true,
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Navigate (SPA mode)
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| By adding `wire:navigate` to links in your Livewire application, Livewire
|
||||||
|
| will prevent the default link handling and instead request those pages
|
||||||
|
| via AJAX, creating an SPA-like effect. Configure this behavior here.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'navigate' => [
|
||||||
|
'show_progress_bar' => true,
|
||||||
|
'progress_bar_color' => '#2299dd',
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| HTML Morph Markers
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Livewire intelligently "morphs" existing HTML into the newly rendered HTML
|
||||||
|
| after each update. To make this process more reliable, Livewire injects
|
||||||
|
| "markers" into the rendered Blade surrounding @if, @class & @foreach.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'inject_morph_markers' => true,
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
| Pagination Theme
|
||||||
|
|---------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When enabling Livewire's pagination feature by using the `WithPagination`
|
||||||
|
| trait, Livewire will use Tailwind templates to render pagination views
|
||||||
|
| on the page. If you want Bootstrap CSS, you can specify: "bootstrap"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'pagination_theme' => 'tailwind',
|
||||||
|
];
|
|
@ -27,4 +27,9 @@ class UserFactory extends Factory
|
||||||
'lastname' => $this->faker->lastName,
|
'lastname' => $this->faker->lastName,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function loginData(string $email, string $password): self
|
||||||
|
{
|
||||||
|
return $this->state(['email' => $email, 'password' => Hash::make($password)]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
deptrac:
|
||||||
|
paths:
|
||||||
|
- ./app
|
||||||
|
- ./modules
|
||||||
|
exclude_files:
|
||||||
|
- '#.*Test.php$#'
|
||||||
|
layers:
|
||||||
|
- name: AppFiles
|
||||||
|
collectors:
|
||||||
|
- type: bool
|
||||||
|
must:
|
||||||
|
- type: classLike
|
||||||
|
value: .*
|
||||||
|
- type: directory
|
||||||
|
value: app/.*
|
||||||
|
|
||||||
|
- name: ModuleFiles
|
||||||
|
collectors:
|
||||||
|
- type: bool
|
||||||
|
must:
|
||||||
|
- type: classLike
|
||||||
|
value: .*
|
||||||
|
- type: directory
|
||||||
|
value: modules/.*
|
||||||
|
|
||||||
|
ruleset:
|
||||||
|
ModuleFiles:
|
||||||
|
- AppFiles
|
||||||
|
AppFiles:
|
||||||
|
- ModuleFiles
|
|
@ -0,0 +1,35 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Auth;
|
||||||
|
|
||||||
|
use Illuminate\Routing\Router;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Modules\Auth\Components\LoginForm;
|
||||||
|
use Modules\Auth\Components\PasswordReset;
|
||||||
|
use Modules\Auth\Components\PasswordResetConfirm;
|
||||||
|
|
||||||
|
class AuthServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Register services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function register()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstrap services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function boot()
|
||||||
|
{
|
||||||
|
app(Router::class)->middleware(['web', 'guest'])->group(function ($router) {
|
||||||
|
$router->get('/login', LoginForm::class)->name('login');
|
||||||
|
$router->get('/password/reset', PasswordReset::class)->name('password.request');
|
||||||
|
$router->get('/password/reset/{token}', PasswordResetConfirm::class)->name('password.reset');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,62 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Auth\Components;
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
||||||
|
use Illuminate\Foundation\Auth\ThrottlesLogins;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Validation\ValidationException;
|
||||||
|
use Livewire\Attributes\Layout;
|
||||||
|
use Livewire\Component;
|
||||||
|
|
||||||
|
class LoginForm extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use AuthenticatesUsers;
|
||||||
|
use ThrottlesLogins;
|
||||||
|
|
||||||
|
public string $email = '';
|
||||||
|
public string $password = '';
|
||||||
|
|
||||||
|
public function validateLogin(Request $request)
|
||||||
|
{
|
||||||
|
$this->validate([
|
||||||
|
'email' => 'required|max:255|string|email',
|
||||||
|
'password' => 'required|string',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function credentials(Request $request)
|
||||||
|
{
|
||||||
|
return ['email' => $this->email, 'password' => $this->password];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function sendLoginResponse(Request $request)
|
||||||
|
{
|
||||||
|
return redirect()->intended('/');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function submit()
|
||||||
|
{
|
||||||
|
return $this->login(request());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Layout('components.layouts.full')]
|
||||||
|
public function render(): string
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<x-page::full heading="Login" title="Login">
|
||||||
|
<form wire:submit="submit">
|
||||||
|
<div class="grid gap-5">
|
||||||
|
<x-form::text name="email" wire:model="email" label="E-Mail-Adresse"></x-form::text>
|
||||||
|
<x-form::text name="password" wire:model="password" type="password" label="Passwort"></x-form::text>
|
||||||
|
<x-ui::button type="submit">Login</x-ui::button>
|
||||||
|
<div class="flex justify-center">
|
||||||
|
<a href="{{route('password.request')}}" class="text-gray-500 text-sm hover:text-gray-300">Passwort vergessen?</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</x-page::full>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,70 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Auth\Components;
|
||||||
|
|
||||||
|
use App\User;
|
||||||
|
use Illuminate\Auth\Events\Lockout;
|
||||||
|
use Tests\TestCase;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
use Illuminate\Support\Facades\Event;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
|
||||||
|
uses(TestCase::class);
|
||||||
|
uses(DatabaseTransactions::class);
|
||||||
|
|
||||||
|
it('redirects to login', function () {
|
||||||
|
test()->get('/')->assertRedirect('/login');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('displays component', function () {
|
||||||
|
test()->get('/login')->assertSeeLivewire(LoginForm::class)->assertDontSee('Dashboard');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('displays form', function () {
|
||||||
|
Livewire::test(LoginForm::class)
|
||||||
|
->assertSee('Login')
|
||||||
|
->assertSee('Passwort vergessen')
|
||||||
|
->assertSee(route('password.request'));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('loggs in', function () {
|
||||||
|
User::factory()->loginData('admin@example.com', 'secret')->create();
|
||||||
|
Livewire::test(LoginForm::class)
|
||||||
|
->set('email', 'admin@example.com')
|
||||||
|
->set('password', 'secret')
|
||||||
|
->call('submit')
|
||||||
|
->assertRedirect('/');
|
||||||
|
|
||||||
|
$this->assertEquals('admin@example.com', auth()->user()->email);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('displays failed login response', function () {
|
||||||
|
Livewire::test(LoginForm::class)
|
||||||
|
->set('email', 'admin@example.com')
|
||||||
|
->set('password', 'secret')
|
||||||
|
->call('submit')
|
||||||
|
->assertHasErrors(['email' => 'Login fehlgeschlagen.']);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('increments login attempts', function () {
|
||||||
|
Event::fake([Lockout::class]);
|
||||||
|
Livewire::test(LoginForm::class)
|
||||||
|
->set('email', 'admin@example.com')
|
||||||
|
->set('password', 'secret')
|
||||||
|
->call('submit')
|
||||||
|
->call('submit')
|
||||||
|
->call('submit')
|
||||||
|
->call('submit')
|
||||||
|
->call('submit')
|
||||||
|
->call('submit');
|
||||||
|
Event::assertDispatchedTimes(Lockout::class);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('requires email and password', function () {
|
||||||
|
User::factory()->loginData('admin@example.com', 'secret')->create();
|
||||||
|
Livewire::test(LoginForm::class)
|
||||||
|
->set('email', '')
|
||||||
|
->set('password', '')
|
||||||
|
->call('submit')
|
||||||
|
->assertHasErrors(['email', 'password']);
|
||||||
|
});
|
|
@ -0,0 +1,66 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Auth\Components;
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Validation\ValidationException;
|
||||||
|
use Livewire\Attributes\Layout;
|
||||||
|
use Livewire\Component;
|
||||||
|
|
||||||
|
class PasswordReset extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use SendsPasswordResetEmails;
|
||||||
|
|
||||||
|
public string $email = '';
|
||||||
|
|
||||||
|
protected function validateEmail(Request $request)
|
||||||
|
{
|
||||||
|
$this->validate([
|
||||||
|
'email' => 'required|max:255|string|email',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function sendResetLinkFailedResponse(Request $request, $response)
|
||||||
|
{
|
||||||
|
throw ValidationException::withMessages([
|
||||||
|
'email' => [trans($response)],
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function credentials(Request $request)
|
||||||
|
{
|
||||||
|
return ['email' => $this->email];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function submit()
|
||||||
|
{
|
||||||
|
$this->sendResetLinkEmail(request());
|
||||||
|
$this->dispatch('success', 'Du hast weitere Instruktionen per E-Mail erhalten.');
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Layout('components.layouts.full')]
|
||||||
|
public function render(): string
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<x-page::full heading="Passwort vergessen" title="Passwort vergessen">
|
||||||
|
<form wire:submit.prevent="submit">
|
||||||
|
<div class="grid gap-5">
|
||||||
|
<span class="text-gray-500 text-sm"
|
||||||
|
>Hier kannst du dein Passwort zurücksetzen.<br />
|
||||||
|
Gebe dafür die E-Mail-Adresse deines Benutzerkontos ein.<br />
|
||||||
|
Anschließend bekommst du eine E-Mail<br />
|
||||||
|
mit weiteren Anweisungen.</span
|
||||||
|
>
|
||||||
|
<x-form::text name="email" wire:model="email" label="E-Mail-Adresse"></x-form::text>
|
||||||
|
<x-ui::button type="submit">Passwort zurücksetzen</x-ui::button>
|
||||||
|
<div class="flex justify-center">
|
||||||
|
<a href="/login" class="text-gray-500 text-sm hover:text-gray-300">Zurück zum Login</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</x-page::full>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,87 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Auth\Components;
|
||||||
|
|
||||||
|
use Illuminate\Auth\Events\PasswordReset;
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
use Illuminate\Support\Facades\Hash;
|
||||||
|
use Illuminate\Support\Facades\Password;
|
||||||
|
use Illuminate\Validation\Rules\Password as PasswordRule;
|
||||||
|
use Illuminate\Validation\ValidationException;
|
||||||
|
use Livewire\Attributes\Layout;
|
||||||
|
use Livewire\Component;
|
||||||
|
|
||||||
|
class PasswordResetConfirm extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public string $password = '';
|
||||||
|
public string $password_confirmation = '';
|
||||||
|
public string $token = '';
|
||||||
|
public string $email = '';
|
||||||
|
|
||||||
|
public function mount(string $token): void
|
||||||
|
{
|
||||||
|
$this->email = request()->query('email');
|
||||||
|
$this->token = $token;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function submit()
|
||||||
|
{
|
||||||
|
$this->validate([
|
||||||
|
'token' => 'required',
|
||||||
|
'email' => 'required|email',
|
||||||
|
'password' => ['required', 'confirmed', PasswordRule::defaults()],
|
||||||
|
]);
|
||||||
|
|
||||||
|
$response = Password::broker()->reset([
|
||||||
|
'email' => $this->email,
|
||||||
|
'password' => $this->password,
|
||||||
|
'password_confirmation' => $this->password_confirmation,
|
||||||
|
'token' => $this->token
|
||||||
|
], fn ($user, $password) => $this->resetPassword($user, $password));
|
||||||
|
|
||||||
|
if ($response == Password::PASSWORD_RESET) {
|
||||||
|
$this->dispatch('success', 'Passwort erfolgreich geändert.');
|
||||||
|
return redirect()->route('home');
|
||||||
|
}
|
||||||
|
|
||||||
|
ValidationException::withMessages([
|
||||||
|
'password' => 'Passwort konnte nicht geändert werden.',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function resetPassword($user, $password)
|
||||||
|
{
|
||||||
|
$user->password = Hash::make($password);
|
||||||
|
$user->setRememberToken(Str::random(60));
|
||||||
|
$user->save();
|
||||||
|
event(new PasswordReset($user));
|
||||||
|
auth()->login($user);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Layout('components.layouts.full')]
|
||||||
|
public function render(): string
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<x-page::full heading="Passwort vergessen" title="Passwort vergessen">
|
||||||
|
<form wire:submit.prevent="submit">
|
||||||
|
<div class="grid gap-5">
|
||||||
|
<span class="text-gray-500 text-sm">
|
||||||
|
Hier kannst du dein Passwort zurücksetzen.<br />
|
||||||
|
Gebe dafür ein neues Passwort ein.<br />
|
||||||
|
Merke oder notiere dir dieses Passwort, bevor du das Formular absendest.<br />
|
||||||
|
Danach wirst du zum Dashboard weitergeleitet.
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<x-form::text type="password" name="password" wire:model="password" label="Neues Passwort"></x-form::text>
|
||||||
|
<x-form::text type="password" name="password_confirmation" wire:model="password_confirmation" label="Neues Passwort widerholen"></x-form::text>
|
||||||
|
<x-ui::button type="submit">Passwort zurücksetzen</x-ui::button>
|
||||||
|
<div class="flex justify-center">
|
||||||
|
<a href="/login" class="text-gray-500 text-sm hover:text-gray-300">Zurück zum Login</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</x-page::full>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,50 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Auth\Components;
|
||||||
|
|
||||||
|
use Modules\Auth\Mails\ResetPassword;
|
||||||
|
use App\User;
|
||||||
|
use Tests\TestCase;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
use Illuminate\Support\Facades\Notification;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
|
||||||
|
uses(TestCase::class);
|
||||||
|
uses(DatabaseTransactions::class);
|
||||||
|
|
||||||
|
it('displays component', function () {
|
||||||
|
test()->get(route('password.request'))->assertSeeLivewire(PasswordReset::class)->assertDontSee('Dashboard');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('shows intro', function () {
|
||||||
|
Livewire::test(PasswordReset::class)->assertSee('Hier kannst du dein Passwort zurücksetzen.');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('it needs email address', function (string $email, string $error) {
|
||||||
|
Livewire::test(PasswordReset::class)
|
||||||
|
->set('email', $email)
|
||||||
|
->call('submit')
|
||||||
|
->assertHasErrors(['email' => $error]);
|
||||||
|
})
|
||||||
|
->with([
|
||||||
|
['', 'E-Mail Adresse ist erforderlich.'],
|
||||||
|
['aaa', 'E-Mail Adresse muss eine gültige E-Mail-Adresse sein.'],
|
||||||
|
]);
|
||||||
|
|
||||||
|
it('displays error when user doesnt exsst', function () {
|
||||||
|
Livewire::test(PasswordReset::class)
|
||||||
|
->set('email', 'nowhere@example.com')
|
||||||
|
->call('submit')
|
||||||
|
->assertHasErrors(['email' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.']);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('requests link', function () {
|
||||||
|
Notification::fake();
|
||||||
|
$user = User::factory()->loginData('admin@example.com', 'secret')->create();
|
||||||
|
Livewire::test(PasswordReset::class)
|
||||||
|
->set('email', 'admin@example.com')
|
||||||
|
->call('submit')
|
||||||
|
->assertDispatched('success', 'Du hast weitere Instruktionen per E-Mail erhalten.');
|
||||||
|
|
||||||
|
Notification::assertSentTo($user, ResetPassword::class);
|
||||||
|
});
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Auth;
|
namespace Modules\Auth\Mails;
|
||||||
|
|
||||||
use Illuminate\Notifications\Messages\MailMessage;
|
use Illuminate\Notifications\Messages\MailMessage;
|
||||||
use Illuminate\Support\Facades\Lang;
|
use Illuminate\Support\Facades\Lang;
|
||||||
|
@ -17,7 +17,7 @@ class ResetPassword extends BaseResetPassword
|
||||||
protected function buildMailMessage($url)
|
protected function buildMailMessage($url)
|
||||||
{
|
{
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
->subject(Lang::get('Passwort zurücksetzen | Adrema'))
|
->subject(Lang::get('Passwort zurücksetzen | ' . config('app.name')))
|
||||||
->line(Lang::get('Du erhälst diese E-Mail, weil du eine Anfrage zum zurücksetzen deines Account-Passworts gestellt hast.'))
|
->line(Lang::get('Du erhälst diese E-Mail, weil du eine Anfrage zum zurücksetzen deines Account-Passworts gestellt hast.'))
|
||||||
->action(Lang::get('Passwort zurücksetzen'), $url)
|
->action(Lang::get('Passwort zurücksetzen'), $url)
|
||||||
->line(Lang::get('Dieser Link wird in :count Minuten ablaufen.', ['count' => config('auth.passwords.' . config('auth.defaults.passwords') . '.expire')]))
|
->line(Lang::get('Dieser Link wird in :count Minuten ablaufen.', ['count' => config('auth.passwords.' . config('auth.defaults.passwords') . '.expire')]))
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Dashboard;
|
||||||
|
|
||||||
|
use Livewire\Component;
|
||||||
|
|
||||||
|
abstract class Block extends Component
|
||||||
|
{
|
||||||
|
abstract protected function title(): string;
|
||||||
|
|
||||||
|
abstract public function render(): string;
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Dashboard\Components;
|
||||||
|
|
||||||
|
use Livewire\Component;
|
||||||
|
use Modules\Dashboard\DashboardFactory;
|
||||||
|
|
||||||
|
class DashboardComponent extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
private array $blocks = [];
|
||||||
|
|
||||||
|
public function mount(DashboardFactory $factory): void
|
||||||
|
{
|
||||||
|
$this->blocks = $factory->load();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render(): string
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<x-page::layout title="Dashboard" menu="dashboard">
|
||||||
|
<div class="gap-6 md:grid-cols-2 xl:grid-cols-4 grid p-6">
|
||||||
|
@foreach($this->blocks as $block)
|
||||||
|
<x-ui::box title="{{$block->title()}}" :second="true">
|
||||||
|
<livewire:dynamic-component is="{{ get_class($block) }}" lazy></livewire:dynamic-component>
|
||||||
|
</x-ui::box>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
</x-page::layout>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Dashboard;
|
||||||
|
|
||||||
|
use Livewire\Livewire;
|
||||||
|
|
||||||
|
class DashboardFactory
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var array<int, class-string<Block>>
|
||||||
|
*/
|
||||||
|
private array $blocks = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array<int, Block>
|
||||||
|
*/
|
||||||
|
public function load(): array
|
||||||
|
{
|
||||||
|
return collect($this->blocks)->map(fn ($block) => app($block))->toArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param class-string<Block> $block
|
||||||
|
*/
|
||||||
|
public function register(string $block): self
|
||||||
|
{
|
||||||
|
$this->blocks[] = $block;
|
||||||
|
|
||||||
|
$componentName = str($block)->replace('\\', '.')->explode('.')->map(fn ($part) => str($part)->lcfirst()->kebab())->implode('.');
|
||||||
|
Livewire::component($componentName, $block);
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function purge(): self
|
||||||
|
{
|
||||||
|
$this->blocks = [];
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Dashboard;
|
||||||
|
|
||||||
|
use Illuminate\Routing\Router;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Modules\Dashboard\Components\DashboardComponent;
|
||||||
|
use Modules\Invoice\MemberPaymentBlock;
|
||||||
|
use Modules\Member\AgeGroupCountBlock;
|
||||||
|
use Modules\Member\TestersBlock;
|
||||||
|
use Modules\Prevention\EfzPendingBlock;
|
||||||
|
use Modules\Prevention\PsPendingBlock;
|
||||||
|
|
||||||
|
class DashboardServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Register services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function register()
|
||||||
|
{
|
||||||
|
app()->singleton(DashboardFactory::class, fn () => new DashboardFactory());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstrap services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function boot()
|
||||||
|
{
|
||||||
|
app(Router::class)->middleware(['web', 'auth:web'])->group(function ($router) {
|
||||||
|
$router->get('/', DashboardComponent::class)->name('home');
|
||||||
|
});
|
||||||
|
|
||||||
|
app(DashboardFactory::class)->register(AgeGroupCountBlock::class);
|
||||||
|
app(DashboardFactory::class)->register(MemberPaymentBlock::class);
|
||||||
|
app(DashboardFactory::class)->register(TestersBlock::class);
|
||||||
|
app(DashboardFactory::class)->register(EfzPendingBlock::class);
|
||||||
|
app(DashboardFactory::class)->register(PsPendingBlock::class);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Dashboard\Tests;
|
||||||
|
|
||||||
|
use Modules\Dashboard\Block;
|
||||||
|
use Modules\Dashboard\Components\DashboardComponent;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
use Modules\Dashboard\DashboardFactory;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
uses(DatabaseTransactions::class);
|
||||||
|
uses(TestCase::class);
|
||||||
|
|
||||||
|
it('renders successfully', function () {
|
||||||
|
$this->login()->loginNami();
|
||||||
|
|
||||||
|
app(DashboardFactory::class)->purge();
|
||||||
|
app(DashboardFactory::class)->register(ExampleBlock::class);
|
||||||
|
|
||||||
|
Livewire::test(DashboardComponent::class)
|
||||||
|
->assertSee('ExampleTitle');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('renders page successfully', function () {
|
||||||
|
$this->login()->loginNami();
|
||||||
|
|
||||||
|
$this->get('/')->assertSeeLivewire(DashboardComponent::class)->assertSee('Dashboard');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('shows member component', function () {
|
||||||
|
$this->login()->loginNami();
|
||||||
|
|
||||||
|
Livewire::test(DashboardComponent::class)
|
||||||
|
->assertSee('Gruppierungs-Verteilung');
|
||||||
|
});
|
||||||
|
|
||||||
|
class ExampleBlock extends Block
|
||||||
|
{
|
||||||
|
|
||||||
|
public function title(): string
|
||||||
|
{
|
||||||
|
return 'ExampleTitle';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render(): string
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div>
|
||||||
|
Example Content
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Invoice\Components;
|
||||||
|
|
||||||
|
use App\Module\Module;
|
||||||
|
use Illuminate\Validation\Rule;
|
||||||
|
use Livewire\Component;
|
||||||
|
use Modules\Invoice\InvoiceSettings;
|
||||||
|
use Modules\Module\ModuleSettings;
|
||||||
|
|
||||||
|
class SettingView extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public $settingClass = InvoiceSettings::class;
|
||||||
|
public InvoiceSettings $settings;
|
||||||
|
|
||||||
|
public function mount(): void
|
||||||
|
{
|
||||||
|
$this->settings = app(InvoiceSettings::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function save(): void
|
||||||
|
{
|
||||||
|
$this->settings->save();
|
||||||
|
$this->dispatch('success', 'Einstellungen gespeichert.');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<x-page::setting-layout :active="$settingClass">
|
||||||
|
<x-slot:right>
|
||||||
|
<x-form::save-button form="billsettingform"></x-form::save-button>
|
||||||
|
</x-slot:right>
|
||||||
|
<form id="billsettingform" class="grow p-6 grid grid-cols-2 gap-3 items-start content-start" wire:submit.prevent="save">
|
||||||
|
<x-form::text name="from" wire:model="settings.from" label="Absender" hint="Absender-Name in Kurzform, i.d.R. der kurze Stammesname"></x-form::text>
|
||||||
|
<x-form::text name="from_long" wire:model="settings.from_long" label="Absender (lang)" hint="Absender-Name in Langform, i.d.R. der Stammesname"></x-form::text>
|
||||||
|
<x-ui::setting-intro class="col-span-full mt-5" title="Kontaktdaten">
|
||||||
|
Hier kannst du deine Zugangsdaten zu NaMi anpassen, falls sich z.B. dein Passwort geändert hat.
|
||||||
|
</x-ui::setting-intro>
|
||||||
|
<x-form::text name="address" wire:model="settings.address" label="Straße"></x-form::text>
|
||||||
|
<x-form::text name="zip" wire:model="settings.zip" label="PLZ"></x-form::text>
|
||||||
|
<x-form::text name="place" wire:model="settings.place" label="Ort"></x-form::text>
|
||||||
|
<x-form::text name="email" wire:model="settings.email" label="E-Mail-Adresse"></x-form::text>
|
||||||
|
<x-form::text name="mobile" wire:model="settings.mobile" label="Telefonnummer"></x-form::text>
|
||||||
|
<x-form::text name="website" wire:model="settings.website" label="Webseite"></x-form::text>
|
||||||
|
<x-form::text name="iban" wire:model="settings.iban" label="IBAN"></x-form::text>
|
||||||
|
<x-form::text name="bic" wire:model="settings.bic" label="BIC"></x-form::text>
|
||||||
|
<x-form::text name="remember_weeks" wire:model="settings.rememberWeeks" type="number" label="Erinnerung alle X Wochen versenden"></x-form::text>
|
||||||
|
</form>
|
||||||
|
</x-page::setting-layout>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Invoice;
|
||||||
|
|
||||||
|
use Illuminate\Routing\Router;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Modules\Invoice\Components\SettingView as ComponentsSettingView;
|
||||||
|
|
||||||
|
class InvoiceServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Register services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function register()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstrap services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function boot()
|
||||||
|
{
|
||||||
|
app(Router::class)->middleware(['web', 'auth:web'])->group(function ($router) {
|
||||||
|
$router->get('/setting/bill', ComponentsSettingView::class)->name('setting.bill');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,72 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Invoice;
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
use Modules\Invoice\Components\SettingView;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
uses(TestCase::class);
|
||||||
|
uses(DatabaseTransactions::class);
|
||||||
|
|
||||||
|
it('it renders page', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
test()->get('/setting/bill')->assertSeeLivewire(SettingView::class);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('it displays settings', function () {
|
||||||
|
$this->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
app(InvoiceSettings::class)->fill([
|
||||||
|
'from_long' => 'DPSG Stamm Muster',
|
||||||
|
'from' => 'Stamm Muster',
|
||||||
|
'mobile' => '+49 176 55555',
|
||||||
|
'email' => 'max@muster.de',
|
||||||
|
'website' => 'https://example.com',
|
||||||
|
'address' => 'Musterstr 4',
|
||||||
|
'place' => 'Solingen',
|
||||||
|
'zip' => '12345',
|
||||||
|
'iban' => 'DE05',
|
||||||
|
'bic' => 'SOLSDE',
|
||||||
|
'rememberWeeks' => 6
|
||||||
|
])->save();
|
||||||
|
|
||||||
|
Livewire::test(SettingView::class)
|
||||||
|
->assertSet('settings.from_long', 'DPSG Stamm Muster')
|
||||||
|
->assertSet('settings.from', 'Stamm Muster')
|
||||||
|
->assertSet('settings.mobile', '+49 176 55555')
|
||||||
|
->assertSet('settings.email', 'max@muster.de')
|
||||||
|
->assertSet('settings.website', 'https://example.com')
|
||||||
|
->assertSet('settings.address', 'Musterstr 4')
|
||||||
|
->assertSet('settings.place', 'Solingen')
|
||||||
|
->assertSet('settings.zip', '12345')
|
||||||
|
->assertSet('settings.iban', 'DE05')
|
||||||
|
->assertSet('settings.bic', 'SOLSDE')
|
||||||
|
->assertSet('settings.rememberWeeks', 6);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('testItCanChangeSettings', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
Livewire::test(SettingView::class)
|
||||||
|
->set('settings.from_long', 'DPSG Stamm Muster')
|
||||||
|
->set('settings.from', 'Stamm Muster')
|
||||||
|
->set('settings.mobile', '+49 176 55555')
|
||||||
|
->set('settings.email', 'max@muster.de')
|
||||||
|
->set('settings.website', 'https://example.com')
|
||||||
|
->set('settings.address', 'Musterstr 4')
|
||||||
|
->set('settings.place', 'Solingen')
|
||||||
|
->set('settings.zip', '12345')
|
||||||
|
->set('settings.iban', 'DE05')
|
||||||
|
->set('settings.bic', 'SOLSDE')
|
||||||
|
->set('settings.rememberWeeks', 10)
|
||||||
|
->call('save')
|
||||||
|
->assertDispatched('success', 'Einstellungen gespeichert.');
|
||||||
|
|
||||||
|
$settings = app(InvoiceSettings::class);
|
||||||
|
$this->assertEquals('DPSG Stamm Muster', $settings->from_long);
|
||||||
|
$this->assertEquals('DE05', $settings->iban);
|
||||||
|
$this->assertEquals('SOLSDE', $settings->bic);
|
||||||
|
$this->assertEquals(10, $settings->rememberWeeks);
|
||||||
|
});
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Invoice;
|
namespace Modules\Invoice;
|
||||||
|
|
||||||
use App\Setting\Contracts\Storeable;
|
use App\Setting\Contracts\Storeable;
|
||||||
use App\Setting\LocalSettings;
|
use App\Setting\LocalSettings;
|
|
@ -0,0 +1,43 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Invoice;
|
||||||
|
|
||||||
|
use Modules\Dashboard\Block;
|
||||||
|
use App\Invoice\Models\InvoicePosition;
|
||||||
|
use App\Member\Member;
|
||||||
|
|
||||||
|
class MemberPaymentBlock extends Block
|
||||||
|
{
|
||||||
|
|
||||||
|
public string $amount = '';
|
||||||
|
public int $members = 0;
|
||||||
|
public int $totalMembers = 0;
|
||||||
|
|
||||||
|
public function mount(): void
|
||||||
|
{
|
||||||
|
$amount = InvoicePosition::whereHas('invoice', fn ($query) => $query->whereNeedsPayment())
|
||||||
|
->selectRaw('sum(price) AS price')
|
||||||
|
->first();
|
||||||
|
|
||||||
|
$this->amount = number_format((int) $amount->price / 100, 2, ',', '.') . ' €';
|
||||||
|
$this->members = Member::whereHasPendingPayment()->count();
|
||||||
|
$this->totalMembers = Member::count();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function title(): string
|
||||||
|
{
|
||||||
|
return 'Ausstehende Mitgliedsbeiträge';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render(): string
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div>
|
||||||
|
<div class="text-gray-100">
|
||||||
|
<span class="text-xl mr-1 font-semibold">{{$amount}}</span>
|
||||||
|
<span class="text-sm">von {{$members}} / {{$totalMembers}} Mitgliedern</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,119 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Mailgateway\Components;
|
||||||
|
|
||||||
|
use Modules\Mailgateway\Models\Mailgateway;
|
||||||
|
use Modules\Mailgateway\Types\Type;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
use Illuminate\Validation\ValidationException;
|
||||||
|
use Livewire\Attributes\On;
|
||||||
|
use Livewire\Attributes\Validate;
|
||||||
|
use Livewire\Component;
|
||||||
|
|
||||||
|
class Form extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public string $name = '';
|
||||||
|
public string $domain = '';
|
||||||
|
public ?Type $type = null;
|
||||||
|
#[Validate('required|string')]
|
||||||
|
public ?string $typeClass = null;
|
||||||
|
public Collection $types;
|
||||||
|
public ?Mailgateway $model = null;
|
||||||
|
|
||||||
|
public function rules()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'name' => 'required|string|max:255',
|
||||||
|
'domain' => 'required|string|max:255',
|
||||||
|
...$this->type ? collect($this->type::rules())->mapWithKeys(fn ($rules, $key) => ["type.{$key}" => $rules]) : [],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function validationAttributes(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'type' => 'Typ',
|
||||||
|
'name' => 'Beschreibung',
|
||||||
|
'domain' => 'Domain',
|
||||||
|
...$this->type ? collect($this->type::fieldNames())->mapWithKeys(fn ($attribute, $key) => ["type.{$key}" => $attribute]) : [],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function mount(?string $id = null): void
|
||||||
|
{
|
||||||
|
$this->types = app('mail-gateways')->map(fn ($gateway) => [
|
||||||
|
'name' => $gateway::name(),
|
||||||
|
'id' => $gateway,
|
||||||
|
]);
|
||||||
|
|
||||||
|
if ($id) {
|
||||||
|
$this->model = Mailgateway::find($id);
|
||||||
|
$this->name = $this->model->name;
|
||||||
|
$this->domain = $this->model->domain;
|
||||||
|
$this->type = $this->model->type;
|
||||||
|
$this->typeClass = get_class($this->model->type);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function fields(): array
|
||||||
|
{
|
||||||
|
return $this->type ? $this->type::fields() : [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function updatedTypeClass(?string $type): void
|
||||||
|
{
|
||||||
|
if (!$type) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->type = $type::from([]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[On('onStoreFromModal')]
|
||||||
|
public function onSave(): void
|
||||||
|
{
|
||||||
|
$this->validate();
|
||||||
|
|
||||||
|
if (!$this->type->works()) {
|
||||||
|
throw ValidationException::withMessages(['connection' => 'Verbindung fehlgeschlagen.']);
|
||||||
|
}
|
||||||
|
|
||||||
|
$payload = [
|
||||||
|
'name' => $this->name,
|
||||||
|
'domain' => $this->domain,
|
||||||
|
'type' => $this->type,
|
||||||
|
];
|
||||||
|
if ($this->model) {
|
||||||
|
$this->model->update($payload);
|
||||||
|
} else {
|
||||||
|
Mailgateway::create($payload);
|
||||||
|
}
|
||||||
|
$this->dispatch('closeModal');
|
||||||
|
$this->dispatch('refresh-page');
|
||||||
|
$this->dispatch('success', 'Erfolgreich gespeichert.');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div>
|
||||||
|
<form class="grid grid-cols-2 gap-3">
|
||||||
|
<x-form::text name="name" wire:model="name" label="Beschreibung" required />
|
||||||
|
<x-form::text name="domain" wire:model="domain" label="Domain" required />
|
||||||
|
<x-form::select name="typeClass" wire:model.live="typeClass" label="Typ" :options="$types" required />
|
||||||
|
@foreach($this->fields() as $index => $field)
|
||||||
|
<x-form::text
|
||||||
|
wire:key="$index"
|
||||||
|
wire:model="type.{{$field['name']}}"
|
||||||
|
:label="$field['label']"
|
||||||
|
:type="$field['type']"
|
||||||
|
:name="'type.'.$field['name']"
|
||||||
|
:required="str_contains('required', $field['validator'])"
|
||||||
|
></x-form::text>
|
||||||
|
@endforeach
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Mailgateway\Components;
|
||||||
|
|
||||||
|
use Modules\Mailgateway\Models\Mailgateway;
|
||||||
|
use Livewire\Component;
|
||||||
|
use Modules\Mailgateway\MailgatewaySettings;
|
||||||
|
|
||||||
|
class SettingView extends Component
|
||||||
|
{
|
||||||
|
public string $settingClass = MailgatewaySettings::class;
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return view('mailgateway::setting-view', [
|
||||||
|
'data' => Mailgateway::get(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
<x-page::setting-layout :active="$settingClass">
|
||||||
|
<x-slot:toolbar>
|
||||||
|
<x-ui::badge wire:click.prevent="$dispatch('openModal', {component: 'modules.mailgateway.components.form', props: {}, title: 'Verbindung erstellen'})" icon="plus">Neue Verbindung</x-ui::badge>
|
||||||
|
</x-slot:toolbar>
|
||||||
|
<div>
|
||||||
|
<x-ui::table>
|
||||||
|
<thead>
|
||||||
|
<th>Bezeichnung</th>
|
||||||
|
<th>Domain</th>
|
||||||
|
<th>Typ</th>
|
||||||
|
<th>Prüfung</th>
|
||||||
|
<th>Aktion</th>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
|
||||||
|
@foreach ($data as $index => $gateway)
|
||||||
|
<tr wire:key="$index">
|
||||||
|
<td>{{ $gateway->name }}</td>
|
||||||
|
<td>{{ $gateway->domain }}</td>
|
||||||
|
<td>{{ $gateway->type::name() }}</td>
|
||||||
|
<td>
|
||||||
|
<x-ui::boolean-display :value="$gateway->type->works()"
|
||||||
|
hint="Verbindungsstatus"
|
||||||
|
right="Verbindung erfolgreich"
|
||||||
|
wrong="Verbindung fehlgeschlagen"
|
||||||
|
></x-ui::boolean-display>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<x-ui::action wire:click="$dispatch('openModal', {
|
||||||
|
component: 'modules.mailgateway.components.form',
|
||||||
|
props: {id: '{{$gateway->id}}'},
|
||||||
|
title: 'Verbindung {{$gateway->name}} bearbeiten'}
|
||||||
|
)" icon="pencil" variant="warning">Bearbeiten</x-ui::action>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
</x-ui::table>
|
||||||
|
</div>
|
||||||
|
</x-page::setting-layout>
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Mailgateway;
|
||||||
|
|
||||||
|
use App\Setting\SettingFactory;
|
||||||
|
use Illuminate\Routing\Router;
|
||||||
|
use Illuminate\Support\Facades\View;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Modules\Mailgateway\Components\SettingView;
|
||||||
|
use Modules\Mailgateway\Types\LocalType;
|
||||||
|
use Modules\Mailgateway\Types\MailmanType;
|
||||||
|
|
||||||
|
class MailgatewayServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Register services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function register()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstrap services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function boot()
|
||||||
|
{
|
||||||
|
app(SettingFactory::class)->register(MailgatewaySettings::class);
|
||||||
|
|
||||||
|
app(Router::class)->middleware(['web', 'auth:web'])->group(function ($router) {
|
||||||
|
$router->get('/setting/mailgateway', SettingView::class)->name('setting.mailgateway');
|
||||||
|
});
|
||||||
|
|
||||||
|
app()->bind('mail-gateways', fn () => collect([
|
||||||
|
LocalType::class,
|
||||||
|
MailmanType::class,
|
||||||
|
]));
|
||||||
|
|
||||||
|
View::addNamespace('mailgateway', __DIR__ . '/Components');
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,9 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Mailgateway;
|
namespace Modules\Mailgateway;
|
||||||
|
|
||||||
use App\Mailgateway\Models\Mailgateway;
|
|
||||||
use App\Mailgateway\Resources\MailgatewayResource;
|
|
||||||
use App\Setting\LocalSettings;
|
use App\Setting\LocalSettings;
|
||||||
|
|
||||||
class MailgatewaySettings extends LocalSettings
|
class MailgatewaySettings extends LocalSettings
|
||||||
|
@ -23,8 +21,6 @@ class MailgatewaySettings extends LocalSettings
|
||||||
*/
|
*/
|
||||||
public function viewData(): array
|
public function viewData(): array
|
||||||
{
|
{
|
||||||
return [
|
return [];
|
||||||
'data' => MailgatewayResource::collection(Mailgateway::paginate(10)),
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,19 +1,21 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Mailgateway\Models;
|
namespace Modules\Mailgateway\Models;
|
||||||
|
|
||||||
use App\Mailgateway\Casts\TypeCast;
|
use Modules\Mailgateway\Types\Type;
|
||||||
use Database\Factories\Mailgateway\Models\MailgatewayFactory;
|
|
||||||
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class Mailgateway extends Model
|
class Mailgateway extends Model
|
||||||
{
|
{
|
||||||
|
|
||||||
|
public static $factory = MailgatewayFactory::class;
|
||||||
|
|
||||||
/** @use HasFactory<MailgatewayFactory> */
|
/** @use HasFactory<MailgatewayFactory> */
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
use HasUuids;
|
use HasUuids;
|
||||||
|
|
||||||
public $casts = ['type' => TypeCast::class];
|
public $casts = ['type' => Type::class];
|
||||||
public $guarded = [];
|
public $guarded = [];
|
||||||
}
|
}
|
|
@ -1,13 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Database\Factories\Mailgateway\Models;
|
namespace Modules\Mailgateway\Models;
|
||||||
|
|
||||||
use App\Mailgateway\Models\Mailgateway;
|
use Modules\Mailgateway\Types\Type;
|
||||||
use App\Mailgateway\Types\Type;
|
use Modules\Mailgateway\Types\LocalType;
|
||||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Mailgateway\Models\Mailgateway>
|
* @extends Factory<Mailgateway>
|
||||||
*/
|
*/
|
||||||
class MailgatewayFactory extends Factory
|
class MailgatewayFactory extends Factory
|
||||||
{
|
{
|
||||||
|
@ -22,24 +22,14 @@ class MailgatewayFactory extends Factory
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'name' => $this->faker->words(5, true),
|
'name' => $this->faker->words(5, true),
|
||||||
'type' => [
|
'type' => new LocalType(),
|
||||||
'cls' => app('mail-gateways')->random(),
|
|
||||||
'params' => [],
|
|
||||||
],
|
|
||||||
'domain' => $this->faker->safeEmailDomain(),
|
'domain' => $this->faker->safeEmailDomain(),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public function type(Type $type): self
|
||||||
* @param class-string<Type> $type
|
|
||||||
* @param array<string, mixed> $params
|
|
||||||
*/
|
|
||||||
public function type(string $type, array $params): self
|
|
||||||
{
|
{
|
||||||
return $this->state(['type' => [
|
return $this->state(['type' => $type]);
|
||||||
'cls' => $type,
|
|
||||||
'params' => $params,
|
|
||||||
]]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function name(string $name): self
|
public function name(string $name): self
|
|
@ -0,0 +1,38 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Mailgateway\Tests;
|
||||||
|
|
||||||
|
use Modules\Mailgateway\Models\Mailgateway;
|
||||||
|
use Modules\Mailgateway\Types\LocalType;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
use Modules\Mailgateway\Components\SettingView;
|
||||||
|
use Tests\RequestFactories\MailmanTypeRequest;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
uses(DatabaseTransactions::class);
|
||||||
|
uses(TestCase::class);
|
||||||
|
|
||||||
|
it('test it can view index page', function () {
|
||||||
|
test()->login()->loginNami();
|
||||||
|
test()->get('/setting/mailgateway')->assertSeeLivewire(SettingView::class);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test it displays local gateways', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
Mailgateway::factory()->type(LocalType::from([]))->name('Lore')->domain('example.com')->create();
|
||||||
|
|
||||||
|
Livewire::test(SettingView::class)
|
||||||
|
->assertSeeHtml('example.com')
|
||||||
|
->assertSeeHtml('Lore')
|
||||||
|
->assertSeeHtml('Lokal')
|
||||||
|
->assertSeeHtml('Verbindung erfolgreich');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('displays mailman gateways', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
$typeParams = MailmanTypeRequest::new()->succeeds()->state(['url' => 'https://mailman.example.com', 'user' => 'user', 'password' => 'password', 'owner' => 'owner']);
|
||||||
|
Mailgateway::factory()->type($typeParams->toData())->create();
|
||||||
|
|
||||||
|
Livewire::test(SettingView::class)->assertSeeHtml('Verbindung erfolgreich');
|
||||||
|
});
|
|
@ -0,0 +1,122 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Mailgateway\Tests;
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
use Modules\Mailgateway\Components\Form;
|
||||||
|
use Modules\Mailgateway\Types\LocalType;
|
||||||
|
use Modules\Mailgateway\Types\MailmanType;
|
||||||
|
use Tests\RequestFactories\MailmanTypeRequest;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
uses(DatabaseTransactions::class);
|
||||||
|
uses(TestCase::class);
|
||||||
|
|
||||||
|
it('test it saves a mail gateway', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
Livewire::test(Form::class)
|
||||||
|
->set('typeClass', LocalType::class)
|
||||||
|
->set('name', 'lala')
|
||||||
|
->set('domain', 'example.com')
|
||||||
|
->call('onSave')
|
||||||
|
->assertHasNoErrors()
|
||||||
|
->assertDispatched('closeModal')
|
||||||
|
->assertDispatched('refresh-page')
|
||||||
|
->assertDispatched('success');
|
||||||
|
|
||||||
|
test()->assertDatabaseHas('mailgateways', [
|
||||||
|
'domain' => 'example.com',
|
||||||
|
'name' => 'lala',
|
||||||
|
'type' => json_encode([
|
||||||
|
'type' => LocalType::class,
|
||||||
|
'data' => [],
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test it validates mail gateway', function (array $attributes, array $errors) {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
Livewire::test(Form::class)
|
||||||
|
->set('name', 'lala')
|
||||||
|
->set('domain', 'example.com')
|
||||||
|
->set('typeClass', LocalType::class)
|
||||||
|
->setArray($attributes)
|
||||||
|
->call('onSave')
|
||||||
|
->assertHasErrors($errors)
|
||||||
|
->assertNotDispatched('closeModal')
|
||||||
|
->assertNotDispatched('refresh-page')
|
||||||
|
->assertNotDispatched('success');
|
||||||
|
})->with([
|
||||||
|
[['name' => ''], ['name' => 'required']],
|
||||||
|
[['domain' => ''], ['domain' => 'required']],
|
||||||
|
[['typeClass' => ''], ['typeClass' => 'required']],
|
||||||
|
]);
|
||||||
|
|
||||||
|
it('test it validates mailman type', function (array $attributes, array $errors) {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
Livewire::test(Form::class)
|
||||||
|
->set('name', 'lala')
|
||||||
|
->set('domain', 'example.com')
|
||||||
|
->set('typeClass', MailmanType::class)
|
||||||
|
->set('type.url', 'exampl.com')
|
||||||
|
->set('type.user', '::user::')
|
||||||
|
->set('type.password', 'password')
|
||||||
|
->setArray($attributes)
|
||||||
|
->call('onSave')
|
||||||
|
->assertHasErrors($errors)
|
||||||
|
->assertNotDispatched('closeModal');
|
||||||
|
})->with([
|
||||||
|
[['type.url' => ''], ['type.url' => 'required']],
|
||||||
|
[['type.user' => ''], ['type.user' => 'required']],
|
||||||
|
[['type.password' => ''], ['type.password' => 'required']],
|
||||||
|
[['type.owner' => ''], ['type.owner' => 'required']],
|
||||||
|
[['type.owner' => 'aaa'], ['type.owner' => 'email']],
|
||||||
|
]);
|
||||||
|
|
||||||
|
it('test it stores mailman gateway', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
$typeParams = MailmanTypeRequest::new()->succeeds()->create(['url' => 'https://example.com', 'user' => 'user', 'password' => 'secret', 'owner' => 'owner@example.com']);
|
||||||
|
|
||||||
|
Livewire::test(Form::class)
|
||||||
|
->setArray([
|
||||||
|
'name' => 'lala',
|
||||||
|
'domain' => 'https://example.com',
|
||||||
|
'typeClass' => MailmanType::class,
|
||||||
|
])
|
||||||
|
->setArray('type', $typeParams)
|
||||||
|
->call('onSave')
|
||||||
|
->assertDispatched('closeModal');
|
||||||
|
|
||||||
|
test()->assertDatabaseHas('mailgateways', [
|
||||||
|
'type' => json_encode([
|
||||||
|
'type' => MailmanType::class,
|
||||||
|
'data' => $typeParams,
|
||||||
|
]),
|
||||||
|
'name' => 'lala',
|
||||||
|
'domain' => 'https://example.com',
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test it checks mailman connection', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
$typeParams = MailmanTypeRequest::new()->fails()->create(['url' => 'https://example.com', 'user' => 'user', 'password' => 'secret', 'owner' => 'owner@example.com']);
|
||||||
|
|
||||||
|
Livewire::test(Form::class)
|
||||||
|
->setArray([
|
||||||
|
'name' => 'lala',
|
||||||
|
'domain' => 'https://example.com',
|
||||||
|
'typeClass' => MailmanType::class,
|
||||||
|
])
|
||||||
|
->setArray('type', $typeParams)
|
||||||
|
->call('onSave')
|
||||||
|
->assertHasErrors('connection')
|
||||||
|
->assertNotDispatched('closeModal');
|
||||||
|
|
||||||
|
test()->assertDatabaseCount('mailgateways', 0);
|
||||||
|
});
|
|
@ -0,0 +1,111 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Mailgateway\Tests;
|
||||||
|
|
||||||
|
use Modules\Mailgateway\Models\Mailgateway;
|
||||||
|
use Modules\Mailgateway\Types\LocalType;
|
||||||
|
use Modules\Mailgateway\Types\MailmanType;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
use Modules\Mailgateway\Components\Form;
|
||||||
|
use Tests\RequestFactories\MailmanTypeRequest;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
uses(DatabaseTransactions::class);
|
||||||
|
uses(TestCase::class);
|
||||||
|
|
||||||
|
it('test it sets attributes for mailman', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
$typeParams = MailmanTypeRequest::new()->state(['url' => 'https://mailman.example.com', 'user' => 'user', 'password' => 'password', 'owner' => 'owner']);
|
||||||
|
$mailgateway = Mailgateway::factory()->type($typeParams->toData())->create(['name' => '::name::', 'domain' => 'example.com']);
|
||||||
|
|
||||||
|
Livewire::test(Form::class, ['id' => $mailgateway->id])
|
||||||
|
->assertSet('model', fn ($m) => $m->is($mailgateway))
|
||||||
|
->assertSet('name', '::name::')
|
||||||
|
->assertSet('domain', 'example.com')
|
||||||
|
->assertSet(
|
||||||
|
'type',
|
||||||
|
fn ($type) => $type instanceof MailmanType
|
||||||
|
&& $type->url === 'https://mailman.example.com'
|
||||||
|
&& $type->user === 'user' &&
|
||||||
|
$type->password === 'password'
|
||||||
|
&& $type->owner === 'owner'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test it sets attributes for local', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
$mailgateway = Mailgateway::factory()->create(['name' => '::name::', 'domain' => 'example.com']);
|
||||||
|
|
||||||
|
Livewire::test(Form::class, ['id' => $mailgateway->id])
|
||||||
|
->assertSet('name', '::name::')
|
||||||
|
->assertSet('domain', 'example.com')
|
||||||
|
->assertSet('type', fn ($type) => $type instanceof LocalType);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test it validates type', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
$mailgateway = Mailgateway::factory()->create(['name' => '::name::', 'domain' => 'example.com']);
|
||||||
|
|
||||||
|
Livewire::test(Form::class, ['id' => $mailgateway->id])
|
||||||
|
->set('typeClass', '')
|
||||||
|
->assertHasErrors(['typeClass' => 'required']);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test it updates a mailman gateway without updating password', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
$typeParams = MailmanTypeRequest::new()
|
||||||
|
->succeeds()
|
||||||
|
->state(['url' => 'https://mailman.example.com', 'user' => 'user', 'password' => 'password', 'owner' => 'owner@example.com'])
|
||||||
|
->toData();
|
||||||
|
$mailgateway = Mailgateway::factory()->type($typeParams)->create(['name' => '::name::', 'domain' => 'example.com']);
|
||||||
|
|
||||||
|
Livewire::test(Form::class, ['id' => $mailgateway->id])
|
||||||
|
->set('name', '::newname::')
|
||||||
|
->call('onSave')
|
||||||
|
->assertHasNoErrors()
|
||||||
|
->assertDispatched('closeModal')
|
||||||
|
->assertDispatched('refresh-page')
|
||||||
|
->assertDispatched('success');
|
||||||
|
|
||||||
|
$this->assertDatabaseCount('mailgateways', 1);
|
||||||
|
$this->assertDatabaseHas('mailgateways', [
|
||||||
|
'name' => '::newname::',
|
||||||
|
'type' => json_encode(['type' => MailmanType::class, 'data' => $typeParams]),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test it updates a mailman gateway with password', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
$typeParams = MailmanTypeRequest::new()->state(['url' => 'https://mailman.example.com', 'user' => 'user', 'password' => 'password', 'owner' => 'owner@example.com']);
|
||||||
|
$newTypeParams = MailmanTypeRequest::new()->succeeds()->create(['url' => 'https://mailman.example.com', 'user' => 'newuser', 'password' => 'password', 'owner' => 'owner@example.com']);
|
||||||
|
$mailgateway = Mailgateway::factory()->type($typeParams->toData())->create();
|
||||||
|
|
||||||
|
Livewire::test(Form::class, ['id' => $mailgateway->id])
|
||||||
|
->set('type.user', 'newuser')
|
||||||
|
->call('onSave')
|
||||||
|
->assertHasNoErrors();
|
||||||
|
|
||||||
|
$this->assertDatabaseCount('mailgateways', 1);
|
||||||
|
$this->assertDatabaseHas('mailgateways', [
|
||||||
|
'type' => json_encode(['type' => MailmanType::class, 'data' => $newTypeParams]),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test it checks mailgateway connection when updating', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
$typeParams = MailmanTypeRequest::new()->state(['url' => 'https://mailman.example.com', 'user' => 'user', 'password' => 'password', 'owner' => 'owner@example.com']);
|
||||||
|
MailmanTypeRequest::new()->fails()->create(['url' => 'https://mailman.example.com', 'user' => 'newuser', 'password' => 'password', 'owner' => 'owner@example.com']);
|
||||||
|
$mailgateway = Mailgateway::factory()->type($typeParams->toData())->create();
|
||||||
|
|
||||||
|
Livewire::test(Form::class, ['id' => $mailgateway->id])
|
||||||
|
->set('type.user', 'newuser')
|
||||||
|
->call('onSave')
|
||||||
|
->assertHasErrors('connection');
|
||||||
|
});
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Mailgateway\Types;
|
namespace Modules\Mailgateway\Types;
|
||||||
|
|
||||||
use App\Maildispatcher\Data\MailEntry;
|
use App\Maildispatcher\Data\MailEntry;
|
||||||
use App\Maildispatcher\Models\Localmaildispatcher;
|
use App\Maildispatcher\Models\Localmaildispatcher;
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Mailgateway\Types;
|
namespace Modules\Mailgateway\Types;
|
||||||
|
|
||||||
use App\Maildispatcher\Data\MailEntry;
|
use App\Maildispatcher\Data\MailEntry;
|
||||||
use App\Mailman\Data\MailingList;
|
use App\Mailman\Data\MailingList;
|
||||||
|
@ -45,32 +45,28 @@ class MailmanType extends Type
|
||||||
'name' => 'url',
|
'name' => 'url',
|
||||||
'label' => 'URL',
|
'label' => 'URL',
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'storeValidator' => 'required|max:255',
|
'validator' => 'required|max:255',
|
||||||
'updateValidator' => 'required|max:255',
|
|
||||||
'default' => '',
|
'default' => '',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'name' => 'user',
|
'name' => 'user',
|
||||||
'label' => 'Benutzer',
|
'label' => 'Benutzer',
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'storeValidator' => 'required|max:255',
|
'validator' => 'required|max:255',
|
||||||
'updateValidator' => 'required|max:255',
|
|
||||||
'default' => '',
|
'default' => '',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'name' => 'password',
|
'name' => 'password',
|
||||||
'label' => 'Passwort',
|
'label' => 'Passwort',
|
||||||
'type' => 'password',
|
'type' => 'password',
|
||||||
'storeValidator' => 'required|max:255',
|
'validator' => 'required|max:255',
|
||||||
'updateValidator' => 'nullable|max:255',
|
|
||||||
'default' => '',
|
'default' => '',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'name' => 'owner',
|
'name' => 'owner',
|
||||||
'label' => 'E-Mail-Adresse des Eigentümers',
|
'label' => 'E-Mail-Adresse des Eigentümers',
|
||||||
'type' => 'email',
|
'type' => 'email',
|
||||||
'storeValidator' => 'required|email|max:255',
|
'validator' => 'required|email|max:255',
|
||||||
'updateValidator' => 'required|email|max:255',
|
|
||||||
'default' => '',
|
'default' => '',
|
||||||
],
|
],
|
||||||
];
|
];
|
|
@ -1,12 +1,18 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Mailgateway\Types;
|
namespace Modules\Mailgateway\Types;
|
||||||
|
|
||||||
use App\Maildispatcher\Data\MailEntry;
|
use App\Maildispatcher\Data\MailEntry;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
|
use Livewire\Wireable;
|
||||||
|
use Spatie\LaravelData\Concerns\WireableData;
|
||||||
|
use Spatie\LaravelData\Data;
|
||||||
|
|
||||||
abstract class Type
|
abstract class Type extends Data implements Wireable
|
||||||
{
|
{
|
||||||
|
|
||||||
|
use WireableData;
|
||||||
|
|
||||||
abstract public static function name(): string;
|
abstract public static function name(): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -60,24 +66,13 @@ abstract class Type
|
||||||
/**
|
/**
|
||||||
* @return array<string, mixed>
|
* @return array<string, mixed>
|
||||||
*/
|
*/
|
||||||
public static function rules(string $validator): array
|
public static function rules(): array
|
||||||
{
|
{
|
||||||
return collect(static::fields())->mapWithKeys(fn ($field) => [
|
return collect(static::fields())->mapWithKeys(fn ($field) => [
|
||||||
$field['name'] => $field[$validator],
|
$field['name'] => $field['validator'],
|
||||||
])->toArray();
|
])->toArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array<string, array<string, mixed>>
|
|
||||||
*/
|
|
||||||
public function toResource(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'cls' => get_class($this),
|
|
||||||
'params' => get_object_vars($this),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Collection<int, MailEntry> $results
|
* @param Collection<int, MailEntry> $results
|
||||||
*/
|
*/
|
||||||
|
@ -93,8 +88,8 @@ abstract class Type
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->list($name, $domain)
|
$this->list($name, $domain)
|
||||||
->filter(fn ($listEntry) => $results->doesntContain(fn ($r) => $r->is($listEntry)))
|
->filter(fn ($listEntry) => $results->doesntContain(fn ($r) => $r->is($listEntry)))
|
||||||
->each(fn ($listEntry) => $this->remove($name, $domain, $listEntry->email));
|
->each(fn ($listEntry) => $this->remove($name, $domain, $listEntry->email));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
|
@ -0,0 +1,81 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Member;
|
||||||
|
|
||||||
|
use Modules\Dashboard\Block;
|
||||||
|
use App\Member\Membership;
|
||||||
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
|
|
||||||
|
class AgeGroupCountBlock extends Block
|
||||||
|
{
|
||||||
|
|
||||||
|
public $groups;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Builder<Membership>
|
||||||
|
*/
|
||||||
|
protected function memberQuery(): Builder
|
||||||
|
{
|
||||||
|
return Membership::select('subactivities.slug', 'subactivities.name')
|
||||||
|
->selectRaw('COUNT(member_id) AS count')
|
||||||
|
->join('activities', 'memberships.activity_id', 'activities.id')
|
||||||
|
->join('subactivities', 'memberships.subactivity_id', 'subactivities.id')
|
||||||
|
->isAgeGroup()
|
||||||
|
->isMember()
|
||||||
|
->active()
|
||||||
|
->groupBy('subactivities.slug', 'subactivities.name')
|
||||||
|
->orderBy('subactivity_id');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Builder<Membership>
|
||||||
|
*/
|
||||||
|
protected function leaderQuery(): Builder
|
||||||
|
{
|
||||||
|
return Membership::selectRaw('"leiter" AS slug, "Leiter" AS name, COUNT(member_id) AS count')
|
||||||
|
->join('activities', 'memberships.activity_id', 'activities.id')
|
||||||
|
->join('subactivities', 'memberships.subactivity_id', 'subactivities.id')
|
||||||
|
->active()
|
||||||
|
->isLeader();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function mount(): void
|
||||||
|
{
|
||||||
|
$this->groups = [
|
||||||
|
...$this->memberQuery()->get(),
|
||||||
|
...$this->leaderQuery()->get(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function title(): string
|
||||||
|
{
|
||||||
|
return 'Gruppierungs-Verteilung';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function groupColor(string $slug): string
|
||||||
|
{
|
||||||
|
return data_get([
|
||||||
|
'biber' => 'text-biber',
|
||||||
|
'woelfling' => 'text-woelfling',
|
||||||
|
'jungpfadfinder' => 'text-jungpfadfinder',
|
||||||
|
'pfadfinder' => 'text-pfadfinder',
|
||||||
|
'rover' => 'text-rover',
|
||||||
|
'leiter' => 'text-leiter',
|
||||||
|
], $slug);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render(): string
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div>
|
||||||
|
@foreach($groups as $group)
|
||||||
|
<div class="flex mt-2 items-center leading-none text-gray-100">
|
||||||
|
<x-ui::sprite class="w-4 h-4 mr-2 {{ $this->groupColor($group->slug) }}" src="lilie"></x-ui::sprite>
|
||||||
|
<span class="grow">{{$group->name}}</span>
|
||||||
|
<span>{{$group->count}}</span>
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,46 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Member;
|
||||||
|
|
||||||
|
use Modules\Dashboard\Block;
|
||||||
|
use App\Member\Member;
|
||||||
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
|
use Illuminate\Database\Eloquent\Collection;
|
||||||
|
|
||||||
|
class TestersBlock extends Block
|
||||||
|
{
|
||||||
|
|
||||||
|
private $months = 8;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var Collection<Member>
|
||||||
|
*/
|
||||||
|
public Collection $members;
|
||||||
|
|
||||||
|
public function mount(): void
|
||||||
|
{
|
||||||
|
$this->members = Member::whereHas('memberships', fn ($q) => $q->isTrying())
|
||||||
|
->with('memberships', fn ($q) => $q->isTrying())
|
||||||
|
->get();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function title(): string
|
||||||
|
{
|
||||||
|
return 'Endende Schhnupperzeiten';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render(): string
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<div>
|
||||||
|
@foreach($members as $member)
|
||||||
|
<div class="flex mt-2 items-center leading-none text-gray-100">
|
||||||
|
<span class="grow">{{ $member->fullname }}</span>
|
||||||
|
<span class="mr-2 text-sm tex-gray-600">{{ $member->memberships->first()->from->addWeeks($this->months)->format('d.m.Y') }}</span>
|
||||||
|
<span class="text-xs tex-gray-600">{{ $member->memberships->first()->from->addWeeks($this->months)->diffForHumans() }}</span>
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,56 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Module\Components;
|
||||||
|
|
||||||
|
use App\Module\Module;
|
||||||
|
use Illuminate\Validation\Rule;
|
||||||
|
use Livewire\Component;
|
||||||
|
use Modules\Module\ModuleSettings;
|
||||||
|
|
||||||
|
class SettingView extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public array $modules;
|
||||||
|
public array $all;
|
||||||
|
public $settingClass = ModuleSettings::class;
|
||||||
|
|
||||||
|
public function rules(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'modules' => 'present|array',
|
||||||
|
'modules.*' => ['string', Rule::in(Module::values())],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function mount(): void
|
||||||
|
{
|
||||||
|
$this->modules = app(ModuleSettings::class)->modules;
|
||||||
|
$this->all = Module::forSelect();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function save(): void
|
||||||
|
{
|
||||||
|
app(ModuleSettings::class)->fill($this->validate())->save();
|
||||||
|
$this->dispatch('success', 'Einstellungen gespeichert.');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<x-page::setting-layout :active="$settingClass">
|
||||||
|
<x-slot:right>
|
||||||
|
<x-form::save-button form="modulesettingform"></x-form::save-button>
|
||||||
|
</x-slot:right>
|
||||||
|
<form id="modulesettingform" class="grow p-6 grid grid-cols-2 gap-3 items-start content-start"
|
||||||
|
wire:submit.prevent="save">
|
||||||
|
<x-ui::setting-intro class="col-span-full">
|
||||||
|
Hier kannst du Funktionen innerhalb von Adrema (Module) aktivieren oder deaktivieren und so den Funktionsumfang auf deine Bedürfnisse anpassen.
|
||||||
|
</x-ui::setting-intro>
|
||||||
|
@foreach ($all as $module)
|
||||||
|
<x-form::lever wire:model="modules" hint="lala" :value="$module['id']" name="modules" size="sm" :label="$module['name']"></x-form::lever>
|
||||||
|
@endforeach
|
||||||
|
</form>
|
||||||
|
</x-page::setting-layout>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Module;
|
||||||
|
|
||||||
|
use Illuminate\Routing\Router;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Modules\Module\Components\SettingView;
|
||||||
|
|
||||||
|
class ModuleServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Register services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function register()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstrap services.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function boot()
|
||||||
|
{
|
||||||
|
app(Router::class)->middleware(['web', 'auth:web'])->group(function ($router) {
|
||||||
|
$router->get('/setting/module', SettingView::class)->name('setting.module');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,51 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Module;
|
||||||
|
|
||||||
|
use App\View\Setting;
|
||||||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||||
|
use Livewire\Livewire;
|
||||||
|
use Modules\Module\Components\SettingView;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
uses(TestCase::class);
|
||||||
|
uses(DatabaseTransactions::class);
|
||||||
|
|
||||||
|
it('it renders page', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
|
||||||
|
test()->get('/setting/module')->assertSeeLivewire(SettingView::class);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('it displays acive modules', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
app(ModuleSettings::class)->fill(['modules' => ['bill']])->save();
|
||||||
|
|
||||||
|
Livewire::test(SettingView::class)
|
||||||
|
->assertSee('Module')
|
||||||
|
->assertSee('Ausbildung')
|
||||||
|
->assertSet('modules', fn ($modules) => $modules === ['bill'])
|
||||||
|
->assertSeeHtml('data-active');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('it saves modules', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
app(ModuleSettings::class)->fill(['modules' => ['bill']])->save();
|
||||||
|
|
||||||
|
Livewire::test(SettingView::class)
|
||||||
|
->set('modules', ['bill', 'course'])
|
||||||
|
->call('save')
|
||||||
|
->assertDispatched('success', 'Einstellungen gespeichert.');
|
||||||
|
|
||||||
|
test()->assertEquals(['bill', 'course'], app(ModuleSettings::class)->modules);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('test module must exist', function () {
|
||||||
|
test()->withoutExceptionHandling()->login()->loginNami();
|
||||||
|
app(ModuleSettings::class)->fill(['modules' => ['bill']])->save();
|
||||||
|
|
||||||
|
Livewire::test(SettingView::class)
|
||||||
|
->set('modules', ['bill', 'lala'])
|
||||||
|
->call('save')
|
||||||
|
->assertHasErrors('modules.1');
|
||||||
|
});
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Module;
|
namespace Modules\Module;
|
||||||
|
|
||||||
use App\Setting\Contracts\Storeable;
|
use App\Setting\Contracts\Storeable;
|
||||||
use App\Setting\LocalSettings;
|
use App\Setting\LocalSettings;
|
|
@ -0,0 +1,62 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Modules\Nami\Components;
|
||||||
|
|
||||||
|
use App\Initialize\Actions\NamiLoginCheckAction;
|
||||||
|
use App\Setting\NamiSettings;
|
||||||
|
use Illuminate\Validation\ValidationException;
|
||||||
|
use Livewire\Attributes\Validate;
|
||||||
|
use Livewire\Component;
|
||||||
|
use Zoomyboy\LaravelNami\LoginException;
|
||||||
|
|
||||||
|
class SettingView extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
public $settingClass = NamiSettings::class;
|
||||||
|
|
||||||
|
#[Validate('required|string')]
|
||||||
|
public string $password = '';
|
||||||
|
#[Validate('required|string')]
|
||||||
|
public string $mglnr = '';
|
||||||
|
#[Validate('required|string')]
|
||||||
|
public string $default_group_id = '';
|
||||||
|
|
||||||
|
public function mount(): void
|
||||||
|
{
|
||||||
|
$this->mglnr = app(NamiSettings::class)->mglnr;
|
||||||
|
$this->default_group_id = app(NamiSettings::class)->default_group_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function save(): void
|
||||||
|
{
|
||||||
|
$validated = $this->validate();
|
||||||
|
try {
|
||||||
|
NamiLoginCheckAction::run($this->only(['mglnr', 'password']));
|
||||||
|
app(NamiSettings::class)->fill($validated)->save();
|
||||||
|
$this->dispatch('success', 'Einstellungen gespeichert.');
|
||||||
|
} catch (LoginException $e) {
|
||||||
|
throw ValidationException::withMessages([
|
||||||
|
'mglnr' => 'Login fehlgeschlagen.',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function render()
|
||||||
|
{
|
||||||
|
return <<<'HTML'
|
||||||
|
<x-page::setting-layout :active="$settingClass">
|
||||||
|
<x-slot:right>
|
||||||
|
<x-form::save-button form="namisettingform"></x-form::save-button>
|
||||||
|
</x-slot:right>
|
||||||
|
<form id="namisettingform" class="grow p-6 grid grid-cols-2 gap-3 items-start content-start" wire:submit.prevent="save">
|
||||||
|
<x-ui::setting-intro class="col-span-full">
|
||||||
|
Hier kannst du deine Zugangsdaten zu NaMi anpassen, falls sich z.B. dein Passwort geändert hat.
|
||||||
|
</x-ui::setting-intro>
|
||||||
|
<x-form::text name="mglnr" wire:model="mglnr" label="Mitgliedsnummer"></x-form::text>
|
||||||
|
<x-form::text name="default_group_id" wire:model="default_group_id" label="Standard-Gruppierung"></x-form::text>
|
||||||
|
<x-form::text name="password" wire:model="password" label="Passwort" name="password" type="password"></x-form::text>
|
||||||
|
</form>
|
||||||
|
</x-page::setting-layout>
|
||||||
|
HTML;
|
||||||
|
}
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue