♻️ Refactored notification
This commit is contained in:
parent
d22eac5c10
commit
ebeffbe1aa
@ -13,6 +13,7 @@ import 'package:solian/exts.dart';
|
|||||||
import 'package:solian/platform.dart';
|
import 'package:solian/platform.dart';
|
||||||
import 'package:solian/providers/auth.dart';
|
import 'package:solian/providers/auth.dart';
|
||||||
import 'package:solian/providers/content/realm.dart';
|
import 'package:solian/providers/content/realm.dart';
|
||||||
|
import 'package:solian/providers/notifications.dart';
|
||||||
import 'package:solian/providers/relation.dart';
|
import 'package:solian/providers/relation.dart';
|
||||||
import 'package:solian/providers/theme_switcher.dart';
|
import 'package:solian/providers/theme_switcher.dart';
|
||||||
import 'package:solian/providers/websocket.dart';
|
import 'package:solian/providers/websocket.dart';
|
||||||
@ -214,7 +215,7 @@ class _BootstrapperShellState extends State<BootstrapperShell> {
|
|||||||
final AuthProvider auth = Get.find();
|
final AuthProvider auth = Get.find();
|
||||||
if (auth.isAuthorized.isTrue) {
|
if (auth.isAuthorized.isTrue) {
|
||||||
try {
|
try {
|
||||||
Get.find<WebSocketProvider>().registerPushNotifications();
|
Get.find<NotificationProvider>().registerPushNotifications();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
context.showSnackbar(
|
context.showSnackbar(
|
||||||
'pushNotifyRegisterFailed'.trParams({'reason': err.toString()}),
|
'pushNotifyRegisterFailed'.trParams({'reason': err.toString()}),
|
||||||
|
@ -18,6 +18,7 @@ import 'package:solian/providers/database/services/messages.dart';
|
|||||||
import 'package:solian/providers/last_read.dart';
|
import 'package:solian/providers/last_read.dart';
|
||||||
import 'package:solian/providers/link_expander.dart';
|
import 'package:solian/providers/link_expander.dart';
|
||||||
import 'package:solian/providers/navigation.dart';
|
import 'package:solian/providers/navigation.dart';
|
||||||
|
import 'package:solian/providers/notifications.dart';
|
||||||
import 'package:solian/providers/stickers.dart';
|
import 'package:solian/providers/stickers.dart';
|
||||||
import 'package:solian/providers/subscription.dart';
|
import 'package:solian/providers/subscription.dart';
|
||||||
import 'package:solian/providers/theme_switcher.dart';
|
import 'package:solian/providers/theme_switcher.dart';
|
||||||
@ -138,11 +139,12 @@ class SolianApp extends StatelessWidget {
|
|||||||
Get.put(NavigationStateProvider());
|
Get.put(NavigationStateProvider());
|
||||||
|
|
||||||
Get.lazyPut(() => AuthProvider());
|
Get.lazyPut(() => AuthProvider());
|
||||||
|
Get.lazyPut(() => WebSocketProvider());
|
||||||
Get.lazyPut(() => RelationshipProvider());
|
Get.lazyPut(() => RelationshipProvider());
|
||||||
Get.lazyPut(() => PostProvider());
|
Get.lazyPut(() => PostProvider());
|
||||||
Get.lazyPut(() => StickerProvider());
|
Get.lazyPut(() => StickerProvider());
|
||||||
Get.lazyPut(() => AttachmentProvider());
|
Get.lazyPut(() => AttachmentProvider());
|
||||||
Get.lazyPut(() => WebSocketProvider());
|
Get.lazyPut(() => NotificationProvider());
|
||||||
Get.lazyPut(() => StatusProvider());
|
Get.lazyPut(() => StatusProvider());
|
||||||
Get.lazyPut(() => ChannelProvider());
|
Get.lazyPut(() => ChannelProvider());
|
||||||
Get.lazyPut(() => RealmProvider());
|
Get.lazyPut(() => RealmProvider());
|
||||||
@ -154,6 +156,6 @@ class SolianApp extends StatelessWidget {
|
|||||||
Get.lazyPut(() => LastReadProvider());
|
Get.lazyPut(() => LastReadProvider());
|
||||||
Get.lazyPut(() => SubscriptionProvider());
|
Get.lazyPut(() => SubscriptionProvider());
|
||||||
|
|
||||||
Get.find<WebSocketProvider>().requestPermissions();
|
Get.find<NotificationProvider>().requestPermissions();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,7 @@ class Notification {
|
|||||||
DateTime createdAt;
|
DateTime createdAt;
|
||||||
DateTime updatedAt;
|
DateTime updatedAt;
|
||||||
DateTime? deletedAt;
|
DateTime? deletedAt;
|
||||||
|
DateTime? readAt;
|
||||||
String title;
|
String title;
|
||||||
String? subtitle;
|
String? subtitle;
|
||||||
String body;
|
String body;
|
||||||
@ -21,6 +22,7 @@ class Notification {
|
|||||||
required this.createdAt,
|
required this.createdAt,
|
||||||
required this.updatedAt,
|
required this.updatedAt,
|
||||||
required this.deletedAt,
|
required this.deletedAt,
|
||||||
|
required this.readAt,
|
||||||
required this.title,
|
required this.title,
|
||||||
required this.subtitle,
|
required this.subtitle,
|
||||||
required this.body,
|
required this.body,
|
||||||
|
@ -13,6 +13,9 @@ Notification _$NotificationFromJson(Map<String, dynamic> json) => Notification(
|
|||||||
deletedAt: json['deleted_at'] == null
|
deletedAt: json['deleted_at'] == null
|
||||||
? null
|
? null
|
||||||
: DateTime.parse(json['deleted_at'] as String),
|
: DateTime.parse(json['deleted_at'] as String),
|
||||||
|
readAt: json['read_at'] == null
|
||||||
|
? null
|
||||||
|
: DateTime.parse(json['read_at'] as String),
|
||||||
title: json['title'] as String,
|
title: json['title'] as String,
|
||||||
subtitle: json['subtitle'] as String?,
|
subtitle: json['subtitle'] as String?,
|
||||||
body: json['body'] as String,
|
body: json['body'] as String,
|
||||||
@ -28,6 +31,7 @@ Map<String, dynamic> _$NotificationToJson(Notification instance) =>
|
|||||||
'created_at': instance.createdAt.toIso8601String(),
|
'created_at': instance.createdAt.toIso8601String(),
|
||||||
'updated_at': instance.updatedAt.toIso8601String(),
|
'updated_at': instance.updatedAt.toIso8601String(),
|
||||||
'deleted_at': instance.deletedAt?.toIso8601String(),
|
'deleted_at': instance.deletedAt?.toIso8601String(),
|
||||||
|
'read_at': instance.readAt?.toIso8601String(),
|
||||||
'title': instance.title,
|
'title': instance.title,
|
||||||
'subtitle': instance.subtitle,
|
'subtitle': instance.subtitle,
|
||||||
'body': instance.body,
|
'body': instance.body,
|
||||||
|
@ -11,6 +11,7 @@ import 'package:solian/exceptions/request.dart';
|
|||||||
import 'package:solian/exceptions/unauthorized.dart';
|
import 'package:solian/exceptions/unauthorized.dart';
|
||||||
import 'package:solian/models/auth.dart';
|
import 'package:solian/models/auth.dart';
|
||||||
import 'package:solian/providers/database/database.dart';
|
import 'package:solian/providers/database/database.dart';
|
||||||
|
import 'package:solian/providers/notifications.dart';
|
||||||
import 'package:solian/providers/websocket.dart';
|
import 'package:solian/providers/websocket.dart';
|
||||||
import 'package:solian/services.dart';
|
import 'package:solian/services.dart';
|
||||||
|
|
||||||
@ -174,7 +175,7 @@ class AuthProvider extends GetConnect {
|
|||||||
);
|
);
|
||||||
|
|
||||||
Get.find<WebSocketProvider>().connect();
|
Get.find<WebSocketProvider>().connect();
|
||||||
Get.find<WebSocketProvider>().notifyPrefetch();
|
Get.find<NotificationProvider>().fetchNotification();
|
||||||
|
|
||||||
return credentials!;
|
return credentials!;
|
||||||
}
|
}
|
||||||
@ -184,8 +185,8 @@ class AuthProvider extends GetConnect {
|
|||||||
userProfile.value = null;
|
userProfile.value = null;
|
||||||
|
|
||||||
Get.find<WebSocketProvider>().disconnect();
|
Get.find<WebSocketProvider>().disconnect();
|
||||||
Get.find<WebSocketProvider>().notifications.clear();
|
Get.find<NotificationProvider>().notifications.clear();
|
||||||
Get.find<WebSocketProvider>().notificationUnread.value = 0;
|
Get.find<NotificationProvider>().notificationUnread.value = 0;
|
||||||
|
|
||||||
AppDatabase.removeDatabase();
|
AppDatabase.removeDatabase();
|
||||||
autoStopBackgroundNotificationService();
|
autoStopBackgroundNotificationService();
|
||||||
|
174
lib/providers/notifications.dart
Normal file
174
lib/providers/notifications.dart
Normal file
@ -0,0 +1,174 @@
|
|||||||
|
import 'dart:developer';
|
||||||
|
|
||||||
|
import 'package:firebase_messaging/firebase_messaging.dart';
|
||||||
|
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
||||||
|
import 'package:flutter_udid/flutter_udid.dart';
|
||||||
|
import 'package:get/get.dart';
|
||||||
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
import 'package:solian/exceptions/request.dart';
|
||||||
|
import 'package:solian/models/notification.dart';
|
||||||
|
import 'package:solian/models/pagination.dart';
|
||||||
|
import 'package:solian/platform.dart';
|
||||||
|
import 'package:solian/providers/auth.dart';
|
||||||
|
|
||||||
|
class NotificationProvider extends GetxController {
|
||||||
|
RxBool isBusy = false.obs;
|
||||||
|
|
||||||
|
RxInt notificationUnread = 0.obs;
|
||||||
|
RxList<Notification> notifications =
|
||||||
|
List<Notification>.empty(growable: true).obs;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void onInit() {
|
||||||
|
super.onInit();
|
||||||
|
fetchNotification();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> fetchNotification() async {
|
||||||
|
final AuthProvider auth = Get.find();
|
||||||
|
if (auth.isAuthorized.isFalse) return;
|
||||||
|
|
||||||
|
final client = await auth.configureClient('auth');
|
||||||
|
|
||||||
|
final resp = await client.get('/notifications?skip=0&take=100');
|
||||||
|
if (resp.statusCode == 200) {
|
||||||
|
final result = PaginationResult.fromJson(resp.body);
|
||||||
|
final data = result.data?.map((x) => Notification.fromJson(x)).toList();
|
||||||
|
if (data != null) {
|
||||||
|
print(data.map((x) => x.toJson()));
|
||||||
|
notifications.addAll(data);
|
||||||
|
notificationUnread.value = data.where((x) => x.readAt == null).length;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> markAllRead() async {
|
||||||
|
final AuthProvider auth = Get.find();
|
||||||
|
if (auth.isAuthorized.isFalse) return;
|
||||||
|
|
||||||
|
isBusy.value = true;
|
||||||
|
|
||||||
|
final NotificationProvider nty = Get.find();
|
||||||
|
|
||||||
|
List<int> markList = List.empty(growable: true);
|
||||||
|
for (final element in nty.notifications) {
|
||||||
|
if (element.id <= 0) continue;
|
||||||
|
markList.add(element.id);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (markList.isNotEmpty) {
|
||||||
|
final client = await auth.configureClient('auth');
|
||||||
|
await client.put('/notifications/read', {'messages': markList});
|
||||||
|
}
|
||||||
|
|
||||||
|
nty.notifications.clear();
|
||||||
|
|
||||||
|
isBusy.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> markOneRead(Notification element, int index) async {
|
||||||
|
final AuthProvider auth = Get.find();
|
||||||
|
if (auth.isAuthorized.isFalse) return;
|
||||||
|
|
||||||
|
final NotificationProvider nty = Get.find();
|
||||||
|
|
||||||
|
if (element.id <= 0) {
|
||||||
|
nty.notifications.removeAt(index);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
isBusy.value = true;
|
||||||
|
|
||||||
|
final client = await auth.configureClient('auth');
|
||||||
|
|
||||||
|
await client.put('/notifications/read/${element.id}', {});
|
||||||
|
|
||||||
|
nty.notifications.removeAt(index);
|
||||||
|
|
||||||
|
isBusy.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void requestPermissions() {
|
||||||
|
try {
|
||||||
|
FirebaseMessaging.instance.requestPermission(
|
||||||
|
alert: true,
|
||||||
|
announcement: true,
|
||||||
|
carPlay: true,
|
||||||
|
badge: true,
|
||||||
|
sound: true);
|
||||||
|
} catch (_) {
|
||||||
|
// When firebase isn't initialized (background service)
|
||||||
|
FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin =
|
||||||
|
FlutterLocalNotificationsPlugin();
|
||||||
|
flutterLocalNotificationsPlugin
|
||||||
|
.resolvePlatformSpecificImplementation<
|
||||||
|
AndroidFlutterLocalNotificationsPlugin>()
|
||||||
|
?.requestNotificationsPermission();
|
||||||
|
flutterLocalNotificationsPlugin
|
||||||
|
.resolvePlatformSpecificImplementation<
|
||||||
|
IOSFlutterLocalNotificationsPlugin>()
|
||||||
|
?.requestPermissions(
|
||||||
|
alert: true,
|
||||||
|
badge: true,
|
||||||
|
sound: true,
|
||||||
|
);
|
||||||
|
flutterLocalNotificationsPlugin
|
||||||
|
.resolvePlatformSpecificImplementation<
|
||||||
|
MacOSFlutterLocalNotificationsPlugin>()
|
||||||
|
?.requestPermissions(
|
||||||
|
alert: true,
|
||||||
|
badge: true,
|
||||||
|
sound: true,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> registerPushNotifications() async {
|
||||||
|
if (PlatformInfo.isWeb) return;
|
||||||
|
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
if (prefs.getBool('service_background_notification') == true) {
|
||||||
|
log('Background notification service has been enabled, skip register push notifications');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
final AuthProvider auth = Get.find();
|
||||||
|
if (auth.isAuthorized.isFalse) return;
|
||||||
|
|
||||||
|
late final String? token;
|
||||||
|
late final String provider;
|
||||||
|
var deviceUuid = await _getDeviceUuid();
|
||||||
|
|
||||||
|
if (deviceUuid == null || deviceUuid.isEmpty) {
|
||||||
|
log("Unable to active push notifications, couldn't get device uuid");
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
log('Device UUID is $deviceUuid');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (PlatformInfo.isIOS || PlatformInfo.isMacOS) {
|
||||||
|
provider = 'apple';
|
||||||
|
token = await FirebaseMessaging.instance.getAPNSToken();
|
||||||
|
} else {
|
||||||
|
provider = 'firebase';
|
||||||
|
token = await FirebaseMessaging.instance.getToken();
|
||||||
|
}
|
||||||
|
log('Device Push Token is $token');
|
||||||
|
|
||||||
|
final client = await auth.configureClient('auth');
|
||||||
|
|
||||||
|
final resp = await client.post('/notifications/subscribe', {
|
||||||
|
'provider': provider,
|
||||||
|
'device_token': token,
|
||||||
|
'device_id': deviceUuid,
|
||||||
|
});
|
||||||
|
if (resp.statusCode != 200 && resp.statusCode != 400) {
|
||||||
|
throw RequestException(resp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<String?> _getDeviceUuid() async {
|
||||||
|
if (PlatformInfo.isWeb) return null;
|
||||||
|
return await FlutterUdid.consistentUdid;
|
||||||
|
}
|
||||||
|
}
|
@ -3,17 +3,11 @@ import 'dart:convert';
|
|||||||
import 'dart:developer';
|
import 'dart:developer';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:firebase_messaging/firebase_messaging.dart';
|
|
||||||
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
|
||||||
import 'package:flutter_udid/flutter_udid.dart';
|
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
|
||||||
import 'package:solian/exceptions/request.dart';
|
|
||||||
import 'package:solian/models/notification.dart';
|
import 'package:solian/models/notification.dart';
|
||||||
import 'package:solian/models/packet.dart';
|
import 'package:solian/models/packet.dart';
|
||||||
import 'package:solian/models/pagination.dart';
|
|
||||||
import 'package:solian/platform.dart';
|
|
||||||
import 'package:solian/providers/auth.dart';
|
import 'package:solian/providers/auth.dart';
|
||||||
|
import 'package:solian/providers/notifications.dart';
|
||||||
import 'package:solian/services.dart';
|
import 'package:solian/services.dart';
|
||||||
import 'package:web_socket_channel/web_socket_channel.dart';
|
import 'package:web_socket_channel/web_socket_channel.dart';
|
||||||
|
|
||||||
@ -21,56 +15,10 @@ class WebSocketProvider extends GetxController {
|
|||||||
RxBool isConnected = false.obs;
|
RxBool isConnected = false.obs;
|
||||||
RxBool isConnecting = false.obs;
|
RxBool isConnecting = false.obs;
|
||||||
|
|
||||||
RxInt notificationUnread = 0.obs;
|
|
||||||
RxList<Notification> notifications =
|
|
||||||
List<Notification>.empty(growable: true).obs;
|
|
||||||
|
|
||||||
WebSocketChannel? websocket;
|
WebSocketChannel? websocket;
|
||||||
|
|
||||||
StreamController<NetworkPackage> stream = StreamController.broadcast();
|
StreamController<NetworkPackage> stream = StreamController.broadcast();
|
||||||
|
|
||||||
@override
|
|
||||||
onInit() {
|
|
||||||
notifyPrefetch();
|
|
||||||
|
|
||||||
super.onInit();
|
|
||||||
}
|
|
||||||
|
|
||||||
void requestPermissions() {
|
|
||||||
try {
|
|
||||||
FirebaseMessaging.instance.requestPermission(
|
|
||||||
alert: true,
|
|
||||||
announcement: true,
|
|
||||||
carPlay: true,
|
|
||||||
badge: true,
|
|
||||||
sound: true);
|
|
||||||
} catch (_) {
|
|
||||||
// When firebase isn't initialized (background service)
|
|
||||||
FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin =
|
|
||||||
FlutterLocalNotificationsPlugin();
|
|
||||||
flutterLocalNotificationsPlugin
|
|
||||||
.resolvePlatformSpecificImplementation<
|
|
||||||
AndroidFlutterLocalNotificationsPlugin>()
|
|
||||||
?.requestNotificationsPermission();
|
|
||||||
flutterLocalNotificationsPlugin
|
|
||||||
.resolvePlatformSpecificImplementation<
|
|
||||||
IOSFlutterLocalNotificationsPlugin>()
|
|
||||||
?.requestPermissions(
|
|
||||||
alert: true,
|
|
||||||
badge: true,
|
|
||||||
sound: true,
|
|
||||||
);
|
|
||||||
flutterLocalNotificationsPlugin
|
|
||||||
.resolvePlatformSpecificImplementation<
|
|
||||||
MacOSFlutterLocalNotificationsPlugin>()
|
|
||||||
?.requestPermissions(
|
|
||||||
alert: true,
|
|
||||||
badge: true,
|
|
||||||
sound: true,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> connect({noRetry = false}) async {
|
Future<void> connect({noRetry = false}) async {
|
||||||
if (isConnected.value) {
|
if (isConnected.value) {
|
||||||
return;
|
return;
|
||||||
@ -119,8 +67,9 @@ class WebSocketProvider extends GetxController {
|
|||||||
log('Websocket incoming message: ${packet.method} ${packet.message}');
|
log('Websocket incoming message: ${packet.method} ${packet.message}');
|
||||||
stream.sink.add(packet);
|
stream.sink.add(packet);
|
||||||
if (packet.method == 'notifications.new') {
|
if (packet.method == 'notifications.new') {
|
||||||
notifications.add(Notification.fromJson(packet.payload!));
|
final NotificationProvider nty = Get.find();
|
||||||
notificationUnread.value++;
|
nty.notifications.add(Notification.fromJson(packet.payload!));
|
||||||
|
nty.notificationUnread.value++;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onDone: () {
|
onDone: () {
|
||||||
@ -133,70 +82,4 @@ class WebSocketProvider extends GetxController {
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> notifyPrefetch() async {
|
|
||||||
final AuthProvider auth = Get.find();
|
|
||||||
if (auth.isAuthorized.isFalse) return;
|
|
||||||
|
|
||||||
final client = await auth.configureClient('auth');
|
|
||||||
|
|
||||||
final resp = await client.get('/notifications?skip=0&take=100');
|
|
||||||
if (resp.statusCode == 200) {
|
|
||||||
final result = PaginationResult.fromJson(resp.body);
|
|
||||||
final data = result.data?.map((x) => Notification.fromJson(x)).toList();
|
|
||||||
if (data != null) {
|
|
||||||
notifications.addAll(data);
|
|
||||||
notificationUnread.value = data.length;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> registerPushNotifications() async {
|
|
||||||
if (PlatformInfo.isWeb) return;
|
|
||||||
|
|
||||||
final prefs = await SharedPreferences.getInstance();
|
|
||||||
if (prefs.getBool('service_background_notification') == true) {
|
|
||||||
log('Background notification service has been enabled, skip register push notifications');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
final AuthProvider auth = Get.find();
|
|
||||||
if (auth.isAuthorized.isFalse) return;
|
|
||||||
|
|
||||||
late final String? token;
|
|
||||||
late final String provider;
|
|
||||||
var deviceUuid = await _getDeviceUuid();
|
|
||||||
|
|
||||||
if (deviceUuid == null || deviceUuid.isEmpty) {
|
|
||||||
log("Unable to active push notifications, couldn't get device uuid");
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
log('Device UUID is $deviceUuid');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (PlatformInfo.isIOS || PlatformInfo.isMacOS) {
|
|
||||||
provider = 'apple';
|
|
||||||
token = await FirebaseMessaging.instance.getAPNSToken();
|
|
||||||
} else {
|
|
||||||
provider = 'firebase';
|
|
||||||
token = await FirebaseMessaging.instance.getToken();
|
|
||||||
}
|
|
||||||
log('Device Push Token is $token');
|
|
||||||
|
|
||||||
final client = await auth.configureClient('auth');
|
|
||||||
|
|
||||||
final resp = await client.post('/notifications/subscribe', {
|
|
||||||
'provider': provider,
|
|
||||||
'device_token': token,
|
|
||||||
'device_id': deviceUuid,
|
|
||||||
});
|
|
||||||
if (resp.statusCode != 200 && resp.statusCode != 400) {
|
|
||||||
throw RequestException(resp);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<String?> _getDeviceUuid() async {
|
|
||||||
if (PlatformInfo.isWeb) return null;
|
|
||||||
return await FlutterUdid.consistentUdid;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_animate/flutter_animate.dart';
|
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:solian/providers/websocket.dart';
|
import 'package:solian/providers/notifications.dart';
|
||||||
import 'package:solian/providers/auth.dart';
|
import 'package:solian/providers/auth.dart';
|
||||||
import 'package:solian/models/notification.dart' as notify;
|
import 'package:solian/models/notification.dart' as notify;
|
||||||
|
import 'package:solian/widgets/loading_indicator.dart';
|
||||||
import 'package:uuid/uuid.dart';
|
import 'package:uuid/uuid.dart';
|
||||||
|
|
||||||
class NotificationScreen extends StatefulWidget {
|
class NotificationScreen extends StatefulWidget {
|
||||||
@ -22,10 +22,10 @@ class _NotificationScreenState extends State<NotificationScreen> {
|
|||||||
|
|
||||||
setState(() => _isBusy = true);
|
setState(() => _isBusy = true);
|
||||||
|
|
||||||
final WebSocketProvider provider = Get.find();
|
final NotificationProvider nty = Get.find();
|
||||||
|
|
||||||
List<int> markList = List.empty(growable: true);
|
List<int> markList = List.empty(growable: true);
|
||||||
for (final element in provider.notifications) {
|
for (final element in nty.notifications) {
|
||||||
if (element.id <= 0) continue;
|
if (element.id <= 0) continue;
|
||||||
markList.add(element.id);
|
markList.add(element.id);
|
||||||
}
|
}
|
||||||
@ -35,7 +35,7 @@ class _NotificationScreenState extends State<NotificationScreen> {
|
|||||||
await client.put('/notifications/read', {'messages': markList});
|
await client.put('/notifications/read', {'messages': markList});
|
||||||
}
|
}
|
||||||
|
|
||||||
provider.notifications.clear();
|
nty.notifications.clear();
|
||||||
|
|
||||||
setState(() => _isBusy = false);
|
setState(() => _isBusy = false);
|
||||||
}
|
}
|
||||||
@ -44,10 +44,10 @@ class _NotificationScreenState extends State<NotificationScreen> {
|
|||||||
final AuthProvider auth = Get.find();
|
final AuthProvider auth = Get.find();
|
||||||
if (auth.isAuthorized.isFalse) return;
|
if (auth.isAuthorized.isFalse) return;
|
||||||
|
|
||||||
final WebSocketProvider provider = Get.find();
|
final NotificationProvider nty = Get.find();
|
||||||
|
|
||||||
if (element.id <= 0) {
|
if (element.id <= 0) {
|
||||||
provider.notifications.removeAt(index);
|
nty.notifications.removeAt(index);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,14 +57,14 @@ class _NotificationScreenState extends State<NotificationScreen> {
|
|||||||
|
|
||||||
await client.put('/notifications/read/${element.id}', {});
|
await client.put('/notifications/read/${element.id}', {});
|
||||||
|
|
||||||
provider.notifications.removeAt(index);
|
nty.notifications.removeAt(index);
|
||||||
|
|
||||||
setState(() => _isBusy = false);
|
setState(() => _isBusy = false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final WebSocketProvider ws = Get.find();
|
final NotificationProvider nty = Get.find();
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
height: MediaQuery.of(context).size.height * 0.85,
|
height: MediaQuery.of(context).size.height * 0.85,
|
||||||
@ -77,18 +77,26 @@ class _NotificationScreenState extends State<NotificationScreen> {
|
|||||||
).paddingOnly(left: 24, right: 24, top: 32, bottom: 16),
|
).paddingOnly(left: 24, right: 24, top: 32, bottom: 16),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Obx(() {
|
child: Obx(() {
|
||||||
return CustomScrollView(
|
return RefreshIndicator(
|
||||||
|
onRefresh: () => nty.fetchNotification(),
|
||||||
|
child: CustomScrollView(
|
||||||
slivers: [
|
slivers: [
|
||||||
if (_isBusy)
|
Obx(
|
||||||
SliverToBoxAdapter(
|
() => SliverToBoxAdapter(
|
||||||
child: const LinearProgressIndicator().animate().scaleX(),
|
child: LoadingIndicator(
|
||||||
|
isActive: _isBusy || nty.isBusy.value,
|
||||||
),
|
),
|
||||||
if (ws.notifications.isEmpty)
|
),
|
||||||
|
),
|
||||||
|
if (nty.notifications
|
||||||
|
.where((x) => x.readAt == null)
|
||||||
|
.isEmpty)
|
||||||
SliverToBoxAdapter(
|
SliverToBoxAdapter(
|
||||||
child: Container(
|
child: Container(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10),
|
padding: const EdgeInsets.symmetric(horizontal: 10),
|
||||||
color:
|
color: Theme.of(context)
|
||||||
Theme.of(context).colorScheme.surfaceContainerHigh,
|
.colorScheme
|
||||||
|
.surfaceContainerHigh,
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
leading: const Icon(Icons.check),
|
leading: const Icon(Icons.check),
|
||||||
title: Text('notifyEmpty'.tr),
|
title: Text('notifyEmpty'.tr),
|
||||||
@ -96,11 +104,14 @@ class _NotificationScreenState extends State<NotificationScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (ws.notifications.isNotEmpty)
|
if (nty.notifications
|
||||||
|
.where((x) => x.readAt == null)
|
||||||
|
.isNotEmpty)
|
||||||
SliverToBoxAdapter(
|
SliverToBoxAdapter(
|
||||||
child: Container(
|
child: Container(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10),
|
padding: const EdgeInsets.symmetric(horizontal: 10),
|
||||||
color: Theme.of(context).colorScheme.secondaryContainer,
|
color:
|
||||||
|
Theme.of(context).colorScheme.secondaryContainer,
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
leading: const Icon(Icons.checklist),
|
leading: const Icon(Icons.checklist),
|
||||||
title: Text('notifyAllRead'.tr),
|
title: Text('notifyAllRead'.tr),
|
||||||
@ -109,16 +120,19 @@ class _NotificationScreenState extends State<NotificationScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
SliverList.separated(
|
SliverList.separated(
|
||||||
itemCount: ws.notifications.length,
|
itemCount: nty.notifications.length,
|
||||||
itemBuilder: (BuildContext context, int index) {
|
itemBuilder: (BuildContext context, int index) {
|
||||||
var element = ws.notifications[index];
|
var element = nty.notifications[index];
|
||||||
return Dismissible(
|
return ClipRect(
|
||||||
|
child: Dismissible(
|
||||||
key: Key(const Uuid().v4()),
|
key: Key(const Uuid().v4()),
|
||||||
background: Container(
|
background: Container(
|
||||||
color: Colors.lightBlue,
|
color: Colors.lightBlue,
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 20),
|
padding:
|
||||||
|
const EdgeInsets.symmetric(horizontal: 20),
|
||||||
alignment: Alignment.centerLeft,
|
alignment: Alignment.centerLeft,
|
||||||
child: const Icon(Icons.check, color: Colors.white),
|
child:
|
||||||
|
const Icon(Icons.check, color: Colors.white),
|
||||||
),
|
),
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
contentPadding: const EdgeInsets.symmetric(
|
contentPadding: const EdgeInsets.symmetric(
|
||||||
@ -136,12 +150,14 @@ class _NotificationScreenState extends State<NotificationScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
onDismissed: (_) => _markOneRead(element, index),
|
onDismissed: (_) => _markOneRead(element, index),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
separatorBuilder: (_, __) =>
|
separatorBuilder: (_, __) =>
|
||||||
const Divider(thickness: 0.3, height: 0.3),
|
const Divider(thickness: 0.3, height: 0.3),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
@ -156,7 +172,7 @@ class NotificationButton extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final WebSocketProvider provider = Get.find();
|
final NotificationProvider nty = Get.find();
|
||||||
|
|
||||||
final button = IconButton(
|
final button = IconButton(
|
||||||
icon: const Icon(Icons.notifications),
|
icon: const Icon(Icons.notifications),
|
||||||
@ -166,16 +182,16 @@ class NotificationButton extends StatelessWidget {
|
|||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => const NotificationScreen(),
|
builder: (context) => const NotificationScreen(),
|
||||||
).then((_) => provider.notificationUnread.value = 0);
|
).then((_) => nty.notificationUnread.value = 0);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
return Obx(() {
|
return Obx(() {
|
||||||
if (provider.notificationUnread.value > 0) {
|
if (nty.notificationUnread.value > 0) {
|
||||||
return Badge(
|
return Badge(
|
||||||
isLabelVisible: true,
|
isLabelVisible: true,
|
||||||
offset: const Offset(-8, 2),
|
offset: const Offset(-8, 2),
|
||||||
label: Text(provider.notificationUnread.value.toString()),
|
label: Text(nty.notificationUnread.value.toString()),
|
||||||
child: button,
|
child: button,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
@ -8,8 +8,8 @@ import 'package:solian/exts.dart';
|
|||||||
import 'package:solian/models/auth.dart';
|
import 'package:solian/models/auth.dart';
|
||||||
import 'package:solian/providers/auth.dart';
|
import 'package:solian/providers/auth.dart';
|
||||||
import 'package:solian/providers/content/realm.dart';
|
import 'package:solian/providers/content/realm.dart';
|
||||||
|
import 'package:solian/providers/notifications.dart';
|
||||||
import 'package:solian/providers/relation.dart';
|
import 'package:solian/providers/relation.dart';
|
||||||
import 'package:solian/providers/websocket.dart';
|
|
||||||
import 'package:solian/services.dart';
|
import 'package:solian/services.dart';
|
||||||
import 'package:solian/widgets/sized_container.dart';
|
import 'package:solian/widgets/sized_container.dart';
|
||||||
import 'package:url_launcher/url_launcher_string.dart';
|
import 'package:url_launcher/url_launcher_string.dart';
|
||||||
@ -178,7 +178,7 @@ class _SignInScreenState extends State<SignInScreen> {
|
|||||||
|
|
||||||
Get.find<RealmProvider>().refreshAvailableRealms();
|
Get.find<RealmProvider>().refreshAvailableRealms();
|
||||||
Get.find<RelationshipProvider>().refreshRelativeList();
|
Get.find<RelationshipProvider>().refreshRelativeList();
|
||||||
Get.find<WebSocketProvider>().registerPushNotifications();
|
Get.find<NotificationProvider>().registerPushNotifications();
|
||||||
autoConfigureBackgroundNotificationService();
|
autoConfigureBackgroundNotificationService();
|
||||||
autoStartBackgroundNotificationService();
|
autoStartBackgroundNotificationService();
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ import 'package:solian/providers/content/posts.dart';
|
|||||||
import 'package:solian/providers/daily_sign.dart';
|
import 'package:solian/providers/daily_sign.dart';
|
||||||
import 'package:solian/providers/database/services/messages.dart';
|
import 'package:solian/providers/database/services/messages.dart';
|
||||||
import 'package:solian/providers/last_read.dart';
|
import 'package:solian/providers/last_read.dart';
|
||||||
import 'package:solian/providers/websocket.dart';
|
import 'package:solian/providers/notifications.dart';
|
||||||
import 'package:solian/router.dart';
|
import 'package:solian/router.dart';
|
||||||
import 'package:solian/screens/account/notification.dart';
|
import 'package:solian/screens/account/notification.dart';
|
||||||
import 'package:solian/theme.dart';
|
import 'package:solian/theme.dart';
|
||||||
@ -38,7 +38,7 @@ class DashboardScreen extends StatefulWidget {
|
|||||||
class _DashboardScreenState extends State<DashboardScreen> {
|
class _DashboardScreenState extends State<DashboardScreen> {
|
||||||
late final AuthProvider _auth = Get.find();
|
late final AuthProvider _auth = Get.find();
|
||||||
late final LastReadProvider _lastRead = Get.find();
|
late final LastReadProvider _lastRead = Get.find();
|
||||||
late final WebSocketProvider _ws = Get.find();
|
late final NotificationProvider _nty = Get.find();
|
||||||
late final PostProvider _posts = Get.find();
|
late final PostProvider _posts = Get.find();
|
||||||
late final DailySignProvider _dailySign = Get.find();
|
late final DailySignProvider _dailySign = Get.find();
|
||||||
|
|
||||||
@ -46,7 +46,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
|
|||||||
Theme.of(context).colorScheme.onSurface.withOpacity(0.75);
|
Theme.of(context).colorScheme.onSurface.withOpacity(0.75);
|
||||||
|
|
||||||
List<Notification> get _pendingNotifications =>
|
List<Notification> get _pendingNotifications =>
|
||||||
List<Notification>.from(_ws.notifications)
|
List<Notification>.from(_nty.notifications)
|
||||||
..sort((a, b) => b.createdAt.compareTo(a.createdAt));
|
..sort((a, b) => b.createdAt.compareTo(a.createdAt));
|
||||||
|
|
||||||
List<Post>? _currentPosts;
|
List<Post>? _currentPosts;
|
||||||
@ -254,7 +254,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
|
|||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
'notificationUnreadCount'.trParams({
|
'notificationUnreadCount'.trParams({
|
||||||
'count': _ws.notifications.length.toString(),
|
'count': _nty.notifications.length.toString(),
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -267,12 +267,12 @@ class _DashboardScreenState extends State<DashboardScreen> {
|
|||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => const NotificationScreen(),
|
builder: (context) => const NotificationScreen(),
|
||||||
).then((_) => _ws.notificationUnread.value = 0);
|
).then((_) => _nty.notificationUnread.value = 0);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
).paddingOnly(left: 18, right: 18, bottom: 8),
|
).paddingOnly(left: 18, right: 18, bottom: 8),
|
||||||
if (_ws.notifications.isNotEmpty)
|
if (_nty.notifications.isNotEmpty)
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 76,
|
height: 76,
|
||||||
child: ListView.separated(
|
child: ListView.separated(
|
||||||
|
@ -660,6 +660,11 @@ class _PostHeaderWidget extends StatelessWidget {
|
|||||||
IconButton(
|
IconButton(
|
||||||
color: Theme.of(context).colorScheme.primary,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
icon: const Icon(Icons.more_vert),
|
icon: const Icon(Icons.more_vert),
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 4),
|
||||||
|
visualDensity: const VisualDensity(
|
||||||
|
horizontal: -4,
|
||||||
|
vertical: -2,
|
||||||
|
),
|
||||||
onPressed: () => onTapMore!(),
|
onPressed: () => onTapMore!(),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user