mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-06-22 22:50:24 +00:00
d242933410
- Upgraded multiple packages, including `brick/math`, `guzzlehttp/guzzle`, `laravel/framework`, `spatie/image`, and more. - Ensured compatibility with project requirements by verifying dependency interrelations.
1302 lines
63 KiB
PHP
1302 lines
63 KiB
PHP
<?php
|
|
|
|
use App\Livewire\Forms\ApplicationForm;
|
|
use App\Livewire\Forms\ProfileForm;
|
|
use App\Models\EinundzwanzigPleb;
|
|
use App\Models\PaymentEvent;
|
|
use App\Support\NostrAuth;
|
|
use App\Traits\NostrFetcherTrait;
|
|
use Carbon\Carbon;
|
|
use Flux\Flux;
|
|
use Illuminate\Database\UniqueConstraintViolationException;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Str;
|
|
use Livewire\Attributes\Locked;
|
|
use Livewire\Component;
|
|
use swentel\nostr\Event\Event as NostrEvent;
|
|
use swentel\nostr\Filter\Filter;
|
|
use swentel\nostr\Message\EventMessage;
|
|
use swentel\nostr\Message\RequestMessage;
|
|
use swentel\nostr\Relay\Relay;
|
|
use swentel\nostr\Relay\RelaySet;
|
|
use swentel\nostr\Request\Request;
|
|
use swentel\nostr\Sign\Sign;
|
|
use swentel\nostr\Subscription\Subscription;
|
|
|
|
new class extends Component {
|
|
use NostrFetcherTrait;
|
|
|
|
public ApplicationForm $form;
|
|
|
|
public ProfileForm $profileForm;
|
|
|
|
public bool $no = false;
|
|
|
|
public bool $showEmail = true;
|
|
|
|
public string $fax = '';
|
|
|
|
#[Locked]
|
|
public bool $nip05Verified = false;
|
|
|
|
#[Locked]
|
|
public ?string $nip05VerifiedHandle = null;
|
|
|
|
#[Locked]
|
|
public bool $nip05HandleMismatch = false;
|
|
|
|
#[Locked]
|
|
public array $nip05VerifiedHandles = [];
|
|
|
|
#[Locked]
|
|
public array $yearsPaid = [];
|
|
|
|
#[Locked]
|
|
public array $events = [];
|
|
|
|
#[Locked]
|
|
public $payments;
|
|
|
|
#[Locked]
|
|
public ?string $invoiceStatus = null;
|
|
|
|
#[Locked]
|
|
public ?string $invoiceStatusLabel = null;
|
|
|
|
#[Locked]
|
|
public ?string $invoiceStatusMessage = null;
|
|
|
|
#[Locked]
|
|
public string $invoiceStatusVariant = 'info';
|
|
|
|
#[Locked]
|
|
public ?string $invoiceExpiresAt = null;
|
|
|
|
#[Locked]
|
|
public ?string $invoiceExpiresAtDisplay = null;
|
|
|
|
#[Locked]
|
|
public ?string $invoiceExpiresIn = null;
|
|
|
|
#[Locked]
|
|
public int $amountToPay = 21000;
|
|
|
|
#[Locked]
|
|
public bool $currentYearIsPaid = false;
|
|
|
|
#[Locked]
|
|
public ?string $currentPubkey = null;
|
|
|
|
#[Locked]
|
|
public ?EinundzwanzigPleb $currentPleb = null;
|
|
|
|
#[Locked]
|
|
public ?string $qrCode = null;
|
|
|
|
protected $listeners = [
|
|
'nostrLoggedIn' => 'handleNostrLoggedIn',
|
|
'nostrLoggedOut' => 'handleNostrLoggedOut',
|
|
];
|
|
|
|
public function mount(): void
|
|
{
|
|
if (!NostrAuth::check()) {
|
|
return;
|
|
}
|
|
|
|
$this->currentPubkey = NostrAuth::pubkey();
|
|
$this->currentPleb = EinundzwanzigPleb::query()
|
|
->with([
|
|
'paymentEvents' => fn($query) => $query->where('year', date('Y')),
|
|
'profile',
|
|
])
|
|
->where('pubkey', $this->currentPubkey)->first();
|
|
|
|
if (!$this->currentPleb) {
|
|
return;
|
|
}
|
|
|
|
$this->profileForm->setPleb($this->currentPleb);
|
|
$this->form->setPleb($this->currentPleb);
|
|
|
|
if ($this->currentPleb->nip05_handle) {
|
|
$this->nip05VerifiedHandles = $this->getNip05HandlesForPubkey($this->currentPubkey);
|
|
|
|
if (count($this->nip05VerifiedHandles) > 0) {
|
|
$this->nip05Verified = true;
|
|
$this->nip05VerifiedHandle = $this->nip05VerifiedHandles[0];
|
|
|
|
if (!in_array($this->profileForm->nip05Handle, $this->nip05VerifiedHandles, true)) {
|
|
$this->nip05HandleMismatch = true;
|
|
}
|
|
}
|
|
}
|
|
$this->no = $this->currentPleb->no_email;
|
|
$this->showEmail = !$this->no;
|
|
$this->amountToPay = config('app.env') === 'production' ? 21000 : 1;
|
|
$this->resolveCurrentPaymentEvent();
|
|
$this->loadEvents();
|
|
$this->listenForPayment();
|
|
}
|
|
|
|
public function updatedNo(): void
|
|
{
|
|
$this->showEmail = !$this->no;
|
|
$this->currentPleb->update([
|
|
'no_email' => $this->no,
|
|
]);
|
|
}
|
|
|
|
public function updatingFax(mixed $value): void
|
|
{
|
|
if (! is_string($value)) {
|
|
$this->skipRender();
|
|
|
|
abort(422);
|
|
}
|
|
}
|
|
|
|
public function updatedFax(): void
|
|
{
|
|
$this->js('alert("Markus Turm wird sich per Fax melden!")');
|
|
}
|
|
|
|
public function updatedProfileFormNip05Handle(): void
|
|
{
|
|
$this->profileForm->nip05Handle = strtolower($this->profileForm->nip05Handle);
|
|
}
|
|
|
|
public function handleNostrLoggedIn($signedEvent = null): void
|
|
{
|
|
$pubkey = NostrAuth::loginWithSignedEvent($signedEvent);
|
|
|
|
$this->currentPubkey = $pubkey;
|
|
$this->currentPleb = EinundzwanzigPleb::query()
|
|
->with([
|
|
'paymentEvents' => fn($query) => $query->where('year', date('Y')),
|
|
'profile',
|
|
])
|
|
->where('pubkey', $pubkey)->first();
|
|
|
|
if (!$this->currentPleb) {
|
|
return;
|
|
}
|
|
|
|
$this->profileForm->setPleb($this->currentPleb);
|
|
$this->form->setPleb($this->currentPleb);
|
|
$this->no = $this->currentPleb->no_email;
|
|
$this->showEmail = !$this->no;
|
|
|
|
if ($this->currentPleb->nip05_handle) {
|
|
$this->nip05VerifiedHandles = $this->getNip05HandlesForPubkey($this->currentPubkey);
|
|
|
|
if (count($this->nip05VerifiedHandles) > 0) {
|
|
$this->nip05Verified = true;
|
|
$this->nip05VerifiedHandle = $this->nip05VerifiedHandles[0];
|
|
|
|
if (!in_array($this->profileForm->nip05Handle, $this->nip05VerifiedHandles, true)) {
|
|
$this->nip05HandleMismatch = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->amountToPay = config('app.env') === 'production' ? 21000 : 1;
|
|
$this->resolveCurrentPaymentEvent();
|
|
$this->loadEvents();
|
|
$this->listenForPayment();
|
|
}
|
|
|
|
public function handleNostrLoggedOut(): void
|
|
{
|
|
$this->currentPubkey = null;
|
|
$this->currentPleb = null;
|
|
}
|
|
|
|
public function saveEmail(): void
|
|
{
|
|
$this->profileForm->saveEmail();
|
|
}
|
|
|
|
public function saveNip05Handle(): void
|
|
{
|
|
$this->profileForm->saveNip05Handle();
|
|
|
|
// Refresh NIP-05 verification status after saving
|
|
if ($this->currentPleb->nip05_handle) {
|
|
$this->nip05VerifiedHandles = $this->getNip05HandlesForPubkey($this->currentPubkey);
|
|
|
|
if (count($this->nip05VerifiedHandles) > 0) {
|
|
$this->nip05Verified = true;
|
|
$this->nip05VerifiedHandle = $this->nip05VerifiedHandles[0];
|
|
|
|
if (!in_array($this->profileForm->nip05Handle, $this->nip05VerifiedHandles, true)) {
|
|
$this->nip05HandleMismatch = true;
|
|
} else {
|
|
$this->nip05HandleMismatch = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public function pay($comment): mixed
|
|
{
|
|
if (!$this->currentPleb) {
|
|
return redirect()->route('association.profile');
|
|
}
|
|
|
|
$paymentEvent = $this->resolveCurrentPaymentEvent();
|
|
$this->resetInvoiceMeta();
|
|
$paymentEvent = $this->syncPaymentEventStatus($paymentEvent);
|
|
|
|
if ($paymentEvent->btc_pay_invoice) {
|
|
return redirect()->away('https://pay.einundzwanzig.space/i/'.$paymentEvent->btc_pay_invoice);
|
|
}
|
|
try {
|
|
$response = \Illuminate\Support\Facades\Http::withHeaders([
|
|
'Authorization' => 'token '.config('services.btc_pay.api_key'),
|
|
])->post(
|
|
'https://pay.einundzwanzig.space/api/v1/stores/98PF86BoMd3C8P1nHHyFdoeznCwtcm5yehcAgoCYDQ2a/invoices',
|
|
[
|
|
'amount' => $this->amountToPay,
|
|
'metadata' => [
|
|
'orderId' => $comment,
|
|
'orderUrl' => url()->route('association.profile'),
|
|
'itemDesc' => 'Mitgliedsbeitrag '.date('Y').' von nostr:'.$this->currentPleb->npub,
|
|
'posData' => [
|
|
'event' => $paymentEvent->event_id,
|
|
'pubkey' => $this->currentPleb->pubkey,
|
|
'npub' => $this->currentPleb->npub,
|
|
],
|
|
],
|
|
'checkout' => [
|
|
'expirationMinutes' => 60 * 24,
|
|
'redirectURL' => url()->route('association.profile'),
|
|
'redirectAutomatically' => true,
|
|
'defaultLanguage' => 'de',
|
|
],
|
|
],
|
|
)->throw();
|
|
|
|
$invoice = $response->json();
|
|
$paymentEvent->btc_pay_invoice = $invoice['id'];
|
|
$paymentEvent->save();
|
|
|
|
$this->applyInvoiceMeta($invoice);
|
|
$this->invoiceStatusVariant = 'info';
|
|
$this->invoiceStatusMessage = 'Rechnung erstellt. Bitte bezahle sie vor Ablauf.';
|
|
|
|
return redirect()->away($invoice['checkoutLink']);
|
|
} catch (\Throwable $e) {
|
|
Flux::toast(
|
|
'Fehler beim Erstellen der Rechnung. Bitte versuche es später erneut: '.$e->getMessage(),
|
|
variant: 'danger',
|
|
);
|
|
|
|
return redirect()->route('association.profile');
|
|
}
|
|
}
|
|
|
|
public function listenForPayment(): void
|
|
{
|
|
if (!$this->currentPleb) {
|
|
return;
|
|
}
|
|
|
|
$paymentEvent = $this->resolveCurrentPaymentEvent();
|
|
|
|
$this->resetInvoiceMeta();
|
|
|
|
$paymentEvent = $this->syncPaymentEventStatus($paymentEvent);
|
|
$this->currentYearIsPaid = (bool) $paymentEvent->paid;
|
|
|
|
$this->payments = $this->currentPleb
|
|
->paymentEvents()
|
|
->where('paid', true)
|
|
->get();
|
|
}
|
|
|
|
protected function resolveCurrentPaymentEvent(): PaymentEvent
|
|
{
|
|
$paymentEvents = $this->currentPleb
|
|
->paymentEvents()
|
|
->where('year', date('Y'))
|
|
->orderByDesc('id')
|
|
->get();
|
|
|
|
if ($paymentEvents->count() > 1) {
|
|
$this->pruneDuplicatePaymentEvents($paymentEvents);
|
|
|
|
$paymentEvents = $this->currentPleb
|
|
->paymentEvents()
|
|
->where('year', date('Y'))
|
|
->orderByDesc('id')
|
|
->get();
|
|
}
|
|
|
|
if ($paymentEvents->isEmpty()) {
|
|
$paymentEvent = $this->createPaymentEvent();
|
|
} else {
|
|
$paymentEvent = $paymentEvents->first();
|
|
}
|
|
|
|
$this->currentPleb->setRelation(
|
|
'paymentEvents',
|
|
$this->currentPleb
|
|
->paymentEvents()
|
|
->where('year', date('Y'))
|
|
->orderBy('id')
|
|
->get(),
|
|
);
|
|
|
|
return $paymentEvent;
|
|
}
|
|
|
|
protected function pruneDuplicatePaymentEvents(Collection $paymentEvents): void
|
|
{
|
|
$eventToKeep = $paymentEvents
|
|
->sortByDesc(fn (PaymentEvent $event) => [
|
|
(int) $event->paid,
|
|
$event->updated_at?->timestamp ?? 0,
|
|
])
|
|
->first();
|
|
|
|
$idsToDelete = $paymentEvents
|
|
->where('id', '!=', $eventToKeep?->id)
|
|
->pluck('id');
|
|
|
|
if ($idsToDelete->isNotEmpty()) {
|
|
PaymentEvent::query()
|
|
->whereIn('id', $idsToDelete)
|
|
->delete();
|
|
}
|
|
}
|
|
|
|
protected function syncPaymentEventStatus(PaymentEvent $paymentEvent): PaymentEvent
|
|
{
|
|
if (!$paymentEvent->btc_pay_invoice) {
|
|
$this->invoiceStatusVariant = 'info';
|
|
$this->invoiceStatusMessage = 'Noch keine Rechnung gestartet. Klicke auf „Pay“, um eine neue Invoice zu erstellen.';
|
|
$this->invoiceStatus = null;
|
|
$this->invoiceStatusLabel = 'Bereit für neue Rechnung';
|
|
$this->invoiceExpiresAt = null;
|
|
$this->invoiceExpiresAtDisplay = null;
|
|
$this->invoiceExpiresIn = null;
|
|
$this->currentYearIsPaid = (bool) $paymentEvent->paid;
|
|
|
|
return $paymentEvent;
|
|
}
|
|
|
|
try {
|
|
$invoice = $this->fetchInvoice($paymentEvent->btc_pay_invoice);
|
|
|
|
$this->applyInvoiceMeta($invoice);
|
|
|
|
$status = $invoice['status'] ?? null;
|
|
$this->invoiceStatus = $status;
|
|
$this->invoiceStatusLabel = $this->statusLabel($status);
|
|
|
|
if ($this->invoiceIsExpired($status)) {
|
|
$paymentEvent->delete();
|
|
$this->currentYearIsPaid = false;
|
|
|
|
$paymentEvent = $this->createPaymentEvent();
|
|
$this->loadEvents();
|
|
|
|
$this->invoiceStatusVariant = 'warning';
|
|
$this->invoiceStatusMessage = 'Die Rechnung ist abgelaufen und wurde entfernt. Starte eine neue Zahlung.';
|
|
} elseif ($status === 'Settled') {
|
|
$paymentEvent->update(['paid' => true]);
|
|
$this->currentYearIsPaid = true;
|
|
$this->invoiceStatusVariant = 'success';
|
|
$this->invoiceStatusMessage = 'Zahlung bestätigt. Danke!';
|
|
} elseif ($status === 'Processing') {
|
|
$this->currentYearIsPaid = $paymentEvent->paid;
|
|
$this->invoiceStatusVariant = 'info';
|
|
$this->invoiceStatusMessage = 'Zahlung eingegangen, wartet auf Bestätigung.';
|
|
} else {
|
|
$this->currentYearIsPaid = $paymentEvent->paid;
|
|
$this->invoiceStatusVariant = 'info';
|
|
$this->invoiceStatusMessage = $this->statusMessage($status);
|
|
}
|
|
} catch (\Throwable $e) {
|
|
$this->resetInvoiceMeta();
|
|
$this->invoiceStatusVariant = 'danger';
|
|
$this->invoiceStatusLabel = 'Status unbekannt';
|
|
$this->invoiceStatusMessage = 'Die Rechnung konnte nicht überprüft werden. Bitte versuche es später erneut.';
|
|
$this->currentYearIsPaid = (bool) $paymentEvent->paid;
|
|
}
|
|
|
|
$this->currentPleb->load([
|
|
'paymentEvents' => fn($query) => $query->where('year', date('Y')),
|
|
]);
|
|
|
|
return $paymentEvent->refresh();
|
|
}
|
|
|
|
protected function fetchInvoice(string $invoiceId): array
|
|
{
|
|
return \Illuminate\Support\Facades\Http::withHeaders([
|
|
'Authorization' => 'token '.config('services.btc_pay.api_key'),
|
|
])
|
|
->get(
|
|
'https://pay.einundzwanzig.space/api/v1/stores/98PF86BoMd3C8P1nHHyFdoeznCwtcm5yehcAgoCYDQ2a/invoices/'.$invoiceId,
|
|
)->throw()->json();
|
|
}
|
|
|
|
protected function applyInvoiceMeta(array $invoice): void
|
|
{
|
|
$this->invoiceStatus = $invoice['status'] ?? null;
|
|
$this->invoiceStatusLabel = $this->statusLabel($this->invoiceStatus);
|
|
$this->invoiceExpiresAt = $invoice['expirationTime'] ?? null;
|
|
|
|
[$this->invoiceExpiresAtDisplay, $this->invoiceExpiresIn] = $this->formatExpiration($this->invoiceExpiresAt);
|
|
}
|
|
|
|
protected function formatExpiration(?string $timestamp): array
|
|
{
|
|
if (!$timestamp) {
|
|
return [null, null];
|
|
}
|
|
|
|
$expiresAt = is_numeric($timestamp)
|
|
? Carbon::createFromTimestamp((int) $timestamp, config('app.timezone', 'UTC'))
|
|
: Carbon::parse($timestamp)->setTimezone(config('app.timezone', 'UTC'));
|
|
|
|
return [
|
|
$expiresAt->format('d.m.Y H:i'),
|
|
$expiresAt->diffForHumans(null, true, true, 2),
|
|
];
|
|
}
|
|
|
|
protected function invoiceIsExpired(?string $status): bool
|
|
{
|
|
return in_array($status, ['Expired', 'Invalid'], true);
|
|
}
|
|
|
|
protected function statusLabel(?string $status): ?string
|
|
{
|
|
return match ($status) {
|
|
'New' => 'Offene Rechnung',
|
|
'Processing' => 'Zahlung in Bestätigung',
|
|
'Settled' => 'Bezahlt',
|
|
'Expired' => 'Abgelaufen',
|
|
'Invalid' => 'Ungültig',
|
|
default => null,
|
|
};
|
|
}
|
|
|
|
protected function statusMessage(?string $status): string
|
|
{
|
|
return match ($status) {
|
|
'Processing' => 'Zahlung eingegangen, warte auf Bestätigung.',
|
|
'Settled' => 'Zahlung bestätigt.',
|
|
'Expired', 'Invalid' => 'Rechnung abgelaufen oder ungültig.',
|
|
default => 'Rechnung ist aktiv. Bitte vor Ablauf bezahlen.',
|
|
};
|
|
}
|
|
|
|
protected function resetInvoiceMeta(): void
|
|
{
|
|
$this->invoiceStatus = null;
|
|
$this->invoiceStatusLabel = null;
|
|
$this->invoiceStatusMessage = null;
|
|
$this->invoiceStatusVariant = 'info';
|
|
$this->invoiceExpiresAt = null;
|
|
$this->invoiceExpiresAtDisplay = null;
|
|
$this->invoiceExpiresIn = null;
|
|
}
|
|
|
|
public function save($type): void
|
|
{
|
|
try {
|
|
$this->form->apply($type);
|
|
Flux::toast('Mitgliedschaft erfolgreich beantragt!', variant: 'success');
|
|
} catch (\Illuminate\Validation\ValidationException $e) {
|
|
if (!$this->form->check) {
|
|
$this->js('alert("Du musst den Statuten zustimmen.")');
|
|
}
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
public function createPaymentEvent(): PaymentEvent
|
|
{
|
|
$existing = $this->currentPleb
|
|
->paymentEvents()
|
|
->where('year', date('Y'))
|
|
->first();
|
|
|
|
if ($existing) {
|
|
return $existing;
|
|
}
|
|
|
|
if (app()->environment('testing')) {
|
|
try {
|
|
return $this->currentPleb->paymentEvents()->create([
|
|
'year' => date('Y'),
|
|
'event_id' => 'test_event_'.Str::uuid(),
|
|
'amount' => $this->amountToPay,
|
|
]);
|
|
} catch (UniqueConstraintViolationException) {
|
|
return $this->currentPleb->paymentEvents()->where('year', date('Y'))->firstOrFail();
|
|
}
|
|
}
|
|
|
|
$note = new NostrEvent;
|
|
$note->setKind(32121);
|
|
$note->setContent(
|
|
'Dieses Event dient der Zahlung des Mitgliedsbeitrags für das Jahr '.date(
|
|
'Y',
|
|
).'. Bitte bezahle den Betrag von '.number_format($this->amountToPay, 0, ',', '.').' Satoshis.',
|
|
);
|
|
$note->setTags([
|
|
['d', $this->currentPleb->pubkey.','.date('Y')],
|
|
['zap', 'daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6', config('services.relay'), '1'],
|
|
]);
|
|
$signer = new Sign;
|
|
$signer->signEvent($note, config('services.nostr'));
|
|
|
|
$eventMessage = new EventMessage($note);
|
|
|
|
$relayUrl = config('services.relay');
|
|
$relay = new Relay($relayUrl);
|
|
$relay->setMessage($eventMessage);
|
|
$result = $relay->send();
|
|
|
|
try {
|
|
return $this->currentPleb->paymentEvents()->create([
|
|
'year' => date('Y'),
|
|
'event_id' => $result->eventId,
|
|
'amount' => $this->amountToPay,
|
|
]);
|
|
} catch (UniqueConstraintViolationException) {
|
|
return $this->currentPleb->paymentEvents()->where('year', date('Y'))->firstOrFail();
|
|
}
|
|
}
|
|
|
|
public function loadEvents(): void
|
|
{
|
|
$relayUrl = config('services.relay');
|
|
if (! $relayUrl) {
|
|
$this->events = [];
|
|
return;
|
|
}
|
|
|
|
$subscription = new Subscription;
|
|
$subscriptionId = $subscription->setId();
|
|
|
|
$filter1 = new Filter;
|
|
$filter1->setKinds([32121]);
|
|
$filter1->setAuthors(['daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6']);
|
|
$filters = [$filter1];
|
|
|
|
$requestMessage = new RequestMessage($subscriptionId, $filters);
|
|
|
|
$relays = [
|
|
new Relay($relayUrl),
|
|
];
|
|
$relaySet = new RelaySet;
|
|
$relaySet->setRelays($relays);
|
|
|
|
$request = new Request($relaySet, $requestMessage);
|
|
$response = $request->send();
|
|
|
|
$this->events = collect($response[$relayUrl] ?? [])
|
|
->map(function ($event) {
|
|
if (!isset($event->event)) {
|
|
return false;
|
|
}
|
|
|
|
return [
|
|
'id' => $event->event->id,
|
|
'kind' => $event->event->kind,
|
|
'content' => $event->event->content,
|
|
'pubkey' => $event->event->pubkey,
|
|
'tags' => $event->event->tags,
|
|
'created_at' => $event->event->created_at,
|
|
];
|
|
})
|
|
->filter()
|
|
->unique('id')
|
|
->toArray();
|
|
}
|
|
|
|
public function copyRelayUrl(): void
|
|
{
|
|
$relayUrl = 'wss://nostr.einundzwanzig.space';
|
|
$this->js("navigator.clipboard.writeText('{$relayUrl}')");
|
|
Flux::toast('Relay-Adresse in die Zwischenablage kopiert!');
|
|
}
|
|
|
|
public function copyWatchtowerUrl(): void
|
|
{
|
|
$watchtowerUrl = '03a09f56bba3d2c200cc55eda2f1f069564a97c1fb74345e1560e2868a8ab3d7d0@62.171.139.240:9911';
|
|
$this->js("navigator.clipboard.writeText('{$watchtowerUrl}')");
|
|
Flux::toast('Watchtower-Adresse in die Zwischenablage kopiert!');
|
|
}
|
|
}
|
|
?>
|
|
|
|
<div>
|
|
<!-- Header -->
|
|
<div class="mb-8">
|
|
<h1 class="text-2xl md:text-3xl text-text-primary font-bold">
|
|
Einundzwanzig ist, was du draus machst
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="flex flex-col md:flex-row gap-6">
|
|
<!-- Membership Benefits Section -->
|
|
<flux:card class="w-full md:w-1/3">
|
|
<div class="flex max-md:flex-col items-start">
|
|
<div class="flex-1 max-md:pt-6 self-stretch">
|
|
<flux:heading size="xl" level="1">Vorteile deiner Mitgliedschaft</flux:heading>
|
|
<flux:separator variant="subtle" class="mb-6"/>
|
|
|
|
<!-- Kompakte Vorteils-Liste (Details & Einrichtung auf der Vorteile-Seite) -->
|
|
<ul class="space-y-4">
|
|
<li class="flex items-start gap-3">
|
|
<div
|
|
class="shrink-0 w-9 h-9 rounded-full bg-amber-100 dark:bg-amber-900/60 flex items-center justify-center">
|
|
<i class="fa-sharp-duotone fa-solid fa-bolt text-amber-600 dark:text-amber-400"></i>
|
|
</div>
|
|
<div class="min-w-0">
|
|
<h3 class="text-sm font-semibold text-text-primary">Nostr Relay</h3>
|
|
<p class="text-xs text-text-secondary">Premium Outbox-Relay von Einundzwanzig.</p>
|
|
</div>
|
|
</li>
|
|
<li class="flex items-start gap-3">
|
|
<div
|
|
class="shrink-0 w-9 h-9 rounded-full bg-emerald-100 dark:bg-emerald-900/60 flex items-center justify-center">
|
|
<i class="fa-sharp-duotone fa-solid fa-check-circle text-emerald-600 dark:text-emerald-400"></i>
|
|
</div>
|
|
<div class="min-w-0">
|
|
<h3 class="text-sm font-semibold text-text-primary">NIP-05 Verifizierung</h3>
|
|
<p class="text-xs text-text-secondary">Menschenlesbarer, verifizierter Nostr-Name.</p>
|
|
</div>
|
|
</li>
|
|
<li class="flex items-start gap-3">
|
|
<div
|
|
class="shrink-0 w-9 h-9 rounded-full bg-purple-100 dark:bg-purple-900/60 flex items-center justify-center">
|
|
<i class="fa-sharp-duotone fa-solid fa-shield-halved text-purple-600 dark:text-purple-400"></i>
|
|
</div>
|
|
<div class="min-w-0">
|
|
<h3 class="text-sm font-semibold text-text-primary">Lightning Watchtower</h3>
|
|
<p class="text-xs text-text-secondary">Schutz für deine Lightning Channel.</p>
|
|
</div>
|
|
</li>
|
|
<li class="flex items-start gap-3">
|
|
<div
|
|
class="shrink-0 w-9 h-9 rounded-full bg-rose-100 dark:bg-rose-900/60 flex items-center justify-center">
|
|
<i class="fa-sharp-duotone fa-solid fa-cloud-arrow-up text-rose-600 dark:text-rose-400"></i>
|
|
</div>
|
|
<div class="min-w-0">
|
|
<div class="flex items-center gap-2">
|
|
<h3 class="text-sm font-semibold text-text-primary">Blossom Medienserver</h3>
|
|
<flux:badge color="rose" size="sm">NEU</flux:badge>
|
|
</div>
|
|
<p class="text-xs text-text-secondary">Eigener Speicher für Bilder & Videos auf Nostr.</p>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<flux:button :href="route('association.benefits')" wire:navigate variant="primary" size="sm"
|
|
icon:trailing="arrow-right" class="mt-6 w-full">
|
|
Alle Details & Einrichtung
|
|
</flux:button>
|
|
</div>
|
|
</div>
|
|
</flux:card>
|
|
<!-- Main Grid Layout -->
|
|
<div class="w-full md:w-2/3 grid grid-cols-1 gap-6">
|
|
|
|
@if($currentPleb)
|
|
<!-- Logged-in User Info -->
|
|
<flux:card class="!bg-bg-surface !border-border-subtle">
|
|
<div class="flex items-start gap-4">
|
|
<img
|
|
class="w-12 h-12 rounded-full shrink-0 border-2 border-border-default"
|
|
src="{{ $currentPleb->profile?->picture ?? asset('apple-touch-icon.png') }}"
|
|
alt="Avatar"
|
|
>
|
|
<div class="flex-1 min-w-0">
|
|
<div class="mb-2">
|
|
<h4 class="font-semibold text-text-primary text-base">
|
|
{{ $currentPleb->profile?->display_name ?? $currentPleb->profile?->name ?? 'Unbekannt' }}
|
|
</h4>
|
|
<p class="text-xs text-text-tertiary mt-0.5">
|
|
@if($currentPleb->profile?->name)
|
|
{{ $currentPleb->profile->name }}
|
|
@endif
|
|
</p>
|
|
</div>
|
|
<div class="space-y-1 text-xs">
|
|
<div class="flex flex-col sm:flex-row sm:items-center gap-2">
|
|
<span class="text-text-tertiary shrink-0">Pubkey:</span>
|
|
<code
|
|
class="bg-bg-elevated px-2 py-0.5 rounded text-text-secondary break-all font-mono">
|
|
{{ $currentPleb->pubkey }}
|
|
</code>
|
|
</div>
|
|
<div class="flex flex-col sm:flex-row sm:items-center gap-2">
|
|
<span class="text-text-tertiary shrink-0">Npub:</span>
|
|
<code
|
|
class="bg-bg-elevated px-2 py-0.5 rounded text-text-secondary break-all font-mono text-xs">
|
|
{{ $currentPleb->npub }}
|
|
</code>
|
|
</div>
|
|
@if($currentPleb->nip05_handle)
|
|
<div class="flex flex-col sm:flex-row sm:items-center gap-2">
|
|
<span class="text-text-tertiary shrink-0">NIP-05:</span>
|
|
<code
|
|
class="bg-bg-elevated px-2 py-0.5 rounded text-text-secondary break-all font-mono text-xs">
|
|
{{ $currentPleb->nip05_handle }}
|
|
</code>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</flux:card>
|
|
@endif
|
|
|
|
<!-- Status Section -->
|
|
<flux:card>
|
|
@if(!$currentPleb)
|
|
<!-- Nostr Login Apps Section -->
|
|
<div class="space-y-4 mb-8">
|
|
<h3 class="text-lg md:text-xl text-text-tertiary italic mb-4">
|
|
Empfohlene Nostr Login und Signer-Apps
|
|
</h3>
|
|
|
|
<!-- Grid of App Cards -->
|
|
<div class="grid grid-cols-1 xl:grid-cols-2 2xl:grid-cols-4 gap-4">
|
|
<flux:card class="h-full">
|
|
<div class="flex flex-col h-full gap-3 p-1">
|
|
<div class="flex-1 min-w-0">
|
|
<a class="font-semibold text-text-primary hover:text-amber-500 dark:hover:text-amber-400 transition-colors block"
|
|
href="https://github.com/greenart7c3/Amber">
|
|
Amber
|
|
</a>
|
|
<p class="text-sm text-text-secondary mt-2 leading-relaxed">
|
|
Perfekt für mobile Android Geräte. Eine App, in der man alle Keys/nsecs
|
|
verwalten kann.
|
|
</p>
|
|
</div>
|
|
<div class="flex items-start sm:items-center">
|
|
<flux:badge color="green">Android</flux:badge>
|
|
</div>
|
|
</div>
|
|
</flux:card>
|
|
|
|
<flux:card class="h-full">
|
|
<div class="flex flex-col h-full gap-3 p-1">
|
|
<div class="flex-1 min-w-0">
|
|
<a class="font-semibold text-text-primary hover:text-amber-500 dark:hover:text-amber-400 transition-colors block"
|
|
href="https://addons.mozilla.org/en-US/firefox/addon/alby/">
|
|
Alby - Bitcoin Lightning Wallet & Nostr
|
|
</a>
|
|
<p class="text-sm text-text-secondary mt-2 leading-relaxed">
|
|
Browser-Erweiterung in die man seinen Key/nsec eingeben kann. Pro Alby-Konto
|
|
ein nsec.
|
|
</p>
|
|
</div>
|
|
<div class="flex items-start sm:items-center">
|
|
<flux:badge color="green">Browser Chrome/Firefox</flux:badge>
|
|
</div>
|
|
</div>
|
|
</flux:card>
|
|
|
|
<flux:card class="h-full">
|
|
<div class="flex flex-col h-full gap-3 p-1">
|
|
<div class="flex-1 min-w-0">
|
|
<a class="font-semibold text-text-primary hover:text-amber-500 dark:hover:text-amber-400 transition-colors block"
|
|
href="https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp">
|
|
nos2x
|
|
</a>
|
|
<p class="text-sm text-text-secondary mt-2 leading-relaxed">
|
|
Browser-Erweiterung für Chrome Browser. Multi-Key fähig.
|
|
</p>
|
|
</div>
|
|
<div class="flex items-start sm:items-center">
|
|
<flux:badge color="green">Browser Chrome</flux:badge>
|
|
</div>
|
|
</div>
|
|
</flux:card>
|
|
|
|
<flux:card class="h-full">
|
|
<div class="flex flex-col h-full gap-3 p-1">
|
|
<div class="flex-1 min-w-0">
|
|
<a class="font-semibold text-text-primary hover:text-amber-500 dark:hover:text-amber-400 transition-colors block"
|
|
href="https://addons.mozilla.org/en-US/firefox/addon/nos2x-fox/">
|
|
nos2x-fox
|
|
</a>
|
|
<p class="text-sm text-text-secondary mt-2 leading-relaxed">
|
|
Browser-Erweiterung für Firefox Browser. Multi-Key fähig.
|
|
</p>
|
|
</div>
|
|
<div class="flex items-start sm:items-center">
|
|
<flux:badge color="green">Browser Firefox</flux:badge>
|
|
</div>
|
|
</div>
|
|
</flux:card>
|
|
</div>
|
|
|
|
<!-- Screenshots Gallery -->
|
|
<div class="mt-8">
|
|
<h3 class="text-lg md:text-xl text-text-primary font-semibold mb-4">
|
|
Amber App - Nostr Signer
|
|
</h3>
|
|
|
|
<!-- Responsive Gallery Grid -->
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-5 gap-4">
|
|
<!-- Screenshot 1 -->
|
|
<a href="{{ asset('img/1.png') }}"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="group block">
|
|
<div
|
|
class="relative overflow-hidden rounded-lg border border-border-default bg-bg-surface shadow-sm hover:shadow-md hover:shadow-amber-500/10 transition-all duration-300">
|
|
<img src="{{ asset('img/1.png') }}"
|
|
alt="Amber App Screenshot 1"
|
|
loading="lazy"
|
|
class="w-full h-auto object-cover aspect-9/16 md:aspect-9/18 group-hover:scale-105 transition-transform duration-300">
|
|
<div
|
|
class="absolute inset-0 bg-linear-to-t from-zinc-900/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
|
<div class="absolute top-3 left-3 right-3">
|
|
<h4 class="text-black text-sm md:text-base font-semibold drop-shadow-lg">
|
|
Startseite
|
|
</h4>
|
|
</div>
|
|
<div class="absolute bottom-3 left-3 right-3">
|
|
<div class="flex items-center gap-2">
|
|
<i class="fa-sharp-duotone fa-solid fa-arrow-up-right-from-square text-white text-sm"></i>
|
|
<span class="text-white text-xs font-medium">Vollbild</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Screenshot 2 -->
|
|
<a href="{{ asset('img/2.png') }}"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="group block">
|
|
<div
|
|
class="relative overflow-hidden rounded-lg border border-border-default bg-bg-surface shadow-sm hover:shadow-md hover:shadow-amber-500/10 transition-all duration-300">
|
|
<img src="{{ asset('img/2.png') }}"
|
|
alt="Amber App Screenshot 2"
|
|
loading="lazy"
|
|
class="w-full h-auto object-cover aspect-9/16 md:aspect-9/18 group-hover:scale-105 transition-transform duration-300">
|
|
<div
|
|
class="absolute inset-0 bg-linear-to-t from-zinc-900/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
|
<div class="absolute top-3 left-3 right-3">
|
|
<h4 class="text-black text-sm md:text-base font-semibold drop-shadow-lg">
|
|
Profileinstellungen
|
|
</h4>
|
|
</div>
|
|
<div class="absolute bottom-3 left-3 right-3">
|
|
<div class="flex items-center gap-2">
|
|
<i class="fa-sharp-duotone fa-solid fa-arrow-up-right-from-square text-white text-sm"></i>
|
|
<span class="text-white text-xs font-medium">Vollbild</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Screenshot 3 -->
|
|
<a href="{{ asset('img/3.png') }}"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="group block">
|
|
<div
|
|
class="relative overflow-hidden rounded-lg border border-border-default bg-bg-surface shadow-sm hover:shadow-md hover:shadow-amber-500/10 transition-all duration-300">
|
|
<img src="{{ asset('img/3.png') }}"
|
|
alt="Amber App Screenshot 3"
|
|
loading="lazy"
|
|
class="w-full h-auto object-cover aspect-9/16 md:aspect-9/18 group-hover:scale-105 transition-transform duration-300">
|
|
<div
|
|
class="absolute inset-0 bg-linear-to-t from-zinc-900/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
|
<div class="absolute top-3 left-3 right-3">
|
|
<h4 class="text-black text-sm md:text-base font-semibold drop-shadow-lg">
|
|
Keyverwaltung
|
|
</h4>
|
|
</div>
|
|
<div class="absolute bottom-3 left-3 right-3">
|
|
<div class="flex items-center gap-2">
|
|
<i class="fa-sharp-duotone fa-solid fa-arrow-up-right-from-square text-white text-sm"></i>
|
|
<span class="text-white text-xs font-medium">Vollbild</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Screenshot 4 -->
|
|
<a href="{{ asset('img/4.png') }}"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="group block">
|
|
<div
|
|
class="relative overflow-hidden rounded-lg border border-border-default bg-bg-surface shadow-sm hover:shadow-md hover:shadow-amber-500/10 transition-all duration-300">
|
|
<img src="{{ asset('img/4.png') }}"
|
|
alt="Amber App Screenshot 4"
|
|
loading="lazy"
|
|
class="w-full h-auto object-cover aspect-9/16 md:aspect-9/18 group-hover:scale-105 transition-transform duration-300">
|
|
<div
|
|
class="absolute inset-0 bg-linear-to-t from-zinc-900/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
|
<div class="absolute top-3 left-3 right-3">
|
|
<h4 class="text-black text-sm md:text-base font-semibold drop-shadow-lg">
|
|
Connect/nsec-Bunker
|
|
</h4>
|
|
</div>
|
|
<div class="absolute bottom-3 left-3 right-3">
|
|
<div class="flex items-center gap-2">
|
|
<i class="fa-sharp-duotone fa-solid fa-arrow-up-right-from-square text-white text-sm"></i>
|
|
<span class="text-white text-xs font-medium">Vollbild</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- User Profile Display -->
|
|
<div class="mt-6">
|
|
<template x-if="$store.nostr.user">
|
|
<div class="flex items-center gap-4 p-4 bg-bg-elevated rounded-lg">
|
|
<img class="w-12 h-12 rounded-full"
|
|
x-bind:src="$store.nostr.user.picture || '{{ asset('apple-touch-icon.png') }}'"
|
|
alt="Avatar">
|
|
<div class="flex-1 min-w-0">
|
|
<h3 class="truncate text-lg leading-snug text-text-primary font-bold"
|
|
x-text="$store.nostr.user.display_name"></h3>
|
|
<div class="truncate text-sm text-text-tertiary"
|
|
x-text="$store.nostr.user.name"></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
@if($currentPubkey && $currentPleb && $currentPleb->association_status->value < 2)
|
|
<flux:card class="mt-4">
|
|
<div class="flex items-start gap-3">
|
|
<svg class="shrink-0 fill-current text-green-500 mt-0.5" width="16" height="16"
|
|
viewBox="0 0 16 16">
|
|
<path
|
|
d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM7 11.4L3.6 8 5 6.6l2 2 4-4L12.4 6 7 11.4z"></path>
|
|
</svg>
|
|
<p class="text-sm text-text-secondary">Profil in der Datenbank
|
|
vorhanden.</p>
|
|
</div>
|
|
</flux:card>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@if($currentPubkey && $currentPleb && !$currentPleb->application_for && $currentPleb->association_status->value < 2)
|
|
<!-- Membership Registration Section -->
|
|
<div class="space-y-4 py-6">
|
|
<div>
|
|
<h3 class="text-xl md:text-2xl text-text-primary font-bold mb-2">
|
|
Einundzwanzig Mitglied werden
|
|
</h3>
|
|
<p class="text-sm text-text-secondary">
|
|
Nur Personen können Mitglied werden und zahlen 21.000 Satoshis im Jahr.
|
|
<a href="https://einundzwanzig.space/verein/"
|
|
class="text-amber-500 hover:text-amber-600 dark:hover:text-amber-400 font-medium">
|
|
Firmen melden sich bitte direkt an den Vorstand.
|
|
</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-4 max-w-2xl">
|
|
<flux:field variant="inline">
|
|
<flux:checkbox wire:model="form.check" label="Ich stimme den Vereins-Statuten zu"/>
|
|
<flux:error name="form.check"/>
|
|
</flux:field>
|
|
<div class="flex flex-col sm:flex-row gap-3">
|
|
<flux:button wire:click="save({{ \App\Enums\AssociationStatus::PASSIVE() }})"
|
|
variant="primary">
|
|
Mit deinem aktuellen Nostr-Profil Mitglied werden
|
|
</flux:button>
|
|
<flux:button href="https://einundzwanzig.space/verein/" target="_blank"
|
|
variant="outline">
|
|
Statuten ansehen
|
|
</flux:button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@if($currentPubkey)
|
|
<!-- Email Settings Section -->
|
|
<div class="py-6">
|
|
<flux:callout variant="warning" class="mb-6">
|
|
<div class="space-y-4">
|
|
<p class="font-medium text-text-primary">
|
|
Falls du möchtest, kannst du hier eine E-Mail Adresse hinterlegen, damit der Verein
|
|
dich darüber informieren kann, wenn es Neuigkeiten gibt.
|
|
</p>
|
|
<p class="text-sm text-text-secondary">
|
|
Am besten eine anonymisierte E-Mail Adresse verwenden. Wir sichern diese Adresse
|
|
AES-256 verschlüsselt in der Datenbank ab.
|
|
</p>
|
|
</div>
|
|
</flux:callout>
|
|
|
|
<div class="space-y-4 max-w-2xl">
|
|
<flux:field variant="inline">
|
|
<flux:checkbox
|
|
wire:model.live="no"
|
|
label="Keine E-Mail Adresse angeben"
|
|
description="Ich informiere mich selbst in der News Sektion und gebe keine E-Mail Adresse raus."/>
|
|
<flux:error name="no"/>
|
|
</flux:field>
|
|
|
|
@if(!$no)
|
|
<div wire:key="showEmail" class="grid grid-cols-1 sm:grid-cols-2 gap-4">
|
|
<flux:field>
|
|
<flux:label>Fax-Nummer</flux:label>
|
|
<flux:input wire:model.live.debounce="fax" placeholder="Fax-Nummer"/>
|
|
<flux:error name="fax"/>
|
|
</flux:field>
|
|
|
|
<flux:field>
|
|
<flux:label>E-Mail Adresse</flux:label>
|
|
<flux:input
|
|
type="email"
|
|
wire:model.live.debounce="profileForm.email"
|
|
placeholder="E-Mail Adresse"
|
|
wire:dirty.class="border-amber-500 dark:border-amber-400"/>
|
|
<flux:error name="profileForm.email"/>
|
|
<div wire:dirty wire:target="profileForm.email" class="text-xs text-amber-600 dark:text-amber-400 mt-1">
|
|
Nicht gespeichert...
|
|
</div>
|
|
</flux:field>
|
|
</div>
|
|
|
|
<div wire:key="showSave">
|
|
<flux:button wire:click="saveEmail" wire:loading.attr="disabled">
|
|
<span wire:loading.remove wire:target="saveEmail">Speichern</span>
|
|
<span wire:loading wire:target="saveEmail">Speichert...</span>
|
|
</flux:button>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</flux:card>
|
|
|
|
<!-- Active Member Status -->
|
|
@if($currentPleb && $currentPleb->association_status->value > 1)
|
|
<flux:card>
|
|
<div class="flex items-start gap-3">
|
|
<svg class="shrink-0 fill-current text-green-500 mt-0.5" width="16" height="16"
|
|
viewBox="0 0 16 16">
|
|
<path
|
|
d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 12c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm1-3H7V4h2v5z"></path>
|
|
</svg>
|
|
<div>
|
|
<p class="font-medium text-text-primary">
|
|
@if($currentYearIsPaid)
|
|
<span class="text-green-600 dark:text-green-400">Du bist derzeit ein Mitglied des Vereins. Das aktuelle Jahr ist bezahlt.</span>
|
|
@else
|
|
<span class="text-amber-600 dark:text-amber-400">Du wirst nach Zahlung des Vereinsbeitrages zum Mitglied. Das aktuelle Jahr ist noch nicht bezahlt.</span>
|
|
@endif
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</flux:card>
|
|
@endif
|
|
|
|
<!-- Payment Section -->
|
|
@if($currentPleb && $currentPleb->association_status->value > 1)
|
|
<flux:card wire:poll.20s="listenForPayment">
|
|
<div class="space-y-6">
|
|
<!-- Payment Info -->
|
|
<div>
|
|
<h3 class="text-xl md:text-2xl text-text-primary font-bold mb-4">
|
|
Mitgliedsbeitrag
|
|
</h3>
|
|
|
|
@if($currentPleb->paymentEvents->last())
|
|
<flux:callout variant="info" class="mb-6">
|
|
<p class="text-sm">
|
|
Nostr Event für die Zahlung des Mitgliedsbeitrags:
|
|
<span
|
|
class="block mt-2 font-mono text-xs break-all">{{ $currentPleb->paymentEvents->last()->event_id }}</span>
|
|
</p>
|
|
</flux:callout>
|
|
@endif
|
|
|
|
@if($invoiceStatusMessage)
|
|
<flux:callout variant="{{ $invoiceStatusVariant }}" class="mb-6">
|
|
<div class="flex items-start gap-3">
|
|
<i class="fa-sharp-duotone fa-solid fa-circle-info mt-1"></i>
|
|
<div class="space-y-1">
|
|
<p class="font-semibold text-text-primary">
|
|
{{ $invoiceStatusLabel ?? 'Rechnungsstatus' }}
|
|
@if($invoiceStatus)
|
|
<span class="text-text-secondary font-normal">({{ $invoiceStatus }})</span>
|
|
@endif
|
|
</p>
|
|
<p class="text-sm text-text-secondary">
|
|
{{ $invoiceStatusMessage }}
|
|
</p>
|
|
@if($invoiceExpiresIn && in_array($invoiceStatus, ['New', 'Processing'], true))
|
|
<p class="text-xs text-text-tertiary">
|
|
Gültig noch {{ $invoiceExpiresIn }}
|
|
@if($invoiceExpiresAtDisplay)
|
|
(bis {{ $invoiceExpiresAtDisplay }})
|
|
@endif
|
|
</p>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</flux:callout>
|
|
@endif
|
|
|
|
@php
|
|
$latestEvent = collect($events)->sortByDesc('created_at')->first();
|
|
@endphp
|
|
|
|
@if(isset($latestEvent))
|
|
<p class="text-text-secondary mb-6">{{ $latestEvent['content'] }}</p>
|
|
|
|
<!-- Payment Button -->
|
|
<div class="flex justify-center py-6">
|
|
@if(!$currentYearIsPaid)
|
|
<flux:button
|
|
wire:click="pay('{{ date('Y') }}:{{ $currentPubkey }}')"
|
|
variant="primary"
|
|
class="text-xl px-8 py-3">
|
|
<i class="fa-sharp-duotone fa-solid fa-bolt-lightning mr-2"></i>
|
|
Pay {{ $amountToPay }} Sats
|
|
</flux:button>
|
|
@else
|
|
<flux:button disabled variant="primary" color="green" class="text-xl px-8 py-3">
|
|
<i class="fa-sharp-duotone fa-solid fa-check-circle mr-2"></i>
|
|
Aktuelles Jahr bezahlt
|
|
</flux:button>
|
|
@endif
|
|
</div>
|
|
@else
|
|
<flux:callout variant="danger">
|
|
<div class="flex items-start gap-3">
|
|
<i class="fa-sharp-duotone fa-solid fa-user-helmet-safety mt-1"></i>
|
|
<p class="text-sm">
|
|
Unser Nostr-Relay konnte derzeit nicht erreicht werden, um eine Zahlung zu
|
|
initialisieren. Bitte versuche es später noch einmal.
|
|
</p>
|
|
</div>
|
|
</flux:callout>
|
|
@endif
|
|
</div>
|
|
|
|
<!-- Payment History -->
|
|
@if($payments && count($payments) > 0)
|
|
<div class="pt-6 border-t border-border-default">
|
|
<h4 class="text-lg md:text-xl text-text-primary font-bold mb-4">
|
|
Bisherige Zahlungen
|
|
</h4>
|
|
|
|
<!-- Desktop Table -->
|
|
<div class="hidden md:block overflow-x-auto">
|
|
<table class="table-auto w-full">
|
|
<thead
|
|
class="text-xs font-semibold uppercase text-text-tertiary border-b border-border-default">
|
|
<tr>
|
|
<th class="px-2 first:pl-5 last:pr-5 py-3 whitespace-nowrap text-left">
|
|
<div class="font-semibold">Satoshis</div>
|
|
</th>
|
|
<th class="px-2 first:pl-5 last:pr-5 py-3 whitespace-nowrap text-left">
|
|
<div class="font-semibold">Jahr</div>
|
|
</th>
|
|
<th class="px-2 first:pl-5 last:pr-5 py-3 whitespace-nowrap text-left">
|
|
<div class="font-semibold">Event-ID</div>
|
|
</th>
|
|
<th class="px-2 first:pl-5 last:pr-5 py-3 whitespace-nowrap text-left">
|
|
<div class="font-semibold">Quittung</div>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="text-sm divide-y divide-zinc-200 dark:divide-zinc-600">
|
|
@foreach($payments as $payment)
|
|
<tr>
|
|
<td class="px-2 first:pl-5 last:pr-5 py-3 whitespace-nowrap">
|
|
<div
|
|
class="font-medium text-text-primary">{{ $payment->amount }}</div>
|
|
</td>
|
|
<td class="px-2 first:pl-5 last:pr-5 py-3 whitespace-nowrap">
|
|
<div
|
|
class="text-text-primary">{{ $payment->year }}</div>
|
|
</td>
|
|
<td class="px-2 first:pl-5 last:pr-5 py-3">
|
|
<div
|
|
class="font-mono text-xs text-text-secondary break-all">{{ $payment->event_id }}</div>
|
|
</td>
|
|
<td class="px-2 first:pl-5 last:pr-5 py-3 whitespace-nowrap">
|
|
@if($payment->btc_pay_invoice)
|
|
<flux:button
|
|
href="https://pay.einundzwanzig.space/i/{{ $payment->btc_pay_invoice }}/receipt"
|
|
target="_blank"
|
|
size="xs"
|
|
variant="subtle">
|
|
Quittung
|
|
</flux:button>
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- Mobile Cards -->
|
|
<div class="md:hidden space-y-4">
|
|
@foreach($payments as $payment)
|
|
<div
|
|
class="bg-bg-surface rounded-lg border border-border-default p-4">
|
|
<div class="space-y-3">
|
|
<div class="flex justify-between items-center">
|
|
<span class="text-sm font-medium text-text-tertiary">Satoshis</span>
|
|
<span
|
|
class="font-semibold text-text-primary">{{ $payment->amount }}</span>
|
|
</div>
|
|
<div class="flex justify-between items-center">
|
|
<span class="text-sm font-medium text-text-tertiary">Jahr</span>
|
|
<span
|
|
class="text-text-primary">{{ $payment->year }}</span>
|
|
</div>
|
|
<div>
|
|
<span
|
|
class="text-sm font-medium text-text-tertiary block mb-1">Event-ID</span>
|
|
<span
|
|
class="font-mono text-xs text-text-secondary break-all">{{ $payment->event_id }}</span>
|
|
</div>
|
|
@if($payment->btc_pay_invoice)
|
|
<flux:button
|
|
href="https://pay.einundzwanzig.space/i/{{ $payment->btc_pay_invoice }}/receipt"
|
|
target="_blank"
|
|
variant="subtle"
|
|
class="w-full text-sm">
|
|
Quittung anzeigen
|
|
</flux:button>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</flux:card>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|