Announcements: Show snackbar on event and enhanced comment notification messages

This commit is contained in:
2026-03-21 19:28:18 +08:00
parent 3fb6fd5c93
commit beb21e48d0
4 changed files with 195 additions and 36 deletions
@@ -1,3 +1,5 @@
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:skeletonizer/skeletonizer.dart';
@@ -7,6 +9,7 @@ import '../../providers/announcements_provider.dart';
import '../../providers/profile_provider.dart';
import '../../theme/m3_motion.dart';
import '../../utils/app_time.dart';
import '../../utils/snackbar.dart';
import '../../widgets/app_page_header.dart';
import '../../widgets/m3_card.dart';
import '../../widgets/profile_avatar.dart';
@@ -105,9 +108,11 @@ class _AnnouncementsScreenState extends ConsumerState<AnnouncementsScreen> {
}
final announcement = items[index];
return _AnnouncementCard(
key: ValueKey(announcement.id),
announcement: announcement,
profiles: profiles,
currentUserId: currentUserId,
currentUserRole: role,
canCreate: canCreate,
isExpanded:
_expandedComments.contains(announcement.id),
@@ -145,10 +150,11 @@ class _AnnouncementsScreenState extends ConsumerState<AnnouncementsScreen> {
],
),
);
if (confirm == true) {
if (confirm == true && mounted) {
await ref
.read(announcementsControllerProvider)
.deleteAnnouncement(announcement.id);
showSuccessSnackBarGlobal('Announcement deleted.');
}
},
);
@@ -221,11 +227,13 @@ class _AnnouncementsScreenState extends ConsumerState<AnnouncementsScreen> {
}
}
class _AnnouncementCard extends ConsumerWidget {
class _AnnouncementCard extends ConsumerStatefulWidget {
const _AnnouncementCard({
super.key,
required this.announcement,
required this.profiles,
required this.currentUserId,
required this.currentUserRole,
required this.canCreate,
required this.isExpanded,
required this.onToggleComments,
@@ -236,6 +244,7 @@ class _AnnouncementCard extends ConsumerWidget {
final Announcement announcement;
final List profiles;
final String? currentUserId;
final String currentUserRole;
final bool canCreate;
final bool isExpanded;
final VoidCallback onToggleComments;
@@ -243,28 +252,75 @@ class _AnnouncementCard extends ConsumerWidget {
final VoidCallback onDelete;
@override
Widget build(BuildContext context, WidgetRef ref) {
ConsumerState<_AnnouncementCard> createState() => _AnnouncementCardState();
}
class _AnnouncementCardState extends ConsumerState<_AnnouncementCard> {
static const _cooldownSeconds = 60;
DateTime? _sentAt;
@override
void dispose() {
super.dispose();
}
int get _secondsRemaining {
if (_sentAt == null) return 0;
final elapsed = DateTime.now().difference(_sentAt!).inSeconds;
return (_cooldownSeconds - elapsed).clamp(0, _cooldownSeconds);
}
bool get _inCooldown => _secondsRemaining > 0;
bool get _canResend =>
widget.announcement.authorId == widget.currentUserId ||
widget.currentUserRole == 'admin';
Future<void> _resendNotification() async {
try {
await ref
.read(announcementsControllerProvider)
.resendAnnouncementNotification(widget.announcement);
if (mounted) setState(() => _sentAt = DateTime.now());
} on AnnouncementNotificationException {
// Partial failure — start cooldown to prevent spam
if (mounted) setState(() => _sentAt = DateTime.now());
} catch (e) {
if (mounted) showErrorSnackBar(context, 'Failed to send: $e');
}
}
@override
Widget build(BuildContext context) {
final cs = Theme.of(context).colorScheme;
final tt = Theme.of(context).textTheme;
// Resolve author
String authorName = 'Unknown';
String? avatarUrl;
for (final p in profiles) {
if (p.id == announcement.authorId) {
for (final p in widget.profiles) {
if (p.id == widget.announcement.authorId) {
authorName = p.fullName;
avatarUrl = p.avatarUrl;
break;
}
}
final isOwner = announcement.authorId == currentUserId;
final isOwner = widget.announcement.authorId == widget.currentUserId;
// Comment count
final commentsAsync =
ref.watch(announcementCommentsProvider(announcement.id));
ref.watch(announcementCommentsProvider(widget.announcement.id));
final commentCount = commentsAsync.valueOrNull?.length ?? 0;
// Rebuild UI when cooldown is active to update the countdown display.
// This timer triggers rebuilds every 500ms while _inCooldown is true.
if (_inCooldown) {
Future.delayed(const Duration(milliseconds: 500), () {
if (mounted) setState(() {});
});
}
return Padding(
padding: const EdgeInsets.symmetric(vertical: 6),
child: M3Card.elevated(
@@ -297,7 +353,7 @@ class _AnnouncementCard extends ConsumerWidget {
),
const SizedBox(height: 2),
Text(
_relativeTime(announcement.createdAt),
_relativeTime(widget.announcement.createdAt),
style: tt.labelSmall
?.copyWith(color: cs.onSurfaceVariant),
),
@@ -309,9 +365,9 @@ class _AnnouncementCard extends ConsumerWidget {
onSelected: (value) {
switch (value) {
case 'edit':
onEdit();
widget.onEdit();
case 'delete':
onDelete();
widget.onDelete();
}
},
itemBuilder: (context) => [
@@ -328,13 +384,13 @@ class _AnnouncementCard extends ConsumerWidget {
Padding(
padding: const EdgeInsets.fromLTRB(16, 12, 16, 0),
child: Text(
announcement.title,
widget.announcement.title,
style: tt.titleMedium?.copyWith(fontWeight: FontWeight.w600),
),
),
Padding(
padding: const EdgeInsets.fromLTRB(16, 6, 16, 0),
child: Text(announcement.body, style: tt.bodyMedium),
child: Text(widget.announcement.body, style: tt.bodyMedium),
),
// Visible roles chips
Padding(
@@ -342,7 +398,7 @@ class _AnnouncementCard extends ConsumerWidget {
child: Wrap(
spacing: 6,
runSpacing: 4,
children: announcement.visibleRoles.map((role) {
children: widget.announcement.visibleRoles.map((role) {
return Chip(
label: Text(
_roleLabel(role),
@@ -355,32 +411,80 @@ class _AnnouncementCard extends ConsumerWidget {
}).toList(),
),
),
// Comment toggle row
// Bottom action row: comment toggle + optional resend button
Padding(
padding: const EdgeInsets.fromLTRB(8, 4, 8, 0),
child: TextButton.icon(
onPressed: onToggleComments,
icon: Icon(
isExpanded
? Icons.expand_less
: Icons.comment_outlined,
size: 18,
),
label: Text(
commentCount > 0
? '$commentCount comment${commentCount == 1 ? '' : 's'}'
: 'Comment',
),
style: TextButton.styleFrom(
foregroundColor: cs.onSurfaceVariant,
textStyle: tt.labelMedium,
),
child: Row(
children: [
TextButton.icon(
onPressed: widget.onToggleComments,
icon: Icon(
widget.isExpanded
? Icons.expand_less
: Icons.comment_outlined,
size: 18,
),
label: Text(
commentCount > 0
? '$commentCount comment${commentCount == 1 ? '' : 's'}'
: 'Comment',
),
style: TextButton.styleFrom(
foregroundColor: cs.onSurfaceVariant,
textStyle: tt.labelMedium,
),
),
const Spacer(),
if (_canResend)
SizedBox(
width: 40,
height: 40,
child: _inCooldown
? Tooltip(
message: '$_secondsRemaining s remaining',
child: Stack(
alignment: Alignment.center,
children: [
SizedBox(
width: 28,
height: 28,
child: CircularProgressIndicator(
value: _secondsRemaining /
_cooldownSeconds,
strokeWidth: 2.5,
color: cs.primary,
backgroundColor: cs.primary
.withValues(alpha: 0.15),
),
),
Text(
'$_secondsRemaining',
style: tt.labelSmall?.copyWith(
fontSize: 9,
color: cs.primary,
),
),
],
),
)
: IconButton(
tooltip: 'Resend notifications',
padding: EdgeInsets.zero,
onPressed: _resendNotification,
icon: Icon(
Icons.notifications_active_outlined,
color: cs.primary,
size: 20,
),
),
),
],
),
),
// Comments section
if (isExpanded)
if (widget.isExpanded)
AnnouncementCommentsSection(
announcementId: announcement.id),
announcementId: widget.announcement.id),
],
),
),