Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 6x 6x 6x 6x 6x 1x 1x 1x 1x 1x 6x 6x 6x 6x 6x 6x 6x 6x 6x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 6x 1x 1x 1x 1x 6x 1x 1x 1x 1x 6x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 6x 6x | import { useNavigate } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import i18n from '@/i18n';
import { useInvitationsViewModel } from '@/viewmodels/invitations/useInvitationsViewModel';
import { UserAvatar } from '@/components/UserAvatar';
import { EventCoverImage } from '@/components/EventCoverImage';
import type { ReceivedInvitation } from '@/models/invitation';
import '@/styles/invitations.css';
function formatDate(iso: string): string {
const d = new Date(iso);
return d.toLocaleDateString(i18n.resolvedLanguage, {
weekday: 'short',
month: 'short',
day: 'numeric',
});
}
function formatTime(iso: string): string {
const d = new Date(iso);
return d.toLocaleTimeString(i18n.resolvedLanguage, {
hour: '2-digit',
minute: '2-digit',
hour12: false,
});
}
function InvitationCard({
invitation,
isLoading,
onAccept,
onDecline,
onView,
}: {
invitation: ReceivedInvitation;
isLoading: boolean;
onAccept: () => void;
onDecline: () => void;
onView: () => void;
}) {
const { t } = useTranslation();
const hostName = invitation.host.display_name ?? invitation.host.username;
const isPending = invitation.status === 'PENDING';
return (
<article className="inv-card" data-testid={`invitation-${invitation.invitation_id}`}>
<div className="inv-card-cover">
<EventCoverImage
src={invitation.event.image_url ?? undefined}
alt={invitation.event.title}
imgClassName="inv-card-cover-img"
variant="card"
/>
<span className="inv-card-privacy">{t('invitations.private_badge')}</span>
</div>
<div className="inv-card-body">
<div className="inv-card-header">
<div className="inv-card-title-row">
<h2 className="inv-card-title">{invitation.event.title}</h2>
<span className={`inv-card-status status-${invitation.status.toLowerCase()}`}>
{t(`event_detail.invitation_status.${invitation.status}`, {
defaultValue: invitation.status,
})}
</span>
</div>
<span className="inv-card-meta">
{formatDate(invitation.event.start_time)} · {formatTime(invitation.event.start_time)}
</span>
</div>
<div className="inv-card-host">
<UserAvatar
username={invitation.host.username}
displayName={invitation.host.display_name ?? null}
avatarUrl={invitation.host.avatar_url ?? null}
size="sm"
variant="muted"
/>
<div className="inv-card-host-info">
<span className="inv-card-host-name">{hostName}</span>
<span className="inv-card-host-username">@{invitation.host.username}</span>
</div>
</div>
{invitation.message && (
<blockquote className="inv-card-message">
<span className="inv-card-quote">“</span>
{invitation.message}
<span className="inv-card-quote">”</span>
</blockquote>
)}
<div className="inv-card-actions">
{isPending && (
<>
<button
type="button"
className="inv-card-btn inv-card-decline"
onClick={onDecline}
disabled={isLoading}
>
{t('invitations.decline')}
</button>
<button
type="button"
className="inv-card-btn inv-card-accept"
onClick={onAccept}
disabled={isLoading}
data-testid={`accept-${invitation.invitation_id}`}
>
{isLoading ? <span className="spinner" /> : t('invitations.accept')}
</button>
</>
)}
<button
type="button"
className="inv-card-btn inv-card-view"
onClick={onView}
disabled={isLoading}
>
{t('invitations.view_event')}
</button>
</div>
</div>
</article>
);
}
export default function InvitationsPage() {
const { t } = useTranslation();
const navigate = useNavigate();
const vm = useInvitationsViewModel();
const handleAccept = async (invitationId: string) => {
const result = await vm.handleAccept(invitationId);
if (result) {
navigate(`/events/${result.event_id}`);
}
};
return (
<div className="inv-page">
<header className="inv-page-header">
<h1 className="inv-page-title">{t('invitations.title')}</h1>
<p className="inv-page-subtitle">
{t('invitations.subtitle')}
</p>
</header>
{vm.error && (
<div className="inv-error" role="alert">
<span>{vm.error}</span>
<button
type="button"
className="inv-error-dismiss"
onClick={vm.dismissError}
aria-label={t('invitations.dismiss_error')}
>
×
</button>
</div>
)}
{vm.isLoading && vm.invitations.length === 0 && (
<div className="inv-loading">
<span className="spinner" />
<p>{t('invitations.loading')}</p>
</div>
)}
{!vm.isLoading && vm.invitations.length === 0 && !vm.error && (
<div className="inv-empty">
<h2>{t('invitations.empty_title')}</h2>
<p>{t('invitations.empty_body')}</p>
</div>
)}
{vm.invitations.length > 0 && (
<div className="inv-list">
{vm.invitations.map((inv) => (
<InvitationCard
key={inv.invitation_id}
invitation={inv}
isLoading={vm.isActionLoading === inv.invitation_id}
onAccept={() => handleAccept(inv.invitation_id)}
onDecline={() => vm.handleDecline(inv.invitation_id)}
onView={() => navigate(`/events/${inv.event.id}`)}
/>
))}
</div>
)}
</div>
);
}
|