Auth pages: - Create AuthSplitLayout with animated feature slides (6 slides, 3 languages) - All auth pages use split layout (form left, visual right) - Add show/hide password toggle with tooltip on Register - Legal footer only shown on Register via showLegal prop Subscribe page: - Redesign to match auth card pattern (centered, clean) - Platform icons, feature checklist, dynamic trial days (trialDays - 1) - Add "Switch workspace" link - Full i18n (en, es, pt-BR) Onboarding: - Rename URLs: step1 -> role, step2 -> connect - Add enforceStep() to prevent skipping/going back steps - Redirect /onboarding to /onboarding/role - Redesign Step2 with AuthSplitLayout and compact platform list - 21 tests covering all step enforcement scenarios Workspaces page: - Redesign with AuthSplitLayout (list with avatars, current badge) Language system: - Move locale from DB to cookie (forever, unencrypted, session.domain) - Create SetLocale middleware (sets cookie if missing, validates against config) - Rename lang/pt-br to lang/pt-BR - Add dayjs es locale Other: - Copy utils.ts from sendkit (formatNumber, formatMoney, copyToClipboard) - ConfirmDeleteModal with text confirmation (sendkit pattern) - i18n for ConfirmDeleteModal internal strings (common.php) - EmptyState component for posts index - Exact match for "All" posts in sidebar - Posts breadcrumbs show current status filter - DialogFooter buttons aligned left - API Keys page redesign with Table, DropdownMenu, EmptyState - Extract CreateApiKeyDialog and InviteMemberDialog to components - Remove API Keys from sidebar - DropdownMenuItem destructive variant for Remove action
75 lines
2.7 KiB
PHP
75 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Models\SocialAccount;
|
|
use App\Models\Workspace;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Mail\Mailables\Content;
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class WorkspaceConnectionsDisconnected extends Mailable implements ShouldQueue
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
/**
|
|
* @param Collection<int, SocialAccount> $disconnectedAccounts
|
|
*/
|
|
public function __construct(
|
|
public Workspace $workspace,
|
|
public Collection $disconnectedAccounts
|
|
) {
|
|
$this->locale = config('app.locale');
|
|
}
|
|
|
|
public function envelope(): Envelope
|
|
{
|
|
$count = $this->disconnectedAccounts->count();
|
|
|
|
return new Envelope(
|
|
subject: trans_choice('mail.workspace_connections_disconnected.subject', $count, [
|
|
'count' => $count,
|
|
'workspace' => $this->workspace->name,
|
|
], $this->locale),
|
|
);
|
|
}
|
|
|
|
public function content(): Content
|
|
{
|
|
$count = $this->disconnectedAccounts->count();
|
|
$workspaceName = $this->workspace->name;
|
|
$locale = $this->locale;
|
|
|
|
return new Content(
|
|
view: 'mail.workspace-connections-disconnected',
|
|
with: [
|
|
'title' => __('mail.workspace_connections_disconnected.title', [], $locale),
|
|
'previewText' => trans_choice('mail.workspace_connections_disconnected.subject', $count, [
|
|
'count' => $count,
|
|
'workspace' => $workspaceName,
|
|
], $locale),
|
|
'intro' => __('mail.workspace_connections_disconnected.intro', ['workspace' => $workspaceName], $locale),
|
|
'reasonsTitle' => __('mail.workspace_connections_disconnected.reasons_title', [], $locale),
|
|
'reasonExpired' => __('mail.workspace_connections_disconnected.reason_expired', [], $locale),
|
|
'reasonRevoked' => __('mail.workspace_connections_disconnected.reason_revoked', [], $locale),
|
|
'reasonChanged' => __('mail.workspace_connections_disconnected.reason_changed', [], $locale),
|
|
'reconnectCta' => __('mail.workspace_connections_disconnected.reconnect_cta', [], $locale),
|
|
'buttonText' => __('mail.workspace_connections_disconnected.button', [], $locale),
|
|
'workspace' => $this->workspace,
|
|
'disconnectedAccounts' => $this->disconnectedAccounts,
|
|
'url' => route('app.accounts'),
|
|
],
|
|
);
|
|
}
|
|
|
|
public function attachments(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|