🐛 Fixes
This commit is contained in:
parent
a7cb7170b8
commit
5c0f7225e6
@ -11,6 +11,7 @@ import 'package:freezed_annotation/freezed_annotation.dart';
|
|||||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||||
import 'package:island/models/user.dart';
|
import 'package:island/models/user.dart';
|
||||||
import 'package:island/pods/websocket.dart';
|
import 'package:island/pods/websocket.dart';
|
||||||
|
import 'package:island/widgets/content/cloud_files.dart';
|
||||||
import 'package:material_symbols_icons/material_symbols_icons.dart';
|
import 'package:material_symbols_icons/material_symbols_icons.dart';
|
||||||
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
||||||
import 'package:styled_widget/styled_widget.dart';
|
import 'package:styled_widget/styled_widget.dart';
|
||||||
@ -25,12 +26,6 @@ class AppNotificationToast extends HookConsumerWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context, WidgetRef ref) {
|
Widget build(BuildContext context, WidgetRef ref) {
|
||||||
final notifications = ref.watch(appNotificationsProvider);
|
final notifications = ref.watch(appNotificationsProvider);
|
||||||
final isDesktop =
|
|
||||||
!kIsWeb && (Platform.isMacOS || Platform.isWindows || Platform.isLinux);
|
|
||||||
|
|
||||||
// Calculate position based on device type
|
|
||||||
final safeAreaTop = MediaQuery.of(context).padding.top;
|
|
||||||
final notificationTop = safeAreaTop + (isDesktop ? 30 : 10);
|
|
||||||
|
|
||||||
// Create a global key for AnimatedList
|
// Create a global key for AnimatedList
|
||||||
final listKey = useMemoized(() => GlobalKey<AnimatedListState>());
|
final listKey = useMemoized(() => GlobalKey<AnimatedListState>());
|
||||||
@ -69,121 +64,87 @@ class AppNotificationToast extends HookConsumerWidget {
|
|||||||
}, [notifications]);
|
}, [notifications]);
|
||||||
|
|
||||||
return Positioned(
|
return Positioned(
|
||||||
top: notificationTop,
|
top: MediaQuery.of(context).padding.top + 50,
|
||||||
left: 16,
|
left: 16,
|
||||||
right: 16,
|
right: 16,
|
||||||
bottom: 16, // Add bottom constraint to make it take full height
|
child: SizedBox(
|
||||||
child: Column(
|
height: notifications.length * 80,
|
||||||
children: [
|
child: AnimatedList(
|
||||||
// Test button for development
|
physics: NeverScrollableScrollPhysics(),
|
||||||
if (kDebugMode)
|
padding: EdgeInsets.zero,
|
||||||
ElevatedButton(
|
key: listKey,
|
||||||
onPressed: () {
|
initialItemCount: notifications.length,
|
||||||
ref
|
itemBuilder: (context, index, animation) {
|
||||||
.read(appNotificationsProvider.notifier)
|
// Safely access notifications with bounds check
|
||||||
.addNotification(
|
if (index >= notifications.length) {
|
||||||
AppNotification(
|
return const SizedBox.shrink(); // Return empty widget if out of bounds
|
||||||
data: SnNotification(
|
}
|
||||||
createdAt: DateTime.now(),
|
|
||||||
updatedAt: DateTime.now(),
|
final notification = notifications[index];
|
||||||
deletedAt: null,
|
final now = DateTime.now();
|
||||||
id:
|
final createdAt = notification.createdAt ?? now;
|
||||||
'test-notification-${DateTime.now().millisecondsSinceEpoch}',
|
final duration =
|
||||||
topic: 'test',
|
notification.duration ?? const Duration(seconds: 5);
|
||||||
title: 'Test Notification',
|
final elapsedTime = now.difference(createdAt);
|
||||||
content: 'This is a test notification content',
|
final remainingTime = duration - elapsedTime;
|
||||||
priority: 1,
|
final progress =
|
||||||
viewedAt: null,
|
1.0 -
|
||||||
accountId: 'test-account-123',
|
(remainingTime.inMilliseconds / duration.inMilliseconds).clamp(
|
||||||
|
0.0,
|
||||||
|
1.0,
|
||||||
|
); // Ensure progress is clamped
|
||||||
|
|
||||||
|
return SizeTransition(
|
||||||
|
sizeFactor: animation.drive(
|
||||||
|
CurveTween(curve: Curves.fastLinearToSlowEaseIn),
|
||||||
|
),
|
||||||
|
child: _NotificationCard(
|
||||||
|
notification: notification,
|
||||||
|
progress: progress.clamp(0.0, 1.0),
|
||||||
|
onDismiss: () {
|
||||||
|
// Find the current index before removal
|
||||||
|
final currentIndex = notifications.indexWhere(
|
||||||
|
(n) => n.data.id == notification.data.id,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (currentIndex != -1 &&
|
||||||
|
listKey.currentState != null &&
|
||||||
|
currentIndex >= 0 &&
|
||||||
|
currentIndex < notifications.length) {
|
||||||
|
try {
|
||||||
|
// Remove the item with animation
|
||||||
|
listKey.currentState!.removeItem(
|
||||||
|
currentIndex,
|
||||||
|
(context, animation) => SizeTransition(
|
||||||
|
sizeFactor: animation.drive(
|
||||||
|
CurveTween(curve: Curves.fastLinearToSlowEaseIn),
|
||||||
|
),
|
||||||
|
child: _NotificationCard(
|
||||||
|
notification: notification,
|
||||||
|
progress: progress.clamp(0.0, 1.0),
|
||||||
|
onDismiss:
|
||||||
|
() {}, // Empty because it's being removed
|
||||||
|
),
|
||||||
),
|
),
|
||||||
icon: Symbols.info,
|
duration: const Duration(
|
||||||
createdAt: DateTime.now(),
|
milliseconds: 150,
|
||||||
duration: const Duration(seconds: 5),
|
), // Make removal animation faster
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
child: Text('test notification'),
|
|
||||||
),
|
|
||||||
// Use AnimatedList for notifications with Expanded to take full height
|
|
||||||
Expanded(
|
|
||||||
child: AnimatedList(
|
|
||||||
physics: NeverScrollableScrollPhysics(),
|
|
||||||
padding: EdgeInsets.zero,
|
|
||||||
key: listKey,
|
|
||||||
initialItemCount: notifications.length,
|
|
||||||
itemBuilder: (context, index, animation) {
|
|
||||||
// Safely access notifications with bounds check
|
|
||||||
if (index >= notifications.length) {
|
|
||||||
return const SizedBox.shrink(); // Return empty widget if out of bounds
|
|
||||||
}
|
|
||||||
|
|
||||||
final notification = notifications[index];
|
|
||||||
final now = DateTime.now();
|
|
||||||
final createdAt = notification.createdAt ?? now;
|
|
||||||
final duration =
|
|
||||||
notification.duration ?? const Duration(seconds: 5);
|
|
||||||
final elapsedTime = now.difference(createdAt);
|
|
||||||
final remainingTime = duration - elapsedTime;
|
|
||||||
final progress =
|
|
||||||
1.0 -
|
|
||||||
(remainingTime.inMilliseconds / duration.inMilliseconds)
|
|
||||||
.clamp(0.0, 1.0); // Ensure progress is clamped
|
|
||||||
|
|
||||||
return SizeTransition(
|
|
||||||
sizeFactor: animation.drive(
|
|
||||||
CurveTween(curve: Curves.fastLinearToSlowEaseIn),
|
|
||||||
),
|
|
||||||
child: _NotificationCard(
|
|
||||||
notification: notification,
|
|
||||||
progress: progress.clamp(0.0, 1.0),
|
|
||||||
onDismiss: () {
|
|
||||||
// Find the current index before removal
|
|
||||||
final currentIndex = notifications.indexWhere(
|
|
||||||
(n) => n.data.id == notification.data.id,
|
|
||||||
);
|
);
|
||||||
|
} catch (e) {
|
||||||
|
// Log error but don't crash the app
|
||||||
|
debugPrint('Error removing notification: $e');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (currentIndex != -1 &&
|
// Actually remove from state
|
||||||
listKey.currentState != null &&
|
ref
|
||||||
currentIndex >= 0 &&
|
.read(appNotificationsProvider.notifier)
|
||||||
currentIndex < notifications.length) {
|
.removeNotification(notification);
|
||||||
try {
|
},
|
||||||
// Remove the item with animation
|
),
|
||||||
listKey.currentState!.removeItem(
|
);
|
||||||
currentIndex,
|
},
|
||||||
(context, animation) => SizeTransition(
|
),
|
||||||
sizeFactor: animation.drive(
|
|
||||||
CurveTween(
|
|
||||||
curve: Curves.fastLinearToSlowEaseIn,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
child: _NotificationCard(
|
|
||||||
notification: notification,
|
|
||||||
progress: progress.clamp(0.0, 1.0),
|
|
||||||
onDismiss:
|
|
||||||
() {}, // Empty because it's being removed
|
|
||||||
),
|
|
||||||
),
|
|
||||||
duration: const Duration(
|
|
||||||
milliseconds: 150,
|
|
||||||
), // Make removal animation faster
|
|
||||||
);
|
|
||||||
} catch (e) {
|
|
||||||
// Log error but don't crash the app
|
|
||||||
debugPrint('Error removing notification: $e');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Actually remove from state
|
|
||||||
ref
|
|
||||||
.read(appNotificationsProvider.notifier)
|
|
||||||
.removeNotification(notification);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -235,7 +196,9 @@ class _NotificationCard extends HookConsumerWidget {
|
|||||||
return Card(
|
return Card(
|
||||||
elevation: 4,
|
elevation: 4,
|
||||||
margin: const EdgeInsets.only(bottom: 8),
|
margin: const EdgeInsets.only(bottom: 8),
|
||||||
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
|
shape: RoundedRectangleBorder(
|
||||||
|
borderRadius: BorderRadius.vertical(bottom: Radius.circular(8)),
|
||||||
|
),
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
borderRadius: const BorderRadius.all(Radius.circular(8)),
|
borderRadius: const BorderRadius.all(Radius.circular(8)),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
@ -265,9 +228,7 @@ class _NotificationCard extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
value: 1.0 - progressState.value,
|
value: 1.0 - progressState.value,
|
||||||
backgroundColor: Colors.transparent,
|
backgroundColor: Colors.transparent,
|
||||||
color: Theme.of(
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
context,
|
|
||||||
).colorScheme.primary.withOpacity(0.5),
|
|
||||||
minHeight: 3,
|
minHeight: 3,
|
||||||
stopIndicatorColor: Colors.transparent,
|
stopIndicatorColor: Colors.transparent,
|
||||||
stopIndicatorRadius: 0,
|
stopIndicatorRadius: 0,
|
||||||
@ -279,7 +240,12 @@ class _NotificationCard extends HookConsumerWidget {
|
|||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
if (notification.icon != null)
|
if (notification.data.meta['avatar'] != null)
|
||||||
|
ProfilePictureWidget(
|
||||||
|
fileId: notification.data.meta['avatar'],
|
||||||
|
radius: 12,
|
||||||
|
).padding(right: 12, top: 2)
|
||||||
|
else if (notification.icon != null)
|
||||||
Icon(
|
Icon(
|
||||||
notification.icon,
|
notification.icon,
|
||||||
color: Theme.of(context).colorScheme.primary,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
@ -298,12 +264,12 @@ class _NotificationCard extends HookConsumerWidget {
|
|||||||
Text(
|
Text(
|
||||||
notification.data.content,
|
notification.data.content,
|
||||||
style: Theme.of(context).textTheme.bodyMedium,
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
).padding(top: 4),
|
),
|
||||||
if (notification.data.subtitle.isNotEmpty)
|
if (notification.data.subtitle.isNotEmpty)
|
||||||
Text(
|
Text(
|
||||||
notification.data.subtitle,
|
notification.data.subtitle,
|
||||||
style: Theme.of(context).textTheme.bodySmall,
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
).padding(top: 2),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user