rector: arrrrr

This commit is contained in:
Andras Bacsai
2025-01-07 14:52:08 +01:00
parent c702ebff6d
commit 16c0cd10d8
349 changed files with 4204 additions and 3712 deletions

View File

@@ -5,10 +5,12 @@ namespace App\Livewire\Notifications;
use App\Models\EmailNotificationSettings;
use App\Models\Team;
use App\Notifications\Test;
use Exception;
use Illuminate\Support\Facades\RateLimiter;
use Livewire\Attributes\Locked;
use Livewire\Attributes\Validate;
use Livewire\Component;
use Throwable;
class Email extends Component
{
@@ -109,9 +111,11 @@ class Email extends Component
$this->settings = $this->team->emailNotificationSettings;
$this->syncData();
$this->testEmailAddress = auth()->user()->email;
} catch (\Throwable $e) {
} catch (Throwable $e) {
return handleError($e, $this);
}
return null;
}
public function syncData(bool $toModel = false)
@@ -185,9 +189,11 @@ class Email extends Component
try {
$this->resetErrorBag();
$this->saveModel();
} catch (\Throwable $e) {
} catch (Throwable $e) {
return handleError($e, $this);
}
return null;
}
public function saveModel()
@@ -210,9 +216,9 @@ class Email extends Component
$this->resendEnabled = false;
$this->saveModel();
return;
return null;
}
} catch (\Throwable $e) {
} catch (Throwable $e) {
if ($type === 'SMTP') {
$this->smtpEnabled = false;
} elseif ($type === 'Resend') {
@@ -223,6 +229,8 @@ class Email extends Component
} finally {
$this->dispatch('refresh');
}
return null;
}
public function submitSmtp()
@@ -266,11 +274,13 @@ class Email extends Component
$this->settings->save();
$this->dispatch('success', 'SMTP settings updated.');
} catch (\Throwable $e) {
} catch (Throwable $e) {
$this->smtpEnabled = false;
return handleError($e);
}
return null;
}
public function submitResend()
@@ -301,9 +311,11 @@ class Email extends Component
$this->settings->save();
$this->dispatch('success', 'Resend settings updated.');
} catch (\Throwable $e) {
} catch (Throwable $e) {
return handleError($e, $this);
}
return null;
}
public function sendTestEmail()
@@ -327,11 +339,13 @@ class Email extends Component
);
if (! $executed) {
throw new \Exception('Too many messages sent!');
throw new Exception('Too many messages sent!');
}
} catch (\Throwable $e) {
} catch (Throwable $e) {
return handleError($e, $this);
}
return null;
}
public function copyFromInstanceSettings()