Notification preferences: - Create notification_preferences table (post_published, post_failed, account_disconnected booleans per user) - NotificationPreferenceController with firstOrCreate on first visit - SendNotification job respects email preferences before sending - Settings page with toggle switches, i18n in 3 languages - 8 new tests for preferences (controller + wantsEmailFor + job integration) Post published notification: - PostPublished mail + maizzle template - Notify owner on successful publish via SendNotification job - PostPublished type added to notification enum Header & Layout: - Rename AppSidebarHeader to AppHeader with left/center/right slots - showSidebarTrigger prop to hide sidebar toggle - Calendar: controls in header (left: nav, center: date, right: tabs + new post) - Fixed header with scrollable content (flex h-screen pattern) - fullWidth pages use overflow-y-auto (fixes month view scroll) UI improvements: - Action buttons moved to header-right: posts, hashtags, labels - Settings breadcrumbs: "Settings > Profile" pattern - Calendar: remove duplicate New Post button from day view - Remove size="sm" from Schedule/Publish buttons - Remove bg-background from header (inherits from SidebarInset) - Add Cancel button to labels and hashtags create/edit dialogs - Add common.cancel i18n key - Clean up orphaned Calendar breadcrumbs - Fix SocialAccountsGrid buttons to use shadcn Button ghost All 753 tests passing.
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers\App\Settings;
|
|
|
|
use App\Http\Controllers\App\Controller;
|
|
use App\Models\NotificationPreference;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
class NotificationPreferenceController extends Controller
|
|
{
|
|
public function edit(Request $request): Response
|
|
{
|
|
$preferences = NotificationPreference::firstOrCreate(
|
|
['user_id' => $request->user()->id],
|
|
[
|
|
'post_published' => true,
|
|
'post_failed' => true,
|
|
'account_disconnected' => true,
|
|
],
|
|
);
|
|
|
|
return Inertia::render('settings/Notifications', [
|
|
'preferences' => $preferences,
|
|
]);
|
|
}
|
|
|
|
public function update(Request $request): RedirectResponse
|
|
{
|
|
$validated = $request->validate([
|
|
'post_published' => ['required', 'boolean'],
|
|
'post_failed' => ['required', 'boolean'],
|
|
'account_disconnected' => ['required', 'boolean'],
|
|
]);
|
|
|
|
NotificationPreference::updateOrCreate(
|
|
['user_id' => $request->user()->id],
|
|
$validated,
|
|
);
|
|
|
|
session()->flash('flash.banner', __('settings.flash.notifications_updated'));
|
|
session()->flash('flash.bannerStyle', 'success');
|
|
|
|
return back();
|
|
}
|
|
}
|