Added markAll as read for notification
This commit is contained in:
@@ -18,7 +18,8 @@ class NotificationsRepository {
|
||||
);
|
||||
}
|
||||
|
||||
Future<Result<NotificationResponseModel>> markAllAsRead() async {
|
||||
return _notificationsService.markAllAsRead();
|
||||
}
|
||||
Future<Result<Map<String, dynamic>>> markAllAsRead() async {
|
||||
return _notificationsService.markAllAsRead();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ class NotificationApi {
|
||||
|
||||
|
||||
|
||||
static const String markAllAsRead = '/api/v1/notifications';
|
||||
static const String markAllAsRead = '/api/v1/notifications/mark';
|
||||
static const String markAsRead = '/api/v1/notifications/mark-as-read';
|
||||
static const String tenderApprovalsTender = '/api/v1/notifications';
|
||||
static String getTenderApprovalById({required String tenderId}) {
|
||||
|
||||
@@ -24,14 +24,15 @@ class NotificationsService {
|
||||
return result;
|
||||
}
|
||||
|
||||
Future<Result<NotificationResponseModel>> markAllAsRead() async {
|
||||
final result = await _networkManager.makeRequest(
|
||||
NotificationApi.markAllAsRead,
|
||||
method: 'POST',
|
||||
(json) => NotificationResponseModel.fromJson(json),
|
||||
);
|
||||
return result;
|
||||
}
|
||||
Future<Result<Map<String, dynamic>>> markAllAsRead() async {
|
||||
final result = await _networkManager.makeRequest(
|
||||
NotificationApi.markAllAsRead,
|
||||
method: 'GET',
|
||||
(json) => json,
|
||||
);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Future<Result<NotificationResponseModel>> markAsRead({
|
||||
required String notificationId,
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:tm_app/core/utils/app_toast.dart';
|
||||
import 'package:tm_app/core/utils/result.dart';
|
||||
import 'package:tm_app/data/repositories/notification_repository.dart';
|
||||
import 'package:tm_app/data/services/model/notification__response/notification_response_model.dart';
|
||||
@@ -30,49 +31,49 @@ class NotificationViewModel with ChangeNotifier {
|
||||
int get totalPages => _totalPages;
|
||||
|
||||
/// Fetch notifications
|
||||
Future<void> getNotifications({int page = 1, bool isMobile = false}) async {
|
||||
_isLoading = true;
|
||||
notifyListeners();
|
||||
Future<void> getNotifications({int page = 1, bool isMobile = false}) async {
|
||||
_isLoading = true;
|
||||
notifyListeners();
|
||||
|
||||
final int offset = _pageSize * page;
|
||||
final int offset = _pageSize * page;
|
||||
|
||||
final result = await _repository.getNotifications(
|
||||
limit: _pageSize,
|
||||
offset: offset,
|
||||
);
|
||||
final result = await _repository.getNotifications(
|
||||
limit: _pageSize,
|
||||
offset: offset,
|
||||
);
|
||||
|
||||
switch (result) {
|
||||
case Ok<NotificationResponseModel>():
|
||||
if (isMobile && page > 1) {
|
||||
final oldNotifications =
|
||||
_notificationResponseModel?.data?.notifications ?? [];
|
||||
switch (result) {
|
||||
case Ok<NotificationResponseModel>():
|
||||
if (isMobile && page > 1) {
|
||||
final oldNotifications =
|
||||
_notificationResponseModel?.data?.notifications ?? [];
|
||||
|
||||
final newNotifications = result.value.data?.notifications ?? [];
|
||||
final newNotifications = result.value.data?.notifications ?? [];
|
||||
|
||||
_notificationResponseModel = result.value.copyWith(
|
||||
data: result.value.data?.copyWith(
|
||||
notifications: [...oldNotifications, ...newNotifications],
|
||||
),
|
||||
);
|
||||
} else {
|
||||
_notificationResponseModel = result.value;
|
||||
}
|
||||
_notificationResponseModel = result.value.copyWith(
|
||||
data: result.value.data?.copyWith(
|
||||
notifications: [...oldNotifications, ...newNotifications],
|
||||
),
|
||||
);
|
||||
} else {
|
||||
_notificationResponseModel = result.value;
|
||||
}
|
||||
|
||||
currentPage = page;
|
||||
_hasMoreData =
|
||||
(result.value.data?.notifications?.length ?? 0) >= _pageSize;
|
||||
_totalPages = result.value.data?.meta?.pages ?? 1;
|
||||
break;
|
||||
currentPage = page;
|
||||
_hasMoreData =
|
||||
(result.value.data?.notifications?.length ?? 0) >= _pageSize;
|
||||
_totalPages = result.value.data?.meta?.pages ?? 1;
|
||||
break;
|
||||
|
||||
case Error<NotificationResponseModel>():
|
||||
_errorMessage = result.error.toString();
|
||||
break;
|
||||
case Error<NotificationResponseModel>():
|
||||
_errorMessage = result.error.toString();
|
||||
break;
|
||||
}
|
||||
|
||||
_isLoading = false;
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
_isLoading = false;
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
/// Jump to page
|
||||
Future<void> jumpToPage(int page) async {
|
||||
if (_totalPages == 0 || page < 1 || page > _totalPages) {
|
||||
@@ -82,33 +83,50 @@ Future<void> getNotifications({int page = 1, bool isMobile = false}) async {
|
||||
}
|
||||
|
||||
/// Mark all as read
|
||||
Future<void> markAllAsRead() async {
|
||||
Future<void> markAllAsRead(BuildContext context) async {
|
||||
_isLoading = true;
|
||||
_errorMessage = null;
|
||||
notifyListeners();
|
||||
|
||||
final result = await _repository.markAllAsRead();
|
||||
|
||||
switch (result) {
|
||||
case Ok<NotificationResponseModel>():
|
||||
if (_notificationResponseModel?.data?.notifications != null) {
|
||||
final updatedNotifications =
|
||||
_notificationResponseModel!.data!.notifications!
|
||||
.map((n) => n.copyWith(seen: true))
|
||||
.toList();
|
||||
case Ok<Map<String, dynamic>>():
|
||||
final response = result.value;
|
||||
final success = response['success'] as bool? ?? false;
|
||||
final message = response['message'] as String? ?? 'Unknown response';
|
||||
|
||||
_notificationResponseModel = _notificationResponseModel!.copyWith(
|
||||
data: _notificationResponseModel!.data!.copyWith(
|
||||
notifications: updatedNotifications,
|
||||
),
|
||||
);
|
||||
if (success) {
|
||||
if (_notificationResponseModel?.data?.notifications != null) {
|
||||
final updatedNotifications =
|
||||
_notificationResponseModel!.data!.notifications!
|
||||
.map((n) => n.copyWith(seen: true))
|
||||
.toList();
|
||||
|
||||
_notificationResponseModel = _notificationResponseModel!.copyWith(
|
||||
data: _notificationResponseModel!.data!.copyWith(
|
||||
notifications: updatedNotifications,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
await getNotifications(page: 1);
|
||||
|
||||
// toast success
|
||||
AppToast.success(context, 'All notifications marked as read.');
|
||||
} else {
|
||||
_errorMessage = message;
|
||||
AppToast.error(context, message);
|
||||
}
|
||||
break;
|
||||
|
||||
case Error<NotificationResponseModel>():
|
||||
case Error<Map<String, dynamic>>():
|
||||
_errorMessage = result.error.toString();
|
||||
AppToast.error(context, _errorMessage!);
|
||||
break;
|
||||
}
|
||||
|
||||
_isLoading = false;
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
|
||||
@@ -4,12 +4,13 @@ import 'package:tm_app/core/theme/colors.dart';
|
||||
import 'package:tm_app/core/utils/size_config.dart';
|
||||
import 'package:tm_app/view_models/notification_view_model.dart';
|
||||
import 'package:tm_app/views/notification/strings/notification_strings.dart';
|
||||
import 'package:tm_app/views/shared/page_selection_dialog.dart';
|
||||
import 'package:tm_app/views/shared/desktop_navigation_widget.dart';
|
||||
import 'package:tm_app/views/shared/page_selection_dialog.dart';
|
||||
|
||||
import '../../shared/main_tab_bar.dart';
|
||||
import '../widgets/notification_all_tab.dart';
|
||||
import '../widgets/notification_important_tab.dart';
|
||||
import '../widgets/notification_unread_tab.dart';
|
||||
import '../../shared/main_tab_bar.dart';
|
||||
|
||||
class DesktopNotificationPage extends StatefulWidget {
|
||||
const DesktopNotificationPage({super.key});
|
||||
@@ -65,7 +66,9 @@ class _DesktopNotificationPageState extends State<DesktopNotificationPage>
|
||||
child: Align(
|
||||
alignment: Alignment.centerRight,
|
||||
child: InkWell(
|
||||
onTap: viewModel.markAllAsRead,
|
||||
onTap: () {
|
||||
viewModel.markAllAsRead(context);
|
||||
},
|
||||
borderRadius: BorderRadius.circular(99),
|
||||
child: Container(
|
||||
width: 132.0.w(),
|
||||
@@ -116,8 +119,10 @@ class _DesktopNotificationPageState extends State<DesktopNotificationPage>
|
||||
onTap: () async {
|
||||
final selectedPage = await showDialog<int>(
|
||||
context: context,
|
||||
builder: (context) => PageSelectionDialog(
|
||||
totalPages: viewModel.totalPages),
|
||||
builder:
|
||||
(context) => PageSelectionDialog(
|
||||
totalPages: viewModel.totalPages,
|
||||
),
|
||||
);
|
||||
|
||||
if (selectedPage != null) {
|
||||
|
||||
@@ -51,7 +51,7 @@ class _MobileNotificationPageState extends State<MobileNotificationPage>
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final viewModel = context.watch<NotificationViewModel>(); // ✅ وصل به ویومدل
|
||||
final viewModel = context.watch<NotificationViewModel>();
|
||||
|
||||
return Scaffold(
|
||||
backgroundColor: AppColors.backgroundColor,
|
||||
@@ -72,7 +72,9 @@ class _MobileNotificationPageState extends State<MobileNotificationPage>
|
||||
child: Align(
|
||||
alignment: Alignment.centerRight,
|
||||
child: InkWell(
|
||||
onTap: viewModel.markAllAsRead, // ✅ مثل دسکتاپ/تبلت
|
||||
onTap: () {
|
||||
viewModel.markAllAsRead(context);
|
||||
},
|
||||
borderRadius: BorderRadius.circular(99),
|
||||
child: Container(
|
||||
width: 132.0.w(),
|
||||
|
||||
@@ -70,7 +70,9 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
|
||||
child: Align(
|
||||
alignment: Alignment.centerRight,
|
||||
child: InkWell(
|
||||
onTap: viewModel.markAllAsRead,
|
||||
onTap: () {
|
||||
viewModel.markAllAsRead(context);
|
||||
},
|
||||
borderRadius: BorderRadius.circular(99),
|
||||
child: Container(
|
||||
width: 132.0.w(),
|
||||
@@ -121,9 +123,10 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
|
||||
onTap: () async {
|
||||
final selectedPage = await showDialog<int>(
|
||||
context: context,
|
||||
builder: (context) => PageSelectionDialog(
|
||||
totalPages: viewModel.totalPages,
|
||||
),
|
||||
builder:
|
||||
(context) => PageSelectionDialog(
|
||||
totalPages: viewModel.totalPages,
|
||||
),
|
||||
);
|
||||
|
||||
if (selectedPage != null) {
|
||||
|
||||
Reference in New Issue
Block a user