Advertisement
angelgoitia

Untitled

Nov 25th, 2023
925
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 3.94 KB | None | 0 0
  1. void initialNotification() {
  2.     var initializationSettingsAndroid =
  3.         AndroidInitializationSettings('@mipmap/ic_launcher');
  4.  
  5.     var initializationSettingsIOS = IOSInitializationSettings(
  6.         onDidReceiveLocalNotification: onDidReceiveLocalNotification);
  7.  
  8.     var initializationSettings = InitializationSettings(
  9.       android: initializationSettingsAndroid,
  10.       iOS: initializationSettingsIOS,
  11.     );
  12.  
  13.     flutterLocalNotificationsPlugin.initialize(initializationSettings,
  14.         onSelectNotification: selectNotification);
  15.  
  16.     FirebaseMessaging.onMessage.listen((RemoteMessage message) {
  17.       _notificationController.getNotifications(false);
  18.       print('Got a message whilst in the foreground!');
  19.       print('msg: ${message.notification!.body}');
  20.       print('msg: ${message.data}');
  21.  
  22.       if (message.notification != null) {
  23.         MainController _mainController = Get.put(MainController());
  24.         print("entro notificacion");
  25.  
  26.         if (message.data['type'] == 'message' &&
  27.             _mainController.dataWeb.value.chatUserId !=
  28.                 int.parse(message.data['userid']))
  29.           showNotification(message.notification!.title,
  30.               message.notification!.body, message.data);
  31.         else if (message.data['type'] != 'message')
  32.           showNotification(message.notification!.title,
  33.               message.notification!.body, message.data);
  34.       }
  35.     });
  36.   }
  37.  
  38.   Future onDidReceiveLocalNotification(
  39.       int? id, String? title, String? body, String? payload) async {
  40.     print('onDidReceiveLocalNotification');
  41.   }
  42.  
  43.   Future selectNotification(String? payload) async {
  44.     MainController _mainController = Get.put(MainController());
  45.     var dataPayload = jsonDecode(payload!);
  46.  
  47.     _mainController.typeNotification.value = dataPayload['type'];
  48.  
  49.     _mainController.urlWebSite.value = dataPayload['url'];
  50.  
  51.     if (dataPayload['type'] == 'message')
  52.       _mainController.dataWeb.value.chatUserId =
  53.           int.parse(dataPayload['userid']);
  54.     else
  55.       _mainController.dataWeb.value.chatUserId = 0;
  56.  
  57.     _mainController.changeRoute();
  58.   }
  59.  
  60.   void showNotification(title, body, data) async {
  61.     var androidNotificationDetails;
  62.  
  63.     BigTextStyleInformation bigTextStyleInformation = BigTextStyleInformation(
  64.       body,
  65.       htmlFormatBigText: true,
  66.       contentTitle: title,
  67.       htmlFormatContentTitle: true,
  68.       summaryText: title,
  69.       htmlFormatSummaryText: true,
  70.     );
  71.  
  72.     if (data['type'] == 'message') {
  73.       var largeIconPath = await _downloadAndSaveFile(
  74.           data['imageUrl'],
  75.           data['username'] +
  76.               '_' +
  77.               DateTime.now().millisecondsSinceEpoch.toString());
  78.       androidNotificationDetails = AndroidNotificationDetails(
  79.         channelID,
  80.         channelName,
  81.         groupKey: groupkeyFCM,
  82.         importance: Importance.defaultImportance,
  83.         priority: Priority.defaultPriority,
  84.         playSound: true,
  85.         largeIcon: FilePathAndroidBitmap(largeIconPath),
  86.         styleInformation: bigTextStyleInformation,
  87.       );
  88.     } else {
  89.       androidNotificationDetails = AndroidNotificationDetails(
  90.         channelID,
  91.         channelName,
  92.         groupKey: groupkeyFCM,
  93.         importance: Importance.defaultImportance,
  94.         priority: Priority.defaultPriority,
  95.         playSound: true,
  96.         styleInformation: bigTextStyleInformation,
  97.       );
  98.     }
  99.  
  100.     var iOSNotificationDetails = IOSNotificationDetails(
  101.       presentSound: false,
  102.     );
  103.  
  104.     var platformChannelSpecifics = NotificationDetails(
  105.         android: androidNotificationDetails, iOS: iOSNotificationDetails);
  106.     await flutterLocalNotificationsPlugin.show(
  107.         id, title, body, platformChannelSpecifics,
  108.         payload: jsonEncode(data));
  109.  
  110.     id = id + 1;
  111.  
  112.     NotificationDetails groupNotification = getGroupNotifier();
  113.     await flutterLocalNotificationsPlugin.show(
  114.         0, 'test', '$id Notificación', groupNotification);
  115.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement