Exemplo n.º 1
0
 public void BeginSwipeEnableCountdown(double hours)
 {
     NotificationHelper.ScheduleSwipeEnabledNotification(Application.Context, hours);
 }
Exemplo n.º 2
0
        public override async void OnReceive(Context context, Intent intent)
        {
            switch (intent.Action)
            {
            case Constants.SHARE_NOTIFICATION_QUOTE_INTENT_ACTION:
            {
                try
                {
                    DesignQuote designQuote = JsonConvert.DeserializeObject <DesignQuote>(intent.GetStringExtra(Constants.SHARE_NOTIFICATION_QUOTE_INTENT_ACTION));

                    // Close Notification Drawer
                    context.SendBroadcast(new Intent(Intent.ActionCloseSystemDialogs));

                    Helper.ShareQuote(context, designQuote, designQuote.Quote.Length > Helpers.Constants.MAX_QUOTE_LENGTH);
                    var notificationManager = NotificationManagerCompat.From(context);

                    // Get notificationID which is the current count - 1
                    var notificationId = Settings.NotificationCount - 1;
                    notificationManager.Cancel(notificationId);
                }
                catch (Exception ex)
                {
                    Utils.LogError(ex, "SharingQuote");
                }
            }
            break;

            case Constants.NOTIFICATION_QUOTE_ACTION:
            {
                try
                {
                    DI.InitializeDI();

                    NotificationType notificationType = intent.GetStringExtra(Constants.NOTIFICTAIONTYPE_KEY) == NotificationType.RandomAlarm.ToString() ? NotificationType.RandomAlarm : NotificationType.DailyAlarm;
                    INotification    notification     = DI.NotificationService.GetNotification(notificationType);

                    var         quotesRepository = ServiceLocator.Current.GetInstance <IQuotesRepository>();
                    DesignQuote designQuote      = await notification.GetDesignQuote(quotesRepository);

                    notification.ToggleNotificationIsSet(false);

                    await NotificationHelper.SendScheduledNotification(context, notification);

                    NotificationHelper.SetScheduledNotifications(context, NotificationService.Notifications);
                    MessagingCenter.Send(SwipeToggled.Message, Helpers.Constants.SWIPE_TOGGLED, true);
                }
                catch (Exception ex)
                {
                    Utils.LogError(ex, "DisplayingQuoteNotification");
                }
            }
            break;

            case Constants.SWIPE_ENABLED_ACTION:
                try
                {
                    NotificationHelper.SendSwipeEnabledNotification(context);
                    MessagingCenter.Send(SwipeToggled.Message, Helpers.Constants.SWIPE_TOGGLED, true);
                }
                catch (Exception ex)
                {
                    Utils.LogError(ex, "ErrorEnablingSwipe");
                }
                break;
            }
        }
Exemplo n.º 3
0
 public void SetScheduledNotifications(List <INotification> notifications)
 {
     NotificationHelper.SetScheduledNotifications(Application.Context, notifications);
 }