Skip to content
Snippets Groups Projects
Commit 1fa7bc40 authored by vjrj's avatar vjrj
Browse files

Notifications refactor

parent 1adcc0cd
No related branches found
No related tags found
No related merge requests found
......@@ -197,7 +197,7 @@ class TransactionCubitRemove extends HydratedCubit<TransactionState> {
newState.latestReceivedNotification.isBefore(tx.time)) {
// Future
final Contact from = tx.from;
NotificationController.createNewNotification(
NotificationController.notifyTransaction(
tx.time.millisecondsSinceEpoch.toString(),
amount: tx.amount,
currentUd: appCubit.currentUd,
......@@ -209,7 +209,7 @@ class TransactionCubitRemove extends HydratedCubit<TransactionState> {
newState.latestSentNotification.isBefore(tx.time)) {
// Future
final Contact to = tx.to;
NotificationController.createNewNotification(
NotificationController.notifyTransaction(
tx.time.millisecondsSinceEpoch.toString(),
amount: -tx.amount,
currentUd: appCubit.currentUd,
......
......@@ -144,30 +144,31 @@ class NotificationController {
{required double amount,
String? to,
String? from,
String? description = '',
required bool isG1,
required double currentUd}) async {
final String title = from != null
? tr('notification_new_payment_title')
: tr('notification_new_sent_title');
final String desc = from != null
? tr('notification_new_payment_desc', namedArgs: <String, String>{
'amount': formatKAmountInViewWithLocale(
locale: locale.languageCode,
amount: amount,
isG1: isG1,
currentUd: currentUd,
useSymbol: true),
'from': from,
})
: tr('notification_new_sent_desc', namedArgs: <String, String>{
'amount': formatKAmountInViewWithLocale(
locale: locale.languageCode,
amount: amount,
isG1: isG1,
currentUd: currentUd,
useSymbol: true),
'to': to!,
});
? '${tr('notification_new_payment_desc', namedArgs: <String, String>{
'amount': formatKAmountInViewWithLocale(
locale: locale.languageCode,
amount: amount,
isG1: isG1,
currentUd: currentUd,
useSymbol: true),
'from': from,
})} ($description)'
: '${tr('notification_new_sent_desc', namedArgs: <String, String>{
'amount': formatKAmountInViewWithLocale(
locale: locale.languageCode,
amount: amount,
isG1: isG1,
currentUd: currentUd,
useSymbol: true),
'to': to!,
})} ($description)';
await notify(title: title, desc: desc, id: id);
}
......
......@@ -90,10 +90,11 @@ class NotificationController {
/// NOTIFICATION CREATION METHODS
/// *********************************************
///
static Future<void> createNewNotification(String id,
static Future<void> notifyTransaction(String id,
{required double amount,
String? to,
String? from,
String? description = '',
required double currentUd,
required bool isG1}) async {
// FIXME: DUP CODE!!
......@@ -101,24 +102,29 @@ class NotificationController {
? tr('notification_new_payment_title')
: tr('notification_new_sent_title');
final String desc = from != null
? tr('notification_new_payment_desc', namedArgs: <String, String>{
'amount': formatKAmountInViewWithLocale(
locale: locale.languageCode,
amount: amount,
isG1: isG1,
currentUd: currentUd,
useSymbol: true),
'from': from,
})
: tr('notification_new_sent_desc', namedArgs: <String, String>{
'amount': formatKAmountInViewWithLocale(
locale: locale.languageCode,
amount: amount,
isG1: isG1,
currentUd: currentUd,
useSymbol: true),
'to': to!,
});
? '${tr('notification_new_payment_desc', namedArgs: <String, String>{
'amount': formatKAmountInViewWithLocale(
locale: locale.languageCode,
amount: amount,
isG1: isG1,
currentUd: currentUd,
useSymbol: true),
'from': from,
})} ($description)'
: '${tr('notification_new_sent_desc', namedArgs: <String, String>{
'amount': formatKAmountInViewWithLocale(
locale: locale.languageCode,
amount: amount,
isG1: isG1,
currentUd: currentUd,
useSymbol: true),
'to': to!
})} ($description)';
await notify(title: title, desc: desc, id: '');
}
static Future<void> notify(
{required String title, required String desc, required String id}) async {
try {
if (html.Notification.permission != 'granted') {
await html.Notification.requestPermission();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment